/* General Styles */
body {
    font-family: 'Georgia', serif;
    /* Estilo elegante */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    /* Fondo limpio */
    color: #333;
}

/* Header Styles */
header {
    background-color: white;
    padding: 15px 0;
    position: relative;
    /* Necesario para posicionar los elementos */
    border-bottom: 5px solid #0A1164;
    /* Línea decorativa roja debajo del header */
}

.logo-header {
    display: flex;
    justify-content: space-between;
    /* Alinear logos a izquierda y derecha */
    align-items: center;
    padding: 0 30px;
    /* Espaciado interno horizontal */
}

.logo-header img {
    height: 70px;
    /* Tamaño ajustado de los logos */
}

.logo-left {
    height: 80px;
    /* Cambia este valor para ajustar el tamaño */
}

.logo-right {
    height: 80px;
    /* Cambia este valor para ajustar el tamaño */
}

.logo-left {
    position: absolute;
    left: 150px;
    /* Cambia este valor para moverlo horizontalmente */
    top: 20px;
    /* Cambia este valor para moverlo verticalmente */
}

.logo-right {
    position: absolute;
    right: 60px;
    /* Cambia este valor para moverlo horizontalmente */
    top: 20px;
    /* Cambia este valor para moverlo verticalmente */
}

.title-header {
    text-align: center;
    /* Centra el texto horizontalmente */
    color: #0A1164;
    /* Color del texto */
    font-size: 2.0em;
    /* Tamaño del texto, cambia este valor para ajustar */
    font-weight: bold;
    /* Hace que el texto sea negrita */
    margin: -5px 0;
    /* Controla el espaciado superior e inferior */
}

.subtitle-header {
    text-align: center;
    /* Centra el texto horizontalmente */
    color: #000000;
    /* Cambia este color si quieres otro */
    font-size: 1.0em;
    /* Cambia el tamaño del texto */
    margin: 10px 0 10px 0;
    font-style: bold;
    /* Hace que el texto sea cursivo */
}

/* Título adicional */
.extra-header {
    text-align: center;
    /* Centra el contenido */
    padding: 10px 0;
    /* Espaciado superior e inferior */
}

.extra-title {
    color: #0A1164;
    /* Color rojo oscuro */
    font-size: 1.5em;
    /* Tamaño de la fuente */
    font-weight: bold;
    /* Texto en negrita */
    margin: 10px;
    /* Sin margen */
}

.extra-subtitle {
    color: #000000;
    /* Color del subtítulo */
    font-size: 1.2em;
    /* Tamaño de la fuente */
    font-style: bold;
    /* Estilo cursivo */
    margin: 5px 0;
    /* Espaciado superior e inferior */
}

.educational-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.educational-options .option {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.educational-options .option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.educational-options .circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
}

.educational-options .circle i {
    font-size: 40px;
    color: #0A1164;
}

.educational-options h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0A1164;
    font-weight: bold;
}

.educational-options p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Footer Styles */
/* Footer Styles */
footer {
    text-align: center;
    background-color: #0A1164;
    /* azul rey */
    color: #FFFFFF;
    /* texto blanco */
    padding: 15px 20px;
    font-size: 0.85em;
    font-family: Arial, sans-serif;
    border-top: 4px solid #b40000;
    /* rojo para detalle */
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    margin-top: 125px;
}

footer p {
    margin: 4px 0;
}

/* 📱 Responsivo: móviles pequeños */
@media (max-width: 768px) {
    .logo-header {
        justify-content: center;
        /* Los logos se alinean al centro */
        gap: 20px;
        /* Separación entre logos */
    }

    .logo-left,
    .logo-right {
        height: 60px;
        /* Reducimos tamaño en móviles */
    }

    .extra-title {
        font-size: 1.2em;
    }

    .title-header {
        font-size: 1.5em;
    }

    .extra-subtitle {
        font-size: 1em;
        /* Un poco más pequeño */
    }

    .educational-options .option {
        width: 220px;
        /* Más angostas */
        padding: 15px;
        /* Menos padding */
    }

    .educational-options .circle {
        width: 80px;
        height: 80px;
    }

    .educational-options .circle i {
        font-size: 32px;
    }

    .educational-options h2 {
        font-size: 1.1rem;
    }

    .educational-options p {
        font-size: 0.85rem;
    }
}

/* 📱 Muy pequeños (480px o menos) */
@media (max-width: 480px) {
    .logo-header {
        flex-direction: column;
        /* Logos uno arriba del otro */
        gap: 10px;
    }

    .logo-left,
    .logo-right {
        height: 50px;
        /* Más pequeños aún */
    }

    .extra-title {
        font-size: 1.3em;
    }

    .title-header {
        font-size: 1.2em;
        margin: -10px 0;
    }

    .extra-subtitle {
        font-size: 0.9em;
        /* Aún más pequeño */
    }

    .educational-options .option {
        width: 100%;
        /* Ocupan todo el ancho */
        padding: 12px;
    }

    .educational-options .circle {
        width: 70px;
        height: 70px;
    }

    .educational-options .circle i {
        font-size: 28px;
    }

    .educational-options h2 {
        font-size: 1rem;
    }

    .educational-options p {
        font-size: 0.8rem;
    }
}