/* CONFIGURACIÓN DE FUENTES LOCALES */
@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf') format('woff2'); /* Ajusta al nombre real de tu archivo */
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf') format('woff2'); /* Ajusta al nombre real de tu archivo */
    font-weight: normal;
    font-style: normal;
}


/* ================================================= 
   2. VARIABLES EDITABLES (COLORES Y TIPOGRAFÍA)
   ================================================= */
:root {
    /* Colores Basados en el Diseño */
    --color-primario: #084866;       /* Azul oscuro (Barra inferior y botones) */
    --color-secundario: #81cde6;     /* Azul claro (Bordes y acentos) */
    --color-acento: #266ab4;         /* Azul del botón Inscribete */
    --blanco: #ffffff;
    --negro: #000000;
    
    /* Tipografía */
    --fuente-principal: 'Poppins-Regular', sans-serif;
}

/* ================================================= 
   3. SISTEMA DE COLUMNAS "M" (Basado en 12)
   ================================================= */
.row { display: flex; flex-wrap: wrap; }

/* Mobile First (Ancho completo por defecto) */
.col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-6, .col-m-8, .col-m-12 {
    width: 100%;
    padding: 15px;
}

/* Tablets y Escritorio */
@media (min-width: 992px) {
    .col-m-1  { width: 8.33%; }
    .col-m-2  { width: 16.66%; }
    .col-m-3  { width: 25%; }
    .col-m-4  { width: 33.33%; }
    .col-m-6  { width: 50%; }
    .col-m-8  { width: 66.66%; }
    .col-m-12 { width: 100%; }
}

/* ================================================= 
   4.ENCABEZADO
   ================================================= */

body {
    font-family:'Poppins-Regular';
    color: var(--negro);
    overflow-x: hidden;
    font-size: 1.4rem;
}

.encabezado-principal {
    background: var(--blanco);
    font-family: 'Poppins-Regular';
    height: var(--alto-header);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1030;
    padding: 10px 10px 20px 0px;
}

/* CONTENEDOR DEL LOGO */
.logotipo-contenedor {
    position: relative; /* Base para el logo que flota */
    height: 100%;
}

/* LOGO QUE SOBRESALE (BANDERÍN) */
.logo-flotante {
    position: absolute; /* Sale del flujo normal */
    top: -40px;          /* Ajuste leve hacia arriba si es necesario */
    left: 15px;
    width: 140px;       /* Tamaño del banderín */
    max-width: none;    /* Permite que crezca fuera del nav */
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.15));
    z-index: 1040;      /* Por encima de todo */
}

.enlace-menu {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    margin: 0 15px;
    padding-bottom: 1px;
    border-bottom: 1px solid transparent;
    position: relative;
}

/* Línea degradada */
.enlace-menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #070d9d, #00bdef);
    transition: width 0.3s ease;
    border-radius: 10px;
}

/* Activo y hover */
.enlace-menu:hover::after,
.enlace-menu.activo::after {
    width: 100%;
}

.btn-inscribete {
    background-color: var(--color-acento);
    color: var(--blanco) !important;
    font-size: 1.5rem;
    border-radius: 100px;
    padding: 3px 20px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-inscribete:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background-image:linear-gradient(to right,#0d6994, #559dbf) ;

}


/* ================================================= 
   RESPONSIVE: ENCABEZADO
   ================================================= */

@media (max-width: 991.98px) {
    .encabezado-principal {
        padding: 5px 10px;
        height: 70px; /* Reducimos altura en móvil */
    }

    .logo-flotante {
        width: 100px; /* Logo más pequeño en móvil */
        top: -35px;
        left: 10px;
    }

    .btn-inscribete {
        font-size: 1.1rem; /* Texto más pequeño */
        padding: 5px 15px;
    }

    /* Estilos para el menú desplegable móvil */
    #menuMovil {
        position: absolute;
        top: 100%;
        width: 100%;
        z-index: 1020;
    }

    .enlace-menu {
        margin: 10px 0;
        display: inline-block;
    }
    .menu-derecha {
        gap: 10px; /* Espacio entre el botón azul y la hamburguesa */
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(8, 72, 102, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    nav.px-4 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 575.98px) {
    .logo-flotante {
        width: 85px; /* Aún más pequeño en pantallas mini */
        top: -35px;
    }
    
    .btn-inscribete span {
        font-size: 0.9rem;
    }
}





/* ================================================= 
   5.Banner Principal
   ================================================= */
.hero-principal {
    min-height: 100vh;
    background-image: url(../img/escuela-inicio.png);
    background-color: #000000;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.escudo-hero {
    width: 330px;
    margin-bottom: -15px;
}

.titulo-hero {
    color: #ffffff;
    font-size: 6.3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 40px;
}

.btn-categoria-hero {
    background-image: linear-gradient(to top,#06185a,#0d6994);
    color: #ffffff;
    border: 2px solid #5ce1e6;
    border-radius: 100px;
    padding: 5px 40px;
    font-size: 2rem;
    font-weight:bold;
    font-family: 'Poppins-Medium';
    text-decoration: none;
    transition: 0.3s;
}

.btn-categoria-hero:hover {
    background: #3e6f86;
    border-color: #fcfcfc;
    box-shadow: -1px -1px 6px 0 #5ce1e6, 4px 4px 16px 2px #81cde6;
    color: #ffffff;
}

/* Barra de Estadísticas */
.barra-estadisticas {
    background-color: #084866;
    padding: 30px 0;
}
.contenedor-icono {
    height: 55px; /* Altura controlada para alinear los iconos */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icono-estadistica {
    max-height: 60px;
    width: auto;
    align-items: center;
}

.barra-estadisticas h3 {
    font-size: 2rem;
    font-family:'Poppins-Regular';
    margin-bottom: 0;
    color: #81cde6;
    font-weight: 800;
}

.barra-estadisticas p {
    font-size: 1rem;
    letter-spacing: .7px;
    font-family:'Poppins-Medium';
}




/* =========================================
   RESPONSIVE: HERO Y ESTADÍSTICAS
   ========================================= */

@media (max-width: 991.98px) {
    /* HERO PRINCIPAL */
    .hero-principal {
        min-height: 80vh; /* Un poco más corto en tablets */
        padding-top: 100px;
    }

    .escudo-hero {
        width: 250px; /* Reducimos el logo */
    }

    .titulo-hero {
        font-size: 3.5rem; /* Tamaño manejable para tablet */
    }

    .btn-categoria-hero {
        font-size: 1.5rem;
        padding: 8px 30px;
    }
}

@media (max-width: 575.98px) {
    /* HERO CELULAR */
    .hero-principal {
        padding-top: 120px; /* Espacio para el banderín del header */
        background-position: 70% center; /* Ajustamos la foto para que se vea la escuela */
    }

    .escudo-hero {
        width: 200px;
    }

    .titulo-hero {
        font-size: 2.2rem; /* Evita que el texto se salga de la pantalla */
        margin-bottom: 30px;
        line-height: 1.1;
    }

    .btn-categoria-hero {
        width: 80%; /* Botones anchos para facilitar el clic */
        font-size: 1.2rem;
        padding: 10px;
    }
}
/* =========================================
   ESTADÍSTICAS REFINADAS
   ========================================= */

@media (max-width: 991.98px) {
    .barra-estadisticas {
        padding: 25px 0 !important; /* Menos relleno vertical */
    }

    .contenedor-icono {
        height: 40px !important; /* Altura más compacta */
        margin-bottom: 8px !important;
    }

    .icono-estadistica {
        max-height: 40px !important; /* Iconos más discretos */
    }

    .barra-estadisticas h3 {
        font-size: 1.4rem !important; /* Números proporcionales a los botones */
        margin-top: 5px;
    }

    .barra-estadisticas p {
        font-size: 0.85rem !important; /* Texto más fino */
        margin-top: -2px;
    }
}

/* =========================================
   ESTADÍSTICAS: DISEÑO 2X2 PARA MÓVIL
   ========================================= */

@media (max-width: 991.98px) {
    /* Forzamos que el contenedor de las filas use Flexbox con envoltura */
    .barra-estadisticas .row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        row-gap: 30px; /* Espacio entre la fila de arriba y la de abajo */
    }

    /* Cada ítem ocupará el 50% del ancho (2 por fila) */
    .estadistica-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 10px;
    }

    /* Ajuste de tamaños para que encajen bien en el 50% */
    .icono-estadistica {
        max-height: 45px !important; 
        margin-bottom: 10px;
    }

    .barra-estadisticas h3 {
        font-size: 1.6rem !important;
        line-height: 1;
    }

    .barra-estadisticas p {
        font-size: 0.9rem !important;
        margin-top: 5px;
    }
}




/* =========================================
    SOBRE NOSOTROS
   ========================================= */
:root {
    --azul-corporativo: #084866;
    --sombra-tarjeta: 0px 15px 35px rgba(0,0,0,0.15);
    --fs-titulo-grande: 3.5rem;
}

/* CINTILLO SUPERIOR */
.cintillo-titulo {
    background-color: #084866;
    color: white;
    border-radius: 30px 30px 0 0; 
    margin: 20px 0;
    
}


.cintillo-titulo h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'Poppins-Medium';
}



/* =========================================
MISIO, VISION Y OBJETIVOS
========================================= */
:root {
    --azul-corporativo: #084866;
    --sombra-tarjeta: 0px 15px 35px rgba(0,0,0,0.15);
}

/* TITULOS PRINCIPALES */
.titulo-principal {
    font-family: 'Poppins-Medium';
    font-size: 4.5rem;
    font-weight: 700;
    color: #344349;
}

.subtitulo-principal {
    font-family: 'Poppins-Regular';
    font-size: 1.5rem;
    color: #133440;
}

/* TARJETAS MISIÓN VISIÓN OBJETIVOS */
.tarjeta-mvo {
    background: #ffffff;
    border-radius: 40px;
    box-shadow: var(--sombra-tarjeta);
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease;
    position: relative; 
    overflow: visible; 
    font-size: 1.2rem;
    font-family: 'Poppins-Regular';
    width: 100%;
}

/* LA CÁPSULA AZUL */
.tarjeta-header {
    background-color: var(--azul-corporativo);
    color: white;
    padding: 10px 15px 10px 60px; /* Aumentamos el padding izquierdo para el icono */
    border-radius: 100px;
    position: absolute;
    top: -45px; 
    left: 20px; 
    right: -2px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 90px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* EL CÍRCULO QUE SOBRESALE */
.icono-contenedor {
    width: 100px; 
    height: 100px;
    background: var(--azul-corporativo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    position: absolute;
    left: -25px; /* Ajuste para que sobresalga de la cápsula y la tarjeta */
    top: 50%;
    transform: translateY(-50%); /* Centrado vertical respecto a la cápsula */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.icono-contenedor img {
    width: 60%;
    filter: brightness(0) invert(1);
}

/* TEXTO DENTRO DE LA CÁPSULA */
.header-texto {
    text-align: center;
    font-family: 'Poppins-Regular';
    margin-left: 80px;
}

.header-texto h3 {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins-Medium';
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 3px !important;
    right: 10px;
}

.header-texto p {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2; /* Ajuste para que los dos renglones se vean juntos */
    opacity: 0.9;
    font-family: 'Poppins-Regular';
}

/* AJUSTE PARA LAS VIÑETAS DEL CUERPO */
.tarjeta-body ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #000000;
    position: relative;
    padding-left: 1.5rem;
    font-family:'Poppins-Regular';
}

.tarjeta-body ul li::before {
    content: "•";
    color: black;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Sistema de Columnas M - Asegura el espaciado lateral */
@media (min-width: 992px) {
    .col-m-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        padding-left: 20px;   /* Espacio extra a la izquierda */
        padding-right: 20px;  /* Espacio extra a la derecha */
    }
}

/* Ajustes de las Tarjetas para resaltar la separación */
.tarjeta-mvo {
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08); /* Sombra más suave para que no se junten visualmente */
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease;
    position: relative; 
    overflow: visible; 
}


/* GALERÍA INFERIOR */
.img-galeria {
    width: 20%;
    height: 250px;
    object-fit: cover;
    border-right: 2px solid white;
}

/* =========================================
   RESPONSIVE: MISIÓN, VISIÓN Y OBJETIVOS
   ========================================= */

@media (max-width: 991.98px) {
    /* Ajuste de títulos principales */
    .titulo-principal {
        font-size: 2.5rem !important; /* Reducimos de 4.5rem */
        line-height: 1.1;
    }

    .subtitulo-principal {
        font-size: 1.2rem !important;
        margin-top: 10px;
    }

}

@media (max-width: 575.98px) {
    .titulo-principal {
        font-size: 2rem !important;
    }
}







/* =========================================
   CARRUSEL SOBRE NOSOTROS
   ========================================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Sección */
.seccion-galeria-institucional {
    position: relative;
    padding: 0;
    padding-top: 100px;
    padding-bottom: 70px;
}

/* Oculta mientras Swiper no esté listo (evita parpadeo) */
.swiper:not(.swiper-initialized) {
    visibility: hidden;
}

/* Contenedor */
.swiper-institucional {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 45px;
}

/* Slides */
.swiper-slide {
    height: 380px;
}

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

/* Base azul */
.base-azul-carrusel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: #084866;
    border-radius: 0 0 45px 45px;
    z-index: 0;
}

/* Asegura que slides estén encima */
.swiper-wrapper,
.swiper-slide {
    position: relative;
    z-index: 2;
}

/* Flechas */
.custom-arrow {
    color: #11ffff !important;
    z-index: 5;
}

.custom-arrow:hover {
    color: #94f7f7 !important;
    transform: translateY(-20%);
    filter: drop-shadow(0px 0px 8px rgba(0, 255, 255, 0.8)); /* Añade un resplandor cian */
}

.swiper-button-next,
.swiper-button-prev {
    top: 45%;
}




/* =========================================
  #ELIGE IUM
   ========================================= */
:root {
    --azul-ium: #004a6b;
    --fuente-titulos: 'Poppins-Bold', sans-serif;
    --fuente-textos: 'Poppins-Regular', sans-serif;
}

/* TÍTULOS */
.hashtag-titulo {
    color: #084866;
    font-size: 3.2rem;
    font-weight: 800;
    margin-left: 100px;
}

.subtitulo-elige {
    color: #084866;
    font-size: 1.8rem;
    font-family: var(--fuente-textos);
    margin-left: 100px;
}

/* SISTEMA DE COLUMNAS M (DISTRIBUCIÓN HORIZONTAL) */
@media (min-width: 992px) {
    .col-m-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        /* El espacio entre tarjetas se controla con gx-4 en el HTML */
    }
}

/* TARJETA */
.tarjeta-nivel {
    position: relative;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contenedor-foto {
    position: relative;
    overflow: hidden;
}

.contenedor-foto img.img-fluid {
    height: 380px;
    object-fit: cover;
    display: block;
}

/* BANDERÍN PNG (Combinado) */
.banderin-combinado {
    position: absolute;
    top: 0;
    left: 23px;
    width: 100px; /* Ajusta según el tamaño de tu PNG */
    z-index: 10;
}

/* BANDA AZUL INFERIOR */
.info-azul {
    background-color: var(--azul-ium);
    padding: 25px 15px;
    position: relative;
    min-height: 110px;
}

.label-nivel {
    color: #ffffff;
    font-family: 'Poppins-Regular';
    font-size: 1.5rem;
    margin: 0;
    text-transform: none;
}

.nombre-nivel {
    color: #ffffff;
    font-family: 'Poppins-Regular';
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

/* BOTÓN FLECHA (Vínculo) */
.boton-enlace {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease;
}

.boton-enlace:hover {
    transform: scale(1.1);
}

.boton-enlace img {
    width: 100%;
    height: auto;
}



/* =========================================
   CARTELERA IUM
   ========================================= */
.cartelera-titulo {
    font-family: 'Poppins-Medium';
    color: #084866;
    font-size: 3.5rem; /* Tamaño proporcional al diseño */
    font-weight: 800; /* Extra negrita para #EligeIUM y Cartelera IUM */
    margin-bottom: 0px;
    letter-spacing: -1px;
    margin-left: 100px;
}

.cartelera-subtitulo {
    font-family: 'Poppins-Regular', sans-serif;
    color: #004a6b;
    font-size: 2.2rem;
    font-weight: 400;
    margin-top: 1px; /* Ajuste de interlineado con el título */
    margin-left: 100px;
}

/* =========================================
   CÁPSULA CON CÍRCULO SOBREPUESTO
   ========================================= */
.capsula-actividades {
    background-color: #084866;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    padding: 12px 35px 12px 55px;
    border-radius: 100px;
    position: relative;
    margin-left: 130px; /* Espacio para que el círculo sobresalga */
}

.circulo-icono {
    width: 80px; 
    height: 80px;
    background-color: #084866;
    border: 5px solid #ffffff; /* Borde blanco grueso del diseño */
    border-radius: 50%;
    position: absolute;
    left: -40px; /* Posición para sobreponerse a la cápsula */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.circulo-icono img {
    width: 60%;
    filter: brightness(0) invert(1);
}

.texto-capsula {
    font-size: 1.5rem;
    font-family: 'Poppins-Bold', sans-serif;
    font-weight: 700;
}

/* =========================================
   CARRUSEL CARTELERA
   ========================================= */


.seccion-eventos {
    padding: 20px;
    background: #ffffff;
    margin-bottom: 150px;
}

.swiper-eventos {
    width: 100%;
}

.swiper-eventos .swiper-slide {
    height: auto;
    display: flex;
}

.card-evento {
    width: 100%;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease;
    height: 100%;
}

.card-evento:hover {
    transform: translateY(-5px);
}

/* Imagen */
.card-evento img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

/* Caja azul */
.info-evento {
    background: #084866;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    text-align: center !important;
}

.info-evento h3 {
    font-size: 17px;
    font-family: 'Poppins-Regular';
    margin: 0 0 15px 0;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 3;
    text-align: center;
    align-items: center;
}

/* Meta */
.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

/* Iconos PNG */
.meta-item img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Hace blancos los PNG */
}

/* Flechas */
.arrow-eventos {
    color: #16efff !important;
    width: 50px;
}











/* =========================================
   FOOTER
   ========================================= */

/* 1. ASEGURAR QUE EL PADRE NO TENGA ESPACIO ABAJO */
.footer-completo {
    background-color: #ffffff;
    padding-top: 150px; 
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.fondo-campus-ajustado {
    background-image: url('../img/escuela-final.png');
    background-size: cover; 
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    height: 550px; 
    display: flex;
    align-items: flex-end;
}

/* 2. CAJA AZUL PRINCIPAL */
.caja-azul-footer {
    background-color: #084866;
    border-radius: 70px 70px 0 0; 
    color: #ffffff;
    position: relative;
    z-index: 30; /* Subimos el nivel para que los clics funcionen siempre */
    min-height: 625px; 
    padding: 60px 50px 40px 120px !important;
    margin-left: 200px !important;
    margin-bottom: -13px !important; 
    margin-right: -10px;
}

/* Contenedor de columnas */
.caja-azul-footer .row {
    display: flex; 
    flex-wrap: wrap;
    justify-content: flex-start; 
    align-items: flex-start; 
    margin-top: 10px !important; 
    gap: 40px; 
    width: 100%;
}

/* 3. COLUMNAS */
.col-m-5 {
    flex: 0 0 auto;
    max-width: 45%;
    padding-right: 15px;
}

.col-m-7 {
    flex: 0 0 auto;
    max-width: 50%;
    padding-left: 10px; 
}

/* Títulos h3 */
.caja-azul-footer h3 {
    font-family: 'Poppins-Regular', sans-serif;
    margin-top: 10px;
    margin-bottom: 30px; 
    font-size: 1.5rem; 
    text-align: left;
    color: white;
    font-weight: 550;
}

/* 4. MAPA DE SITIO (ENLACES) */
.lista-footer {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 320px; 
}

.lista-footer li {
    margin-bottom: 18px; 
    position: relative;
    display: flex;
    align-items: flex-start; 
}

.lista-footer li a {
    font-size: 1.5rem; 
    color: white !important;
    text-decoration: none !important;
    font-family: 'Poppins-Regular', sans-serif;
    display: inline-block;
    padding-left: 35px; 
    line-height: 1.2;
    cursor: pointer; /* Mano del mouse */
    transition: all 0.3s ease;
    position: relative;
    z-index: 40; /* Asegura que el enlace sea lo más superficial */
}

.lista-footer li a::before {
    content: "•";
    color: white;
    position: absolute;
    left: 10px;
    top: -4px; 
    font-size: 2.2rem;
    pointer-events: none; /* El punto no estorba al clic */
}

.lista-footer li a:hover {
    color: #81cde6 !important;
    transform: translateX(8px);
}

/* 5. CONTACTO */
.caja-azul-footer .col-m-7 .d-flex {
    display: flex !important;
    align-items: center; 
    margin-bottom: 25px !important;
    gap: 20px; 
}

.icono-contacto-f {
    width: 50px !important; 
    height: 50px !important;
    flex-shrink: 0; 
    object-fit: contain;
    margin-left: -35px;
}

.texto-contacto {
    color: white;
    font-size: 1.2rem; 
    font-family: 'Poppins-Regular';
    line-height: 1.3;
    text-decoration: none;
    margin-left: -25px;
}

/* 6. ELEMENTOS DEL BANDERÍN */
.banderin-columna {
    position: absolute;
    bottom: 0; 
    left: 10%; 
    width: 650px;
    height: 778px;
    z-index: 100 !important; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    pointer-events: none; 
}

.redes-footer {
    margin-top: -340px !important; 
    z-index: 110 !important;
    pointer-events: auto; 
    display: flex;
    flex-wrap: wrap;     
    justify-content: center;
    align-items: center;
    gap: 20px;             
    width: 160px; 
    margin-left: auto;     
    margin-right: auto;
}

.icon-social {
    width: 70px !important; 
    height: 70px !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.icon-social:hover {
    transform: scale(1.1);   
}

.hashtag-footer {
    font-family: 'Poppins-Medium'; 
    font-weight: 900;
    color: #0c4a68;
    font-size: 1.9rem;
    margin-top: 70px !important; 
    text-align: center;
    position: relative;
    z-index: 110 !important;
    display: block;
}

.frase-footer {
    width: 100%;
    margin-bottom: 40px !important; 
    margin-top: -5px;
    font-size: 1.4rem;
    font-family: 'Poppins-Bold', sans-serif;
    font-weight: 800;
    text-align: center;
    color: white;
}

.copy-footer {
    width: 100%;
    font-family: 'Poppins-Regular';
    margin-top: 50px;
    padding-top: 5px;
    font-size: 1rem;
    text-align: center;
}




/* ================================================= 
   1. DISEÑO COMPACTO (Móvil y Tablets hasta 1024px)
   Diseño centralizado y limpio.
   ================================================= */
@media (max-width: 1366px) {
    .footer-completo { display: none !important; }
    .footer-mobile { display: block !important; margin-top: 50px; }

    .seccion-azul-compacta {
        background-color: #084866;
        padding: 50px 20px;
        text-align: center;
        border-radius: 40px 40px 0 0;
    }

    /* EDITAR TEXTOS MÓVIL/TABLET AQUÍ */
    .hashtag-footer-compacto { 
        font-size: 1.4rem; 
        font-weight: 800; 
        color: white; 
    }
    .enlaces-footer-compacto a { 
        font-size: 1rem; 
        color: white; 
        margin: 5px 12px; 
        text-decoration: none; 
    }
    .datos-footer-compacto p { 
        font-size: 0.9rem; 
        color: white; 
        margin-bottom: 6px; 
    }
    .copyright-compacto { 
        font-size: 0.8rem; 
        opacity: 0.7; 
    }
}


.redes-sociales-footer-compacto img {
        width: 35px; /* Tamaño del icono */
        margin: 0 10px;
        
        /* OPCIÓN 1: Iconos totalmente BLANCOS (Actualmente activa) */
        filter: brightness(0) invert(1); 
        
        /* OPCIÓN 2: Iconos en un tono CELESTE (Descomenta para usar) */
        /* filter: invert(81%) sepia(21%) saturate(986%) hue-rotate(167deg) brightness(96%) contrast(91%); */
        
        /* OPCIÓN 3: Color ORIGINAL de tus imágenes */
        /* filter: none; */
        
        transition: transform 0.3s ease;
    }

    .redes-sociales-footer-compacto img:hover {
        transform: scale(1.1);
    }




/* ================================================= 
   2. PANTALLAS MEDIANAS (1025px a 1366px)
   Laptops (MacBook Air/Pro). Cuadro azul MÁS ANCHO.
   ================================================= */
@media (min-width: 1367px) and (max-width: 2006px) {
    .footer-mobile { display: none !important; }
    .footer-completo { display: block !important; margin-top: 80px; }

    .caja-azul-footer {
        background-color: #084866;
        border-radius: 70px 70px 0 0;
        /* ENSANCHADO: Reducimos margen para ganar espacio horizontal */
        margin-left: 5px !important; 
        margin-right: -100px !important;
        padding: 50px 40px 40px 100px !important; 
        min-height: 150px;
    }

    .banderin-columna {
        position: absolute;
        bottom: 0;
        left: 0%; 
        width: 400px; /* Banderín más delgado */
        z-index: 100;
        pointer-events: none;
    }

    /* EDITAR TEXTOS LAPTOP/MAC AQUÍ */
    .frase-footer { 
        font-size: 1.2rem; /* Achicamos un poco para que no salte de línea */
        font-weight: 800; 
        text-align: center; 
    }
    .titulo-col-footer { 
        font-size: 1rem; 
        margin-bottom: 20px; 
    }

.redes-footer .icon-social {
    width: 55px !important;        /* Tamaño específico para laptop */
    opacity: 0.9;                  /* Puedes jugar con la transparencia */
}

    .lista-footer li a { 
        font-size: 1rem; /* Enlaces más pequeños para que quepan */
    }
    .texto-contacto { 
        font-size: 1rem; 
    }
    .hashtag-footer { 
        font-size: 1.1rem; 
        margin-top: 40px !important; 
    }
    .copy-footer { 
        font-size: 0.9rem; 
    }
    .redes-footer { 
        margin-top: -380px !important; 
        pointer-events: auto; 
    }
}

/* ================================================= 
   3. PANTALLAS GRANDES (1367px en adelante)
   Diseño de escritorio original (Full Desktop).
   ================================================= */
@media (min-width: 2006px) {
    .footer-mobile { display: none !important; }
    .footer-completo { 
        display: block !important; 
        margin-top: 100px; 
        padding-top: 150px; 
    }

    .caja-azul-footer {
        background-color: #084866;
        border-radius: 70px 70px 0 0;
        padding: 60px 50px 40px 120px !important;
        margin-left: 200px !important; /* Margen amplio original */
        min-height: 625px;
    }

    .banderin-columna {
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 750px;
        z-index: 100;
        pointer-events: none;
    }

    /* EDITAR TEXTOS ESCRITORIO GRANDE AQUÍ */
    .frase-footer { 
        font-size: 1.4rem; 
        font-weight: 800; 
    }
    .titulo-col-footer { 
        font-size: 1.5rem; 
    }
    .lista-footer li a { 
        font-size: 1.4rem; 
    }
    .texto-contacto { 
        font-size: 1.2rem; 
    }
    .hashtag-footer { 
        font-size: 1.9rem; 
        margin-top: 70px !important; 
    }
    .copy-footer { 
        font-size: 1rem; 
    }
}