@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/*


.roboto-condensed-<uniquifier> {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/

body {
    font-family: "Roboto Condensed", sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Menú Superior */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0; 
}

.header-top {
    padding: 10px 0; 
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

/* Enlaces de Transparencia */
.link-item {
    text-align: left;
    font-size: 0.75em;
    color: red;
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.3s;
}

.link-item:hover {
    opacity: 0.7;
}

.link-item strong {
    display: block;
    font-size: 1.1em;
    text-transform: uppercase;
}

/* Redes Sociales */
.social-icons {
    display: flex;
    gap: 10px;
}

.icon-circle {
    width: 30px;
    height: 30px;
    border: 2px solid red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: red;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.icon-circle:hover {
    background-color: red;
    color: white;
}

/* Contenedor Principal */
.main-content {
    margin-top: 120px; 
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 90%;
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.btn-pago {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.2s;
    margin-bottom: 20px;
}

.btn-pago:hover {
    transform: scale(1.03);
    background-color: #0056b3;
}

.contacto-footer {
    font-size: 0.9em;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Menú de Navegación */
.main-nav {
    background-color: red;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12px 0;
    margin: 0;
}

.nav-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9em;
}

.nav-item:hover {
    opacity: 0.8;
}

/* Contenedor Principal */
.main-content {
    margin-top: 150px; 
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 90%;
    text-align: center;
    margin-bottom: 40px;
}

/* Mensaje de Renovación */
.mensaje-renovacion {
    margin-top: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 5px solid red;
    color: #555;
    font-style: italic;
    font-size: 0.95em;
    margin-bottom: 20px;
}