/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
    --azul-primario: #2c5d8f;
    --amarillo-acento: #f2c94c;
    --blanco: #ffffff;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* --- Estilos Generales --- */
.oferta-academica {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.titulo-seccion {
    color: #2c5d8f;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contenedor-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Estilo de las Tarjetas --- */
.card {
    position: relative;
    width: 280px;
    height: 410px;
    border-radius: 25px; /* Bordes redondeados como en la imagen */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Overlay (Fondo oscuro con información) --- */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Gris oscuro semitransparente */
    opacity: 0; /* Oculto por defecto */
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    text-align: left;
    box-sizing: border-box;
}

.card:hover .overlay {
    opacity: 1; /* Aparece al pasar el mouse */
}

/* --- Contenido del Texto --- */
.overlay-content h3 {
    color: #fff;
    font-family: 'Cursive', sans-serif; /* Tipografía estilo manuscrito para "Maestría" */
    font-size: 2.2rem;
    margin: 0;
}

.overlay-content hr {
    border: 0;
    border-top: 2px solid #fff;
    width: 60px;
    margin: 10px 0 20px 0;
}

.overlay-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-content ul li {
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.overlay-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

/* --- Flecha Amarilla Decorativa --- */
.flecha-amarilla {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 70px 70px; /* Crea el triángulo de la esquina */
    border-color: transparent transparent #f2c94c transparent;
}

/* Estilo adicional para la punta de la flecha */
.flecha-amarilla::after {
    content: "";
    position: absolute;
    bottom: -65px;
    right: 10px;
    width: 25px;
    height: 25px;
    background-color: #f2c94c;
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
    transform: rotate(15deg);
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        width: 100%;
        height: 500px;
    }
}
/* Contenedor Principal */
#seccion-por-que {
    background: url('../img/fondo.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

/* Título Izquierdo */
#seccion-por-que .titulo-por-que {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1;
}

/* Lista de razones */
#seccion-por-que .lista-razones {
    list-style: none;
    padding: 0;
}

#seccion-por-que .lista-razones li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 5px;
}

/* --- ESTILOS DEL CONTADOR (Lado Derecho) --- */
#seccion-por-que .contenedor-contador {
    display: inline-block;
    position: relative;
}

#seccion-por-que .txt-mas-de {
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-weight: 300;
}

#seccion-por-que .numero-grande {
    font-size: 10rem; /* Tamaño masivo para el 100 */
    font-weight: 900;
    line-height: 0.9;
    margin: 10px 0;
}

/* Franja azul debajo del número */
#seccion-por-que .etiqueta-convenios {    
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    width: 120%; /* Sobresale un poco a los lados como en la imagen */
    margin-left: -10%; 
}

/* Sombra decorativa para el número */
#counter {
    text-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}
/* --- Estilos para la sección de Contacto --- */
.contacto-ubicacion {
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.titulo-ubicacion {
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.2;
}

/* Contenedor del mapa con bordes redondeados y marco azul */
.mapa-contenedor {
    border: 3px solid #2c5d8f; /* El azul de tu marca */
    border-radius: 40px;
    overflow: hidden; /* Corta el iframe para que sea redondeado */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mapa-contenedor iframe {
    display: block;
}

/* Estilo de los iconos de contacto */
.icono-contacto {
    color: #2c5d8f;
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-item h5 {
    color: #444;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .titulo-ubicacion {
        font-size: 1.8rem;
    }
    .mapa-contenedor {
        border-radius: 20px;
        height: 350px;
    }
}
/* --- Estilos base --- */
.about-img img {
    transition: filter 0.4s ease, transform 0.4s ease !important;
    filter: grayscale(100%);
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Solo la foto cambia a B/N, el fondo se mantiene por las reglas de abajo */
.about-img img:hover {
    filter: grayscale(0%) !important;
}

/* --- 1. Círculo Superior (VERDE) --- */
.about-img .col-12 img {
    background-color: #28b060 !important;
    width: 65% !important; 
    padding: 7px !important; /* Borde delgado */
}
/* Bloqueo de color en hover */
.about-img .col-12 img:hover {
    background-color: #28b060 !important;
}

/* --- 2. Círculo Inferior Izquierdo (AMARILLO) --- */
.about-img .col-6.text-start img {
    background-color: #f2c94c !important;
    width: 80% !important; 
    padding: 7px !important; 
    margin-left: 15%; 
}
/* Bloqueo de color en hover */
.about-img .col-6.text-start img:hover {
    background-color: #f2c94c !important;
}

/* --- 3. Círculo Inferior Derecho (AZUL) - DOBLE TAMAÑO --- */
.about-img .col-6.text-end img {
    background-color: #45689a !important;
    width: 160% !important; /* Doble del amarillo */
    padding: 8px !important; 
    position: relative;
    z-index: 10; 
    margin-left: -60px; 
}
/* Bloqueo de color en hover */
.about-img .col-6.text-end img:hover {
    background-color: #45689a !important;
}

/* Ajuste de alineación */
.about-img .col-6 {
    margin-top: -120px !important; 
    display: flex;
    align-items: center;
}
#seccion-becas {
    background-color: #2c5d8f; /* Azul institucional */
    padding: 80px 0;
}

#seccion-becas .btn-ayuda {
    color: #2c5d8f;
    border-radius: 8px;
}

/* --- Rejilla de la Galería --- */
.galeria-becas {
    display: grid;
    /* Creamos dos columnas iguales para las imágenes de abajo */
    grid-template-columns: repeat(2, 1fr); 
    /* El video tendrá una altura y las fotos otra */
    grid-template-rows: auto 250px; 
    gap: 15px;
}

.recurso-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.recurso-item img, 
.recurso-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- El Video ocupa las 2 columnas superiores --- */
.video-principal {
    grid-column: 1 / span 2; 
    height: 350px; /* Ajusta la altura del video aquí */
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .galeria-becas {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
        grid-template-rows: auto;
    }
    .video-principal {
        grid-column: 1;
        height: 250px;
    }
    .recurso-item {
        height: 200px;
    }
}
/* Contenedor Principal */
#seccion-contacto-final {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
}

#seccion-contacto-final .titulo-principal {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

/* Caja Blanca del Formulario */
#seccion-contacto-final .box-formulario {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    text-align: left;
}

#seccion-contacto-final .box-formulario h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

#seccion-contacto-final .descripcion {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

#seccion-contacto-final .aviso-privacidad {
    font-size: 0.8rem;
    color: #000000;
    margin-bottom: 25px;
}

#seccion-contacto-final .aviso-privacidad a {
    color: #2c5d8f;
    text-decoration: underline;
}

/* Diseño de Inputs y Selects */
#seccion-contacto-final .row-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

#seccion-contacto-final input, 
#seccion-contacto-final select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #2c5d8f;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    background-color: #fff;
}

#seccion-contacto-final select {
    margin-bottom: 15px;
    appearance: none; /* Quita flecha default para poner la personalizada */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
}

/* Botón Enviar */
#seccion-contacto-final .btn-enviar {
    background-color: #2c5d8f; /* Azul institucional */
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#seccion-contacto-final .btn-enviar:hover {
    background-color: #1e446d;
}

/* Responsivo */
@media (max-width: 768px) {
    #seccion-contacto-final .row-inputs {
        flex-direction: column;
        gap: 15px;
    }
    #seccion-contacto-final .titulo-principal {
        font-size: 1.8rem;
    }
}
/* Estilos específicos para la Navbar de la imagen */
.custom-nav {
    background-color: #1f4e74 !important; /* Azul marino de la captura */
    padding: 15px 0;
}

/* Hacer que el logo se vea blanco (filtro) si usas la misma imagen oscura */
.nav-logo-white {
    height: 60px;
    /* Este filtro convierte el azul oscuro en blanco para que resalte en el fondo azul */
    filter: brightness(0) invert(1); 
}

.custom-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
}

.custom-nav .nav-link:hover {
    color: #ffffff !important;
}

/* Estilo del botón verde */
.btn-success {
    background-color: #28a745 !important;
    border: none;
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Ajustes para centrado perfecto en Desktop */
@media (min-width: 992px) {
    .navbar-collapse {
        flex-basis: 100%;
    }
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}
/*** ancho completo***/
.container-xxl.bg-white {
    max-width: 100% !important;
    width: 100% !important;
}
.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}
/* Contenedor Principal */
#seccion-contacto-final {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
}

#seccion-contacto-final .titulo-principal {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

/* Caja Blanca del Formulario */
#seccion-contacto-final .box-formulario {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

#seccion-contacto-final .box-formulario h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

#seccion-contacto-final .descripcion {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

#seccion-contacto-final .aviso-privacidad {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 25px;
}

#seccion-contacto-final .aviso-privacidad a {
    color: #2c5d8f;
    text-decoration: underline;
}

/* Diseño de Inputs y Selects */
#seccion-contacto-final .row-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

#seccion-contacto-final input, 
#seccion-contacto-final select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    font-size: 0.9rem;
    outline: none;
    background-color: #fff;
}

#seccion-contacto-final select {
    margin-bottom: 15px;
    appearance: none; /* Quita flecha default para poner la personalizada */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg'  width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
}

/* Botón Enviar */
#seccion-contacto-final .btn-enviar {
    background-color: #2c5d8f; /* Azul institucional */
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#seccion-contacto-final .btn-enviar:hover {
    background-color: #1e446d;
}

/* Responsivo */
@media (max-width: 768px) {
    #seccion-contacto-final .row-inputs {
        flex-direction: column;
        gap: 15px;
    }
    #seccion-contacto-final .titulo-principal {
        font-size: 1.8rem;
    }
}
#footer-uw {
    width: 100%;
    background-color: #ffffff;
}

#footer-uw {
    width: 100%;
    background-color: #ffffff;
}

.footer-body {
    /* Usamos la imagen de la onda como fondo */
    background-image: url('../img/footer.png');
    background-size: 100% 100%; /* Estira la imagen para cubrir todo el contenedor */
    background-position: top center;
    background-repeat: no-repeat;
    
    /* Ajustamos el padding superior para que el texto no tape la curva amarilla */
    padding: 120px 0 60px 0; 
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

/* --- Estilos de contenido (se mantienen para legibilidad) --- */
.contact-col p { margin-bottom: 10px; font-size: 1rem; }

.social-box { display: flex; gap: 12px; margin-top: 20px; }

.social-box a {
    background-color: #ffffff;
    color: #2c5d8f;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li a { color: #ffffff; text-decoration: none; }

.btn-solicita-info {
    background-color: #28a745;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
}

/* Barra Blanca Final */
.footer-bottom-bar {
    background-color: #ffffff;
    padding: 15px 0;
    color: #2c5d8f;
}

.lema-institucional { text-align: center; }
.lema-latin { font-weight: 800; font-size: 1.2rem; margin: 0; }
.lema-esp { font-size: 0.75rem; margin: 0; }