





/* ==========================================
   1. RESET & BASE
========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    background: #f4f7fb; 
    color: #1a1a1a; 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* ==========================================
   2. NAVEGACIÃ“N (NAV) - VERSION ESTILIZADA
========================================== */
.nav { 
    background: #fff; 
    height: 90px;             /* Bajamos de 120 a 90 */
    display: flex; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 9999; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
}

.nav-container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    height: 100%;
}

.logo { 
    height: 70px;             /* Antes era 50, ahora 70: se nota la diferencia */
    width: auto; 
    transition: 0.3s; 
    display: block;
    padding: 5px 0;           /* Le damos un poquito de aire */
}
/* El contenedor de todas las cajas */
/* El contenedor de todas las cajas */
.menu {
    display: flex;
    align-items: center;
    gap: 5px; 
}

/* LA CAJA: Definimos el bloque de interacciÃ³n */
.nav-item {
    padding: 12px 20px;       /* Esto crea el tamaÃ±o de la caja */
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    border-radius: 8px;       /* Bordes suavizados */
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;       /* Para que el menÃº sepa dÃ³nde colgar */
}

/* EFECTO ACTIVE: Cuando el mouse entra en la CAJA */
.nav-item:hover {
    background-color: #f0f4f8; /* El color de fondo que "se prende" */
    color: #0056b3;
}

/* DISPARADOR: Cuando el mouse estÃ¡ sobre la caja de dropdown, mostramos contenido */
.dropdown:hover .dropdown-content {
    display: block !important;
}

/* Reset para que el texto de Servicios no se rompa */
.dropbtn {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    display: block;
}

/* La caja especial del botÃ³n final */
.nav-contact {
    background-color: #2F4F9C;
    color: #fff !important;
    margin-left: 10px;
}

.nav-contact:hover {
    background-color: #1e3a7a;
    transform: translateY(-2px);
}

/* Estilo del MegamenÃº (El que ya tenÃ­amos) */



@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   3. HAMBURGUER PREMIUM (ANIMADA)
========================================== */
.hamburger {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #0056b3;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

/* ==========================================
   HERO SECTION (VERSIÓN PREMIUM)
========================================== */

.hero{
    padding: 80px 20px;
    position: relative;
    overflow: hidden;

    color: #fff;
    background: radial-gradient(circle at 75% 50%, #1b6fd8 0%, #0a4d8c 45%, #061a2b 100%);
}

/* fondo decorativo suave */
.hero::before{
    content: "";
    position: absolute;
    inset: -200px;

    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(61,220,151,0.10), transparent 45%);

    filter: blur(60px);
    opacity: 0.8;
    z-index: 0;
}

.hero-container{
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    position: relative;
    z-index: 1;
}

/* TEXTO */
.hero-text{
    flex: 1;
}

.hero-text h1{
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;

    margin-bottom: 22px;

    background: linear-gradient(90deg, #ffffff, #b7ddff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p{
    font-size: 1.25rem;
    line-height: 1.7;

    max-width: 520px;

    opacity: 0.85;
    margin-bottom: 35px;
}

/* BOTONES */
.hero-buttons{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn{
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;

    display: inline-block;
}

.btn.primary{
    background: #ffffff;
    color: #0a4d8c;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.btn.primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.btn.secondary{
    border: 2px solid rgba(255,255,255,0.8);
    color: #fff;
    background: transparent;
}

.btn.secondary:hover{
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

/* ILUSTRACIÓN */
.hero-illu{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illu img{
    width: 100%;
    max-width: 460px;

    filter: drop-shadow(0 25px 60px rgba(0,0,0,0.45));


}

/* flotación más suave y natural */
@keyframes heroFloat{
    0%, 100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-12px);
    }
}

/* RESPONSIVE */
@media (max-width: 900px){
    .hero-container{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text p{
        margin: 0 auto 30px;
    }

    .hero-text h1{
        font-size: 2.6rem;
    }

    .hero-illu img{
        max-width: 320px;
    }
}


/* ==========================================
   5. MARQUEE & CARDS
========================================== */
.marquee { overflow: hidden; background: #0a4d8c; padding: 30px 0; }
.marquee-content { display: flex; gap: 50px; animation: scroll 30s linear infinite; }
.marquee img { height: 110px; border-radius: 8px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 80px 20px; text-align: center; max-width: 1200px; margin: auto; }
.cards { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}
.card { background: #fff; padding: 35px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { 
    transform: translateY(-4px); 
}

.counter-flex { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 2.5rem; color: #0a4d8c; margin-bottom: 10px; }
.counter-logo { height: 50px; }

/* Pilares */
.valores-section{
    position: relative;
    overflow: hidden;
    background: #fff;
    text-align: center;

    height: 400px;
}	
.valores-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: auto; }
.valor-card { background: #f9fbff; padding: 40px 25px; border-radius: 20px; border: 1px solid #e6ecf5; }
.valor-icon { width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; }
.mision .valor-icon { background: linear-gradient(135deg, #ff7a00, #ffb347); }
.vision .valor-icon { background: linear-gradient(135deg, #1e90ff, #00c6ff); }
.valores .valor-icon { background: linear-gradient(135deg, #a100ff, #ff00c8); }

/* ==========================================
   6. FOOTER & REDES SOCIALES PREMIUM
========================================== */
.main-footer { background: #fff; width: 100%; padding: 80px 0 30px; border-top: 1px solid #eef2f6; margin-top: 50px; }
.footer-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: flex-start; }

.footer-logo-img { height: 70px; margin-bottom: 25px; }

.footer-social-links { display: flex; gap: 15px; margin-bottom: 30px; }

.social-icon {
    width: 48px; height: 48px;
    background: #ffffff; color: #333;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px; font-size: 22px; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.social-icon:hover { transform: translateY(-5px); color: #fff; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: transparent; }
.social-icon.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-icon.linkedin:hover { background: #0077b5; border-color: #0077b5; }

.footer-info-box h4 { color: #0a4d8c; margin-bottom: 20px; font-weight: 700; }
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.contact-item i { color: #0056b3; width: 25px; text-align: center; font-size: 1.1rem; }

.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #f1f1f1; color: #999; font-size: 0.85rem; }

/* ==========================================
   7. EXTRAS (WSP & REVEAL) - VERSIÃ“N FINAL
========================================== */

}

.wsp-float:hover { 
    transform: scale(1.1) rotate(10deg);
    background: #20ba5a;
}

.wsp-float i {
    line-height: 0; /* Centra el icono perfectamente */
}

/* El reveal queda igual */
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }


/* ==========================================
   8. RESPONSIVE (CELULAR)
========================================== */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .menu {
        position: fixed;
        top: 80px;
        right: -100%;
        background: #ffffff;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 20px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 20px rgba(0,0,0,0.05);
    }

    .menu.active { right: 0; }

    .menu a { 
        width: 100%; 
        text-align: center; 
        font-size: 1.2rem; 
        padding: 15px;
        border-bottom: 1px solid #f8f9fa;
    }

    .nav-contact { width: 80%; margin-top: 20px; }

    .hero-container, .footer-wrap { flex-direction: column; text-align: center; align-items: center; gap: 40px; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-buttons { justify-content: center; }
    
    .contact-item { justify-content: center; }
}


.bg-circles {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;

    background: radial-gradient(circle,
    currentColor 0%,
    currentColor 15%,
    rgba(255,255,255,0.6) 30%,
    transparent 75%
);

    filter: blur(60px);
    opacity: 1;

    animation: flotar 12s ease-in-out infinite;
}


/* COLORES */
.green { color: #00ff96; top: 20%; left: 10%; }
.yellow { color: #ffdc00; top: 60%; left: 70%; }
.orange { color: #ff7800; top: 30%; left: 80%; }
.blue { color: #0078ff; top: 70%; left: 20%; }

.green  { width: 900px; height: 900px; }
.yellow { width: 700px; height: 700px; }
.orange { width: 800px; height: 800px; }
.blue   { width: 750px; height: 750px; }


.green  { animation-duration: 14s; }
.yellow { animation-duration: 18s; }
.orange { animation-duration: 16s; }
.blue   { animation-duration: 20s; }


/* === TITULOS SECCION === */
.section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}


.hero-img {
    position: relative;
}

.hero-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;

    background: radial-gradient(circle,
        rgba(0,198,255,0.6) 0%,
        rgba(0,86,179,0.4) 40%,
        transparent 70%
    );

    filter: blur(60px);
    z-index: -1;

}

.slider-servicios {
    padding: 80px 20px;
}

.slider {
    max-width: 1100px;
    margin: auto;
}

.slide {
    display: none;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.slide.active {
    display: flex;
}

.slide-text {
    padding: 40px;
    width: 50%;
}

.slide img {
    width: 50%;
    object-fit: cover;
}

.slider-servicios h2 {
    text-align: center;
    font-size: 3rem; /* mÃ¡s grande */
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* FLECHAS */
.controls span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0,0,0,0.4);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

.controls span:hover {
    background: rgba(0,0,0,0.7);
}

/* ==========================================
   DOTS VISIBLES + PREMIUM
========================================== */

.dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:35px;
}

/* DOT */
.dot{
    width:14px;
    height:14px;

    border-radius:50%;

    background:#c7d2fe; /* visible */

    cursor:pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease,
        opacity .3s ease;

    opacity:.65;
}

/* HOVER */
.dot:hover{
    transform:scale(1.15);

    opacity:1;

    background:#60a5fa;

    box-shadow:
        0 0 12px rgba(59,130,246,.45);
}

/* ACTIVO */
.dot.active{

    background: linear-gradient(
        135deg,
        #00c6ff,
        #0078ff
    );

    transform:scale(1.4);

    opacity:1;

    box-shadow:
        0 0 18px rgba(0,120,255,.55),
        0 0 35px rgba(0,120,255,.28);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background: radial-gradient(circle at 20% 30%, rgba(0,255,150,0.15), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(0,120,255,0.15), transparent 60%),
                radial-gradient(circle at 60% 20%, rgba(255,120,0,0.15), transparent 60%);
}


/* ==========================================
   DISEÃ‘O HERO PROFESIONAL Y EQUILIBRADO
========================================== */

.hero-new {
    /* Cambiamos el color sÃ³lido por RGBA con 0.98 de opacidad (98% sÃ³lido) */
    background-image: url("img/hero-ilustrado.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat; 
position: relative;
overflow: hidden;
    
    /* Agregamos esto para que lo poquito que se transparente se vea elegante */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(0px); /* Soporte para Safari */

    color: #fff;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}


.hero-new::before{
    content:"";
    position:absolute;
    inset:0;

    background: rgba(20,85,187,.55);

    z-index:0;
}


.hero-container-new {
    display: flex;
    max-width: 1400px; /* Un poco mÃ¡s ancho para dar aire */
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px; /* Espacio entre las tres columnas */
}

/* --- Contenedores de ImÃ¡genes (Los lados) --- */
.hero-image-container {
    flex: 1; /* Las dos imÃ¡genes ocupan el mismo espacio */
    display: flex;
    align-items: center;
}

.hero-left {
    justify-content: flex-start; /* Mano pegada a la izquierda */
}

.hero-right {
    justify-content: flex-end; /* Familia pegada a la derecha */
}

/* --- El Secreto del Equilibrio y No-DeformaciÃ³n --- */
.hero-image {
    width: auto;          /* No la obligamos a estirarse */
    height: auto;         /* No la obligamos a aplastarse */
    max-width: 100%;      /* Pero que no se salga de su columna */
    object-fit: contain;  /* Mantiene la proporciÃ³n perfecta */
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.2));
}

/* --- TamaÃ±os EspecÃ­ficos (Ajusta estos para 'grandeza' sin caos) --- */
.logo-abuelos {
    max-width: 480px;     /* <--- TamaÃ±o grande para la mano, sin ser gigante aplastada */
    animation: float 5s ease-in-out infinite;
}

.ilustracion-familia {
    max-width: 450px;     /* <--- TamaÃ±o equilibrado para la familia */
}

/* --- El Contenido Central (El Rey) --- */
.hero-content-new {
    flex: 2;             /* El texto ocupa el doble de espacio que una imagen */
    text-align: center;   /* Centramos todo el texto y botones */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4rem;      /* TÃ­tulo grande y claro */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;     /* Limitamos el ancho del pÃ¡rrafo para legibilidad */
    margin-bottom: 45px;
}

/* --- Botones --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-new {
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #fff;
    color: #1455bb;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #0b4eac;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* --- AnimaciÃ³n de FlotaciÃ³n (CopiÃ¡ esto si no lo tenÃ©s) --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================
   5. AJUSTE PARA QUE SERVICIOS NO TARDE (IMPORTANTE)
========================================== */
.marquee { 
    overflow: hidden; 
    background: #0a4d8c; 
    padding: 30px 0; 
    margin-top: 0; /* Sin margen negativo para respetar el diseÃ±o original */
}

.section { 
    padding: 40px 20px; /* Bajamos solo este padding para que Servicios suba un poco */
    text-align: center; 
    max-width: 1200px; 
    margin: auto; 
}

.section h2 {
    margin-top: 0;
    margin-bottom: 30px; /* Menos espacio entre tÃ­tulo y tarjetas */
}


/* Ajuste para que la familia no estÃ© gigante */
.hero-img-left-src {
    width: 100%;          /* Que ocupe el ancho de su columna... */
    max-width: 420px;     /* ...pero que no pase de 420px (ajustÃ¡ este nÃºmero si la querÃ©s mÃ¡s chica) */
    height: auto;
    display: block;
    margin-left: auto;    /* La empuja bien hacia la derecha */
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.15));
}

/* Reequilibramos las columnas para que el texto respire */
.hero-img {
    flex: 2.5;
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    padding-left: 400px;
}
              /* Columna de la mano (izq) */
}

.hero-text {
    flex: 2;              /* Columna del texto (centro) - le damos mÃ¡s espacio */
}

.hero-img-left {
    flex: 1.5;            /* Columna de la familia (der) */
    display: flex;
    justify-content: flex-end;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ==========================================
   WSP - FIX FINAL (ESTILO IMPERATIVO)
========================================== */
.wsp-float { 
    position: fixed !important;
    bottom: 40px !important;    /* Lo subimos un poco para que no se pegue al borde */
    right: 10px !important;     /* Lo metemos hacia adentro para que no se corte */
    width: 65px !important; 
    height: 65px !important; 
    background: #25d366 !important; 
    color: #fff !important; 
    border-radius: 50% !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    font-size: 35px !important; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important; 
    z-index: 2147483647 !important; /* El nivel mÃ¡s alto de capas */
    text-decoration: none !important; 
    transition: all 0.3s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wsp-float:hover { 
    transform: scale(1.15) rotate(15deg) !important; 
    background: #20ba5a !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4) !important;
}

/* Centrado del icono */
.wsp-float i {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

.logo { 
    height: 95px !important;    /* <--- AjustÃ¡ este nÃºmero a tu gusto (ej: 80, 90, 100) */
    width: auto !important; 
    transition: 0.3s !important;
    display: block !important;
    position: relative !important;
    z-index: 10000 !important;
}

/* Estilo para el contenedor del tÃ­tulo-imagen */
.hero-title-img {
    margin-bottom: -125px;
    display: flex;
    justify-content: center;
}

/* ==========================================
   IMPACTO MÃXIMO: ILUSTRACIÃ“N DE LETRAS
========================================== */

/* Usamos una cadena de selectores larga para ganar especificidad sin !important */
body .hero-new .hero-container-new .hero-content-new .hero-title-img .img-frase-hero {
    display: block;
    width: 70%;
    /* TAMAÃ‘O IMPACTO: De 800px subimos a 1200px */
    max-width: none; 
    height: auto;
    margin: 0 auto;
    /* TransiciÃ³n fluida para el responsive */
    transition: all 0.4s ease-in-out;
    filter: drop-shadow(0px 15px 30px rgba(0,0,0,0.2));
}

/* Ajustamos el contenedor para que no asfixie a la imagen */
.hero-content-new {
    flex: 4 !important; /* Le damos mucho mÃ¡s espacio al centro que a los lados */
    width: 100%;
}

/* ==========================================
   RESPONSIVE (Ajuste gradual)
========================================== */

/* Pantallas de Laptop comunes */
@media (max-width: 1400px) {
    body .hero-new .hero-container-new .hero-content-new .hero-title-img .img-frase-hero {
        max-width: 950px;
    }
}

/* Tablets y pantallas pequeÃ±as */
@media (max-width: 1024px) {
    body .hero-new .hero-container-new .hero-content-new .hero-title-img .img-frase-hero {
        max-width: 750px;
    }
}

/* Celulares (Para que se vea imponente pero quepa en la pantalla) */
@media (max-width: 768px) {
    body .hero-new .hero-container-new .hero-content-new .hero-title-img .img-frase-hero {
        max-width: 450px;
    }
}

/* Celulares pequeÃ±os */
@media (max-width: 480px) {
    body .hero-new .hero-container-new .hero-content-new .hero-title-img .img-frase-hero {
        max-width: 320px;
    }
}


@media (max-width: 768px) {

    .hero-container-new {
        flex-direction: column;
        gap: 20px;
    }

    .hero-left,
    .hero-right {
        justify-content: center;
    }

    .logo-mano {
        max-width: 220px;
    }

    .ilustracion-familia {
        max-width: 240px;
    }

    .hero-content-new {
        order: -1; /* ðŸ”¥ el texto arriba (clave) */
    }
}

@media (max-width: 768px) {

    .img-frase-hero {
        width: 100% !important;
        max-width: 320px !important;
        transform: none !important;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-new {
        width: 90%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-new {
        min-height: auto;
        padding: 40px 15px;
    }
}

.hero-description {
    text-align: center;
}

@media (max-width: 768px) {

    .marquee {
        padding: 15px 0; /* menos alto */
    }

    .marquee-content {
        gap: 25px; /* menos espacio entre imÃ¡genes */
    }

    .marquee img {
        height: 45px; /* ðŸ”¥ clave */
    }

}

@media (max-width: 768px) {
    .marquee-content { 
        animation: scroll 15s linear infinite;
    }
}

@media (max-width: 768px) {

    .footer-wrap {
        flex-direction: column;
        align-items: center; /* ðŸ”¥ centra TODO el bloque */
        text-align: center;
    }

    .footer-identity {
        display: flex;
        flex-direction: column;
        align-items: center; /* ðŸ”¥ centra logo + redes */
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .footer-social-links {
        display: flex;
        justify-content: center; /* ðŸ”¥ centra los Ã­conos */
        gap: 12px;
        width: 100%;
    }


    .footer-logo-img {
        display: block;
        margin: 0 auto; /* ðŸ”¥ centra el logo sÃ­ o sÃ­ */
    }

}

.nav {
    position: relative;
    z-index: 100000 !important;
}

.hamburger {
    position: relative;
    z-index: 100001 !important;
}


#bg-wrap {
    pointer-events: none !important;
    z-index: -1 !important;
}









.nav .menu-card:hover {
    transform: translateY(-5px);
}
.nav .dropdown-content .card-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* ðŸ”¥ clave */
    padding: 8px !important;        /* ðŸ”¥ iguala visualmente */
    display: block !important;
}

/* 3. Aseguramos que las tarjetas se pongan una al lado de la otra */
.nav .megamenu-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 45px !important;
    padding: 20px !important;
}

/* 4. La tarjeta completa */
.nav .menu-card {
    width: 100px !important; /* Limita el ancho de todo el bloque */
    text-align: center !important;
    text-decoration: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* 5. El texto debajo de la foto */
.nav .menu-card span {
    font-size: 13px !important;
    line-height: 1.2 !important;
    color: #333 !important;
    font-weight: 600 !important;
}



.nav .menu-card {
    transition: 0.3s;
}


.nav .dropdown-content .card-img-wrapper {
    width: 110px !important;
    height: 90px !important;
}

.nav .dropdown-content .card-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 10px !important;
}

.nav .dropdown-content .card-img-wrapper img {
    width: 90% !important;
    height: 90% !important;
    object-fit: contain !important;
    transform: scale(1.1); /* ðŸ”¥ compensa imÃ¡genes chicas */
}


/* ===== FIX DEFINITIVO MEGAMENU ===== */

.nav .dropdown-content .card-img-wrapper {
    width: 150px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f4f7fb;
    border-radius: 12px;
    overflow: hidden;
}

.nav .dropdown-content .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    transform: scale(1.3);
}

.nav .menu-card {
    width: 150px;
    text-align: center;
}

.nav .megamenu-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}




/* ðŸ”¥ FORZADO FINAL */
.dropdown {
    position: static !important;
}

.dropdown-content {
    position: fixed !important;
    top: 90px !important;
    left: 0 !important;

    width: 100vw !important;
    max-width: none !important;

    background: #fff !important;
    padding: 40px 0 !important;

    border-radius: 0 !important;
    box-shadow: none !important;

    z-index: 999999 !important;

    /* ðŸ”¥ CAMBIO IMPORTANTE */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
}
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}



.nav .megamenu-grid {
    max-width: 1100px !important;
    margin: 0 auto !important;
}

html, body {
    overflow-x: visible !important;
}

.dropdown-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 100%;
    height: 60px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.95) 50%,
        rgba(255,255,255,0.85) 75%,
        rgba(255,255,255,0) 100%
    );

    pointer-events: none;
}



/* ==========================================
   FIX FINAL MEGAMENU + BLUR GAUSSIANO
========================================== */

/* ðŸ”¹ Dropdown SIEMPRE presente (no usar display:none) */
.dropdown-content {
    display: block !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.dropdown-content {
    top: 70px !important; /* ðŸ”¥ mismo valor que el nav */
}

/* ðŸ”¹ ActivaciÃ³n estable */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ðŸ”¹ PUENTE invisible para evitar corte de hover */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 25px;
}

/* ðŸ”¹ Overlay blur (NO interfiere con mouse) */
body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    pointer-events: none; /* ðŸ”¥ CLAVE */
    z-index: 1000;
}

/* ðŸ”¹ Asegurar capas correctas */
.nav {
    position: relative;
    z-index: 2000;
}

.dropdown-content {
    z-index: 3000 !important;
}

body.force-close .dropdown-content {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* CONTENEDOR */
.loader {
    position: fixed;
    inset: 0;
    background: #0a4d8c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    overflow: hidden;
}

/* MANO */
.loader-hand {
    width: 180px;
    opacity: 0.15; /* ðŸ”¥ casi transparente */
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* SHIMMER (efecto brillo) */
.loader-hand::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.4),
        transparent 70%
    );
    animation: shimmer 2s infinite;
}

/* PARTICULAS */
.particles::before,
.particles::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

.particles::after {
    animation-delay: 1.5s;
}

/* ANIMACIONES */

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}







/* ðŸ”¥ AGRANDAR IMÃGENES DEL MEGAMENU */

.nav .dropdown-content .card-img-wrapper {
    width: 180px !important;
    height: 140px !important;
}

.nav .dropdown-content .card-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transform: scale(1.4) !important; /* ðŸ”¥ hace que se vean mÃ¡s grandes */
}

/* ðŸ”¥ AGRANDAR LA TARJETA COMPLETA */
.nav .menu-card {
    width: 180px !important;
}

/* ðŸ”¥ TEXTO UN POCO MÃS GRANDE (opcional pero queda mejor) */
.nav .menu-card span {
    font-size: 15px !important;
}






.card {
    padding: 70px 20px !important;
    overflow: visible !important; /* ðŸ”¥ permite que la imagen se salga */
}

.card img {
    width: 380px !important;     /* ðŸ’£ ENORME */
    height: 260px !important;

    object-fit: cover !important;

    display: block !important;
    margin: -80px auto 30px !important; /* ðŸ”¥ efecto flotante */

    border-radius: 30px !important;

    box-shadow: 0 30px 80px rgba(0,0,0,0.35) !important;

    max-width: none !important;
    position: relative;
    z-index: 2;
}



.cards{
    display: grid !important;

    grid-template-columns: repeat(5, minmax(220px, 260px)) !important;

    justify-content: center !important;

    gap: 35px !important;
}


.card img{
    width: 90% !important;
    height: 180px !important;

    object-fit: cover !important;

    margin: -40px auto 20px !important;

    border-radius: 20px !important;
}


.dropbtn,
.menu-card span {
    transition: all 0.25s ease !important;
}

.menu-card:hover span,
.dropdown:hover .dropbtn {
    transform: translateY(-2px) !important;
    letter-spacing: 0.5px !important;
    opacity: 0.9 !important;
}

.card-img-wrapper img {
    transition: all 0.25s ease !important;
}

.menu-card:hover .card-img-wrapper img {
    transform: scale(1.05) !important;
    filter: brightness(1.05) drop-shadow(0 8px 18px rgba(0,0,0,0.25)) !important;
}

.menu-card span {
    margin-top: 8px !important;
    display: block !important;
}

.card {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}









/* ==========================================
   VIDEO PILARES - FIX LIMPIO
========================================== */

.valores-section{
    position: relative;
    overflow: hidden;
}

/* VIDEO DE FONDO */
.valores-video-bg{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 1;

    filter: sepia(0.4)
            saturate(0.9)
            brightness(0.9)
            contrast(1.2)
            hue-rotate(5deg);

    z-index: 0;

    pointer-events: none;
}
/* CONTENIDO ENCIMA */
.valores-container{
    position: relative;
    z-index: 2;
}






.valor-card{
    position: relative;

    background: rgba(255,255,255,0.22);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.35);

    border-radius: 28px;

    padding: 50px 35px;

    overflow: hidden;

    transition: all .45s cubic-bezier(.2,.8,.2,1);

    box-shadow:
        0 10px 40px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.35);
}


.valor-card::before{
    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.35),
        transparent 40%
    );

    opacity:.7;

    pointer-events:none;
}


.valor-card:hover{

    transform:
        translateY(-12px)
        scale(1.02);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);

}


.valor-icon{

    width:90px;
    height:90px;

    font-size:34px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);

    margin-bottom:28px;
}


.valores-section{

    background:
    linear-gradient(
        135deg,
        #f7d7ca 0%,
        #f2dfd4 50%,
        #eedfd8 100%
    );

    position:relative;
}



.valores-section::before,
.valores-section::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    filter:blur(90px);

    opacity:.25;

    z-index:0;
}

.valores-section::before{
    background:#ff8a00;
    top:-150px;
    left:-120px;
}

.valores-section::after{
    background:#ff00c8;
    bottom:-200px;
    right:-150px;
}


.valores-container{
    position:relative;
    z-index:2;
}







.stack-section{
    position: relative;
    overflow: visible;

    background: #1B74FF;

    padding: 120px 0;

    min-height: 100vh;
}

/* TITULO */

.stack-title{
    text-align: center;
    color: white;
    margin-bottom: 80px;

    opacity: 0;
    transform: translateY(40px);

    animation: fadeUp 1s ease forwards;
}

.stack-title h2{
    font-size: 55px;
    margin-bottom: 15px;
}

.stack-title p{
    font-size: 20px;
    opacity: .9;
}

/* CONTENEDOR */

.stack-cards{
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 520px;

    width: 100%;
    max-width: 1700px;

    margin: auto;

    perspective: 1800px;
    
}

/* TARJETAS */

.stack-card{
    position: absolute;

    width: 320px;
    height: 430px;

    border-radius: 30px;
    overflow: hidden;

    cursor: pointer;

    opacity: 0;

   

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    animation: stackFade .8s ease forwards;

    box-shadow:
        0 15px 40px rgba(0,0,0,.22);

    will-change: transform;

    backface-visibility: hidden;
}


/* POSICION SUPERPUESTA */

.stack-card:nth-child(1){
    transform: translateX(0px);
    z-index: 1;
}

.stack-card:nth-child(2){
    transform: translateX(12px);
    z-index: 2;
}

.stack-card:nth-child(3){
    transform: translateX(24px);
    z-index: 3;
}

.stack-card:nth-child(4){
    transform: translateX(36px);
    z-index: 4;
}

.stack-card:nth-child(5){
    transform: translateX(48px);
    z-index: 5;
}

/* IMAGEN */

.stack-card img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    transform: translateZ(0);

    border-radius: 30px;
}

/* OVERLAY */

.card-info{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;

    padding: 25px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.8)
    );

    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

/* HOVER SOLO CUANDO LA SECCION ESTA ACTIVA */

.stack-card{
    pointer-events: none;
}

.stack-section.stack-active .stack-card{
    pointer-events: auto;
}

.stack-section.stack-active .stack-card:hover{
    transform:
        translateY(-15px)
        scale(1.03);

    z-index: 999;

    box-shadow:
        0 20px 50px rgba(0,0,0,.28);
}

/* ANIMACIONES */

@keyframes stackFade{
    from{
        opacity: 0;
    }

    to{
        opacity: 1;
    }
}

@keyframes fadeUp{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}





/* ===== EFECTO FINAL PRO ===== */

.card{
    overflow: hidden;
    transform-style: preserve-3d;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.card::before{
    content:"";

    position:absolute;
    inset:-2px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.35),
        transparent 30%,
        transparent 70%,
        rgba(255,255,255,.15)
    );

    opacity:0;

    transition: opacity .35s ease;

    pointer-events:none;
}

.card:hover{
    transform:
        translateY(-10px)
        scale(1.02);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);
}

.card:hover::before{
    opacity:1;
}

.card img{
    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        filter .45s ease;
}

.card:hover img{
    transform: scale(1.08);

    filter:
        brightness(1.08)
        contrast(1.05)
        saturate(1.08);
}

.card h3,
.card p{
    transition:
        transform .35s ease,
        opacity .35s ease;
}

.card:hover h3{
    transform: translateY(-3px);
}

.card:hover p{
    transform: translateY(-2px);
    opacity:.92;
}




/* 🔥 STACK CARD SALE HACIA ADELANTE */

.stack-cards{
    perspective: 2200px;
    transform-style: preserve-3d;
}

.stack-card{

    transform-style: preserve-3d;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        filter .45s ease;

    will-change: transform;
}

/* 🔥 EFECTO PRINCIPAL */
.stack-section.stack-active .stack-card:hover{

    transform:
        translateY(-18px)
        translateZ(90px)
        scale(1.04);

    z-index: 9999;

    box-shadow:
        0 25px 60px rgba(0,0,0,.22);
}

/* IMAGEN MÁS PROFUNDA */
.stack-card img{

    transition:
        transform .5s ease,
        filter .45s ease;

    transform-style: preserve-3d;
}

.stack-section.stack-active .stack-card:hover img{

    transform:
        scale(1.08)
        translateZ(120px);

    filter:
        brightness(1.08)
        contrast(1.05)
        saturate(1.08);
}

/* INFO FLOTA */
.card-info{
    transform-style: preserve-3d;
    transition: transform .45s ease;
}

.stack-section.stack-active .stack-card:hover .card-info{
    transform: translateZ(90px);
}



/* ==========================================
   POPUP PRO SOLO CSS
========================================== */

.stack-card{
    position: relative !important;
    overflow: visible !important;
    isolation: isolate;
}

/* POPUP */
.stack-card::after{

    content: attr(data-text);

    position: absolute;

    left: 50%;
    top: calc(100% + 18px);

    transform:
        translateX(-50%)
        translateY(-12px)
        scale(.92);

    width: 280px;

    padding: 18px 20px;

    border-radius: 22px;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #1a1a1a;

    font-size: 14px;
    line-height: 1.5;
    text-align: center;

    box-shadow:
        0 25px 60px rgba(0,0,0,.18);

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .35s ease,
        transform .45s cubic-bezier(.2,.8,.2,1);

    z-index: 999999;
}

/* APARECE */
.stack-card:hover::after{

    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0)
        scale(1);
}



.quienes-text-area{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.quienes-text-wrapper{
    width:100%;
    max-width:680px;

    height:140px;          /* 🔒 FIJO REAL */
    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

#quienesText{
    font-size:20px;
    line-height:1.8;
    color:#4b5563;
    text-align:center;

    margin:0;

    transition: opacity .55s ease, transform .55s ease;
}

#quienesText.fade-out{
    opacity:0;
    transform:translateY(15px);
}





/* =========================
   QUIÉNES SOMOS (BLOQUE)
========================= */

.quienes-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #ffffff, #f7f9ff);
    display: flex;
    justify-content: center;
}

.quienes-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

/* TAG superior */
.quienes-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ffe6ec;
    color: #ff4d6d;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .3px;
    margin-bottom: 12px;
}

/* TITULO */
.quienes-container h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1c1c1c;
}

/* CONTENEDOR DEL SLIDER */
.quienes-text-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #fff;
    padding: 25px 20px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    position: relative;
}

/* TEXTO */
#quienesText {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 600px;
    transition: opacity .3s ease;
}

/* BOTONES FLECHA */
.quienes-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff4d6d, #ff7a00);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    flex-shrink: 0;
}

.quienes-arrow:hover {
    transform: scale(1.1);
}

/* EFECTO SUAVE AL CAMBIAR TEXTO */
.quienes-text-slider p {
    animation: fadeText .3s ease;
}

@keyframes fadeText {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}



.quienes-text-slider {
    min-height: 140px; /* clave: fija el alto del bloque */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

#quienesText {
    min-height: 80px;   /* evita que el texto empuje el layout */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
}



.hero .hero-container{
    justify-content: center !important;
}

.hero .hero-img img{
    width: 250px !important;
}




/* ==========================================
   AFILIACION MUDAP
========================================== */

#asociate{

    position:relative;

    max-width:900px;

    margin:0 auto;

    padding:140px 20px;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

    overflow:hidden;
}

/* GLOW PRINCIPAL */

#asociate::before{

    content:"";

    position:absolute;

    width:900px;
    height:900px;

    left:50%;
    top:-450px;

    transform:translateX(-50%);

    background:
    radial-gradient(
        circle,
        rgba(255,120,0,.28) 0%,
        rgba(255,120,0,.12) 35%,
        transparent 75%
    );

    filter:blur(100px);

    pointer-events:none;
}

/* SEGUNDO GLOW */

#asociate::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    bottom:-250px;
    right:-150px;

    background:
    radial-gradient(
        circle,
        rgba(255,140,0,.12),
        transparent 70%
    );

    filter:blur(80px);

    pointer-events:none;
}

/* TITULO */

#asociate h2{

    position:relative;

    z-index:2;

    font-size:clamp(3rem,8vw,5rem);

    line-height:.95;

    letter-spacing:-2px;

    margin-bottom:20px;

    text-shadow:
        0 0 40px rgba(255,140,0,.15);
}

/* SUBTITULO */

#asociate p{

    position:relative;

    z-index:2;

    max-width:700px;

    margin:0 auto 50px;

    line-height:1.8;

    font-size:1.08rem;

    opacity:.85;
}

/* FORM */

#asociate .card{

    position:relative;

    z-index:2;

    width:100%;
    max-width:580px;

    display:flex;
    flex-direction:column;

    gap:18px;
}

/* INPUTS */

#asociate input{

    width:100%;

    height:74px;

    padding:0 28px;

    border-radius:22px;

    border:1px solid rgba(255,140,0,.12);

    background:
    linear-gradient(
        180deg,
        rgba(28,28,28,.95),
        rgba(14,14,14,.95)
    );

    color:#fff;

    font-size:1.05rem;

    transition:
        .35s ease;
}

#asociate input::placeholder{

    color:rgba(255,255,255,.45);
}

#asociate input:focus{

    outline:none;

    border-color:#ff8c00;

    transform:translateY(-2px);

    box-shadow:
        0 0 0 1px rgba(255,140,0,.35),
        0 0 35px rgba(255,140,0,.15);
}

/* BOTON */

#btnWhatsapp{

    height:78px;

    border:none;

    border-radius:22px;

    cursor:pointer;

    color:#fff;

    font-size:1rem;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:2px;

    background:
    linear-gradient(
        135deg,
        #ff5e00,
        #ff8500,
        #ffb300
    );

    background-size:250% 250%;

    box-shadow:
        0 15px 40px rgba(255,120,0,.25),
        0 0 80px rgba(255,120,0,.15);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

#btnWhatsapp:hover{

    transform:
        translateY(-5px)
        scale(1.02);

    box-shadow:
        0 25px 60px rgba(255,120,0,.40),
        0 0 120px rgba(255,120,0,.25);
}

#btnWhatsapp:active{

    transform:
        translateY(-1px)
        scale(.99);
}

/* RESPONSIVE */

@media (max-width:768px){

    #asociate{

        padding:100px 20px;
    }

    #asociate h2{

        font-size:3rem;
    }

    #asociate input{

        height:66px;
    }

    #btnWhatsapp{

        height:70px;
    }
}





.hero-new{
    position:relative;
    overflow:hidden;
    background:#0a4d8c;
}

.hero-pattern{
    position:absolute;

    top:-20%;
    left:-20%;
    width:140%;
    height:140%;

    background-image:
        radial-gradient(circle at 20% 30%, rgba(10,77,140,.95), transparent 35%),
        radial-gradient(circle at 75% 40%, rgba(10,77,140,.85), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(10,77,140,.90), transparent 40%),
        url("../img/libro.png");

    background-repeat:repeat;
    background-size:
        auto,
        auto,
        auto,
        60px;

    opacity:.10;

    transform:rotate(-18deg) scale(1.4);

    z-index:0;
}



.hero-content-new {
    flex: 4 !important;
}





.cobertura-flow{
  padding: 100px 20px;
  position: relative;
  color: #eaf2ff;
  background: radial-gradient(circle at top, #13243a 0%, #0b1522 55%, #070f18 100%);
  overflow: hidden;
}

/* ✨ fondo abstracto suave (no molesta, pero da vida) */
.cobertura-flow::before{
  content: "";
  position: absolute;
  inset: -200px;

  background:
    radial-gradient(circle at 20% 30%, rgba(61,220,151,0.12), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0,180,216,0.10), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(255,77,109,0.08), transparent 50%);

  filter: blur(40px);
  opacity: 0.9;
  z-index: 0;
}

/* contenido */
.cobertura-flow > *{
  position: relative;
  z-index: 1;
}

/* INTRO */
.cobertura-intro{
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 70px;
}

.cobertura-intro h2{
  font-size: 2.6rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffffff, #a8d8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cobertura-intro p{
  opacity: 0.75;
  font-size: 1.05rem;
}

/* HERO BLOCK */
.cobertura-hero-block{
  max-width: 1050px;
  margin: auto;
  padding: 45px;
  border-radius: 24px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.cobertura-hero-block h3{
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* GRID */
.cobertura-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1050px;
  margin: 35px auto;
}

/* CARDS */
.cobertura-mini{
  padding: 28px;
  border-radius: 20px;

  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* glow lateral suave */
.cobertura-mini::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(61,220,151,0.12), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.cobertura-mini:hover{
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(61,220,151,0.25);
}

.cobertura-mini:hover::before{
  opacity: 1;
}

/* TITULO CARD */
.cobertura-mini h3{
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #ffffff;
}

/* TEXTO */
.cobertura-mini p{
  opacity: 0.78;
  margin-bottom: 8px;
}

/* LISTA */
.cobertura-mini ul{
  list-style: none;
  margin-top: 10px;
}

.cobertura-mini ul li{
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  opacity: 0.88;
  transition: 0.2s;
}

.cobertura-mini ul li::before{
  content: "✔";
  position: absolute;
  left: 0;
  color: #3ddc97;
}

.cobertura-mini ul li:hover{
  transform: translateX(4px);
  opacity: 1;
}

/* DESTACADO */
.highlight{
  background: linear-gradient(135deg, rgba(255,77,109,0.12), rgba(255,255,255,0.03));
  border-color: rgba(255,77,109,0.25);
}

/* FOOTER BLOCK */
.cobertura-footer-block{
  max-width: 1050px;
  margin: 45px auto 0;
}

/* banda final más elegante */
.wide{
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  border-left: none;
  border-bottom: 4px solid #ffd166;

  padding: 30px;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cobertura-mini.wide ul{
  list-style: none;
  padding-left: 0;
}

.cobertura-mini.wide li{
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 800px){

  .cobertura-row{
    grid-template-columns: 1fr;
  }

  .cobertura-intro h2{
    font-size: 2.1rem;
  }

}











/* =========================
   PILARES
========================= */

.valores-section{
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(
        135deg,
        #f7d7ca 0%,
        #f2dfd4 50%,
        #eedfd8 100%
    );

    text-align:center;

    min-height:400px;
    padding-bottom:40px;
}

.valores-video-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:0;
}

.valores-overlay{
    position:absolute;
    inset:0;


    z-index:1;
}

.valores-container{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    max-width:1200px;

    margin:auto;
}

.valor-card{
    position:relative;

    background:rgba(255,255,255,.22);

    backdrop-filter:blur(14px);

    border-radius:28px;

    padding:50px 35px;
}

.valor-icon{
    width:90px;
    height:90px;

    margin:0 auto 28px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:34px;
}

/* =========================
   FIESTA 40
========================= */

.fiesta40-section{
    padding:80px 20px 40px;
    text-align:center;
    overflow:hidden;
}

.fiesta40-marquee{
    overflow:hidden;
    width:100%;
    position:relative;
}

.track{
    display:flex;
    gap:14px;

    width:max-content;

    animation:scroll 90s linear infinite;

    align-items:center;
}

.track img{
    height:230px;
    width:auto;

    border-radius:14px;

    object-fit:cover;

    flex-shrink:0;

    transition:.35s ease;

    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.track img:hover{
    transform:scale(1.08);
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* =========================
   EXPAND IMAGE
========================= */

.fiesta40-expanded{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:99999;
}

.fiesta40-expanded.active{
    opacity:1;
    visibility:visible;
}

#fiestaExpandedImg{
    width:min(1200px,88vw);

    max-height:88vh;

    object-fit:contain;

    border-radius:24px;
}

.fiesta-nav{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    font-size:70px;

    color:white;

    cursor:pointer;
}

.fiesta-prev{
    left:40px;
}

.fiesta-next{
    right:40px;
}

.fiesta-close{
    position:absolute;

    top:22px;
    right:42px;

    font-size:65px;

    color:white;

    cursor:pointer;
}

/* =========================
   APP BANNER
========================= */

.app-banner{
    width:min(1280px,94%);

    margin:60px auto;

    display:grid;

    grid-template-columns:320px 1fr 260px;

    gap:60px;

    padding:60px;

    border-radius:42px;

    position:relative;

    overflow:hidden;
}

.app-phone{
    display:flex;
    justify-content:center;
}

.app-phone video{
    width:100%;
    max-width:300px;

    border-radius:42px;
}

.app-content h2{
    font-size:clamp(42px,5vw,72px);

    line-height:1.02;

    margin-bottom:26px;
}

.app-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.app-qr img{
    width:220px;

    border-radius:28px;
}

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

.main-footer{
    background:#fff;

    width:100%;

    padding:80px 0 30px;

    margin-top:50px;
}

.footer-wrap{
    max-width:1200px;

    margin:0 auto;

    padding:0 5%;

    display:flex;

    justify-content:space-between;
}

.footer-logo-img{
    height:70px;
}

.footer-social-links{
    display:flex;
    gap:15px;
}

.footer-bottom{
    text-align:center;

    margin-top:40px;
}

/* =========================
   WHATSAPP
========================= */

.wsp-float{
    position:fixed;

    bottom:40px;
    right:10px;

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999999;
}




.footer-signature{

    margin-top:18px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:10px;

    text-decoration:none;

    opacity:0.75;

    transition:0.35s ease;
}

.footer-signature:hover{

    opacity:1;
    transform:translateY(-2px);
}

.footer-signature img{

    width:140px;
    max-width:80vw;

    height:auto;

    object-fit:contain;

    border-radius:8px;

    filter:
    drop-shadow(0 0 12px rgba(255,255,255,0.18))
    drop-shadow(0 0 30px rgba(255,255,255,0.08));
}

.footer-signature span{

    font-size:12px;

    color:#4b5563;

    letter-spacing:1px;

    text-transform:uppercase;

    font-weight:600;
}







#asociate {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #f5f8ff, #eef5ff);
}

.card {
    max-width: 420px;
    margin: auto;
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card input {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
}

#btnWhatsapp {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
    border: none;
    border-radius: 10px;
    background: #25D366;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}







.cobertura-hero-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
}

.cobertura-hero-text {
  flex: 1;
}

.cobertura-hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cobertura-hero-img img {
  max-width: 100%;
  width: 380px;
  border-radius: 20px;
  object-fit: cover;
}






.cobertura-mini {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cobertura-mini-text {
  flex: 1;
  min-width: 0;
}

.cobertura-mini-text ul {
  padding-left: 18px;
  margin-top: 10px;
}

.cobertura-mini-text li {
  line-height: 1.5;
}

.cobertura-mini-img {
  flex: 0 0 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cobertura-mini-img img {
  width: 100%;
  max-width: 120px;
  border-radius: 12px;
  object-fit: cover;
}






@media (max-width: 768px) {
  .cobertura-mini {
    flex-direction: column;
    text-align: center;
  }

  .cobertura-mini-img {
    margin-top: 10px;
  }

  .cobertura-mini-img img {
    max-width: 220px;
  }
}





.cobertura-mini.left {
  padding: 30px;
  border-radius: 20px;

  background: linear-gradient(135deg, #ffffff, #f7f9ff);

  border: 1px solid rgba(0,0,0,0.05);

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition: 0.3s ease;
}
.cobertura-mini.left h3,
.cobertura-mini.left p {
  margin: 0;
}
.cobertura-mini.left ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.cobertura-mini.left li {
  line-height: 1.5;
}
.cobertura-mini.left .cobertura-mini-img {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.cobertura-mini.left .cobertura-mini-img img {
  width: 100%;
  max-width: 220px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


.cobertura-mini.left:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}




/* ================================
   ALTA COMPLEJIDAD - BOX
================================ */

.cobertura-mini.left {
  padding: 30px;
  border-radius: 20px;

  /* respeta diseño general, no lo aplasta */
  background: inherit;

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition: all 0.3s ease;
}

/* Hover suave sin romper estilo general */
.cobertura-mini.left:hover {
  transform: translateY(-4px);
}

/* Título */
.cobertura-mini.left h3 {
  margin: 0;
}

/* Texto */
.cobertura-mini.left p {
  margin: 0;
  opacity: 0.85;
}

/* Lista ordenada */
.cobertura-mini.left ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.cobertura-mini.left li {
  line-height: 1.6;
}

/* Contenedor de imagen dentro del box */
.cobertura-mini.left .cobertura-mini-img {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen */
.cobertura-mini.left .cobertura-mini-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 14px;
  object-fit: cover;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}





/* ================================
   REINTEGROS - BOX
================================ */

.cobertura-mini.right.highlight {
  padding: 30px;
  border-radius: 20px;

  background: inherit;

  display: flex;
  flex-direction: column;
  gap: 12px;

  transition: all 0.3s ease;
}

/* Hover igual que el otro box */
.cobertura-mini.right.highlight:hover {
  transform: translateY(-4px);
}

/* Título */
.cobertura-mini.right.highlight h3 {
  margin: 0;
}

/* Texto */
.cobertura-mini.right.highlight p {
  margin: 0;
  opacity: 0.85;
}

/* Lista */
.cobertura-mini.right.highlight ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.cobertura-mini.right.highlight li {
  line-height: 1.6;
}


.cobertura-mini.left,
.cobertura-mini.right.highlight {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}



/* ================================
   LINEA ANIMADA - ALTA COMPLEJIDAD
================================ */

.cobertura-mini.left {
  position: relative;
  overflow: hidden;
}

/* barra lateral animada */
.cobertura-mini.left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 20px 0 0 20px;

  background: linear-gradient(
    180deg,
    #ff3b3b,
    #ff7a00,
    #ff3b3b
  );

  background-size: 200% 200%;
  animation: lineaAlta 4s ease infinite;
}

/* animación del color */
@keyframes lineaAlta {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




/* ================================
   REINTEGROS - BARRA ANIMADA (FADE + MOVIMIENTO)
================================ */

.cobertura-mini.right.highlight {
  position: relative;
  overflow: hidden;
}

/* barra derecha animada con aparición/desaparición */
.cobertura-mini.right.highlight::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 0 20px 20px 0;

  background: linear-gradient(
    180deg,
    #00c6ff,
    #00ff9d,
    #00c6ff
  );

  background-size: 200% 200%;
  animation: reintegrosFlow 4s ease-in-out infinite;
}

/* animación tipo “vida” (sube, baja, aparece/desaparece) */
@keyframes reintegrosFlow {
  0% {
    background-position: 0% 50%;
    opacity: 0.4;
  }
  25% {
    opacity: 1;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.6;
  }
  75% {
    opacity: 1;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.4;
  }
}



/* ================================
   ALTA COMPLEJIDAD - BARRA ANIMADA (IZQUIERDA)
================================ */

.cobertura-mini.left {
  position: relative;
  overflow: hidden;
}

/* barra izquierda animada */
.cobertura-mini.left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  border-radius: 20px 0 0 20px;

  background: linear-gradient(
    180deg,
    #ff3b3b,
    #ff7a00,
    #ff3b3b
  );

  background-size: 200% 200%;
  animation: altaFlow 4s ease-in-out infinite;
}

/* animación tipo “respiración + movimiento” */
@keyframes altaFlow {
  0% {
    background-position: 0% 50%;
    opacity: 0.4;
  }
  25% {
    opacity: 1;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.6;
  }
  75% {
    opacity: 1;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.4;
  }
}



/* ================================
   LIMPIEZA REINTEGROS (SIN BORDE NI GLOW EXTRA)
================================ */

.cobertura-mini.right.highlight {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}



/* ================================
   REINTEGROS - FORZADO (IMPORTANT)
================================ */

.cobertura-mini.right.highlight {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;

  padding: 30px !important;
  border-radius: 20px !important;

  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Texto limpio */
.cobertura-mini.right.highlight h3,
.cobertura-mini.right.highlight p,
.cobertura-mini.right.highlight ul {
  margin: 0 !important;
  padding: 0 !important;
}

/* Lista ordenada */
.cobertura-mini.right.highlight ul {
  padding-left: 18px !important;
  margin-top: 8px !important;
}

.cobertura-mini.right.highlight li {
  line-height: 1.5 !important;
  margin-bottom: 6px !important;
}

/* Imagen */
.cobertura-mini.right.highlight .cobertura-mini-img {
  margin-top: 15px !important;
  display: flex !important;
  justify-content: center !important;
}

.cobertura-mini.right.highlight .cobertura-mini-img img {
  width: 100% !important;
  max-width: 400px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12) !important;
}




/* ================================
   ALTA COMPLEJIDAD - FIX REAL
================================ */

.cobertura-mini.left {
  display: block !important;
  position: relative !important;
}

/* fuerza orden visual del texto */
.cobertura-mini.left h3 {
  display: block !important;
  margin: 0 0 8px 0 !important;
}

.cobertura-mini.left p {
  display: block !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.5 !important;
}

.cobertura-mini.left ul {
  display: block !important;
  margin: 0 !important;
  padding-left: 18px !important;
}

.cobertura-mini.left li {
  display: list-item !important;
  margin-bottom: 6px !important;
  line-height: 1.5 !important;
}






.beneficios-img {
    position: relative;
    width: 100%;
    height: 260px;
    margin-bottom: 28px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.beneficios-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.02)
    );
}

.beneficios-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cobertura-mini.wide:hover .beneficios-img img {
    transform: scale(1.04);
}

@media (max-width: 768px) {

    .beneficios-img {
        height: 210px;
        border-radius: 20px;
        margin-bottom: 22px;
    }

}


.cobertura-mini.wide {
    border-left: none !important;
    border-bottom: 4px solid #ffd54a;
}





/* ================================
   TARJETA AZUL - BENEFICIOS APP
================================ */

.beneficios-blue{
    position: relative;
    overflow: hidden;

    background:
    linear-gradient(
        135deg,
        rgba(0,140,255,0.14),
        rgba(0,70,170,0.10)
    ) !important;

    border-bottom: 4px solid #4db8ff !important;

    border-radius: 26px;

    padding: 28px;

    transition: .35s ease;
}

/* glow suave */
.beneficios-blue::before{
    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(77,184,255,.18),
        transparent 55%
    );

    opacity:.9;

    pointer-events:none;
}

/* hover elegante */
.beneficios-blue:hover{
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(0,120,255,.16);
}

/* titulo */
.beneficios-blue h3{
    color:#ffffff;
    font-size:1.35rem;
    margin:18px 0 14px;
}

/* lista */
.beneficios-blue ul{
    list-style:none;
    padding:0;
    margin:0;
}

/* items */
.beneficios-blue ul li{
    position:relative;

    padding-left:26px;
    margin-bottom:12px;

    color:rgba(255,255,255,.88);

    line-height:1.55;
}

/* check azul */
.beneficios-blue ul li::before{
    content:"✦";

    position:absolute;
    left:0;
    top:0;

    color:#66c7ff;

    font-size:14px;
}

/* imagen */
.beneficios-blue .beneficios-img{
    border-radius:22px;
    overflow:hidden;

    box-shadow:
        0 12px 30px rgba(0,0,0,.20);
}

/* imagen interna */
.beneficios-blue .beneficios-img img{
    width:100%;
    height:260px;

    object-fit:cover;

    display:block;

    transition: transform .55s ease;
}

/* zoom suave */
.beneficios-blue:hover .beneficios-img img{
    transform:scale(1.05);
}

/* responsive */
@media (max-width:768px){

    .beneficios-blue{
        padding:22px;
    }

    .beneficios-blue .beneficios-img img{
        height:210px;
    }

}



/* ================================
   ULTIMAS DOS CARDS - IMG ABAJO
================================ */

.cobertura-mini.wide{
    display:flex;
    flex-direction:column;
}

/* texto arriba */
.cobertura-mini.wide h3{
    order:1;
}

.cobertura-mini.wide ul{
    order:2;
}

/* imagen abajo */
.cobertura-mini.wide .beneficios-img{
    order:3;
    margin-top:22px;
}



/* ================================
   CARD 1 - ESTILO PREMIUM
================================ */

.cobertura-mini.wide{
    position: relative;
    overflow: hidden;

    display:flex;
    flex-direction:column;

    padding:32px;
    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.06),
        rgba(255,255,255,.03)
    );

    border-bottom:4px solid #ffd166;

    box-shadow:
        0 18px 45px rgba(0,0,0,.14);

    transition:.35s ease;
}

/* glow suave */
.cobertura-mini.wide::before{
    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,209,102,.14),
        transparent 58%
    );

    pointer-events:none;
}

/* hover */
.cobertura-mini.wide:hover{
    transform:translateY(-6px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.18);
}

/* titulo */
.cobertura-mini.wide h3{
    order:1;

    font-size:1.45rem;
    color:#fff;

    margin-bottom:14px;
}

/* lista */
.cobertura-mini.wide ul{
    order:2;

    list-style:none;

    padding:0;
    margin:0;
}

/* items */
.cobertura-mini.wide ul li{
    position:relative;

    padding-left:28px;
    margin-bottom:12px;

    color:rgba(255,255,255,.88);

    line-height:1.55;
}

/* icono */
.cobertura-mini.wide ul li::before{
    content:"✦";

    position:absolute;
    left:0;
    top:0;

    color:#ffd166;
}

/* imagen abajo */
.cobertura-mini.wide .beneficios-img{
    order:3;

    margin-top:24px;

    border-radius:22px;
    overflow:hidden;

    box-shadow:
        0 12px 30px rgba(0,0,0,.20);
}

/* imagen */
.cobertura-mini.wide .beneficios-img img{
    width:100%;
    height:300px;

    object-fit:cover;

    display:block;

    transition:transform .55s ease;
}

/* zoom */
.cobertura-mini.wide:hover .beneficios-img img{
    transform:scale(1.04);
}

/* responsive */
@media (max-width:768px){

    .cobertura-mini.wide{
        padding:24px;
    }

    .cobertura-mini.wide .beneficios-img img{
        height:220px;
    }

}




/* TEXTO A LA IZQUIERDA EN LAS 2 ÚLTIMAS CARDS */

.cobertura-mini.wide{
    text-align:left;
    align-items:flex-start;
}

.cobertura-mini.wide h3{
    width:100%;
    text-align:left;
}

.cobertura-mini.wide ul{
    width:100%;
    text-align:left;
}

.cobertura-mini.wide ul li{
    text-align:left;
}



*,
*::before,
*::after {
    cursor: url("../img/_manofinalmano.png") 16 0, auto !important;
}



.hero-new{
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}







/* ========================================== TURISMO ========================================== */ .turismo-hero{ padding: 110px 8%; } .turismo-container{ max-width: 1300px; margin: auto; display: flex; align-items: center; justify-content: center; gap: 70px; background: rgba(255,255,255,0.78); backdrop-filter: blur(14px); border-radius: 35px; padding: 60px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); } /* TEXTO */ .turismo-text{ flex: 1; } .turismo-tag{ display: inline-block; background: #0a4d8c; color: white; padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; margin-bottom: 22px; } .turismo-text h1{ font-size: 58px; line-height: 1.05; color: #072b4a; margin-bottom: 20px; } .turismo-text p{ font-size: 18px; line-height: 1.7; color: #555; margin-bottom: 35px; } /* BENEFICIOS */ .turismo-beneficios{ display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-bottom: 40px; } .beneficio-item{ background: white; padding: 18px; border-radius: 18px; font-weight: 600; color: #0a4d8c; box-shadow: 0 8px 25px rgba(0,0,0,0.06); transition: .25s; } .beneficio-item:hover{ transform: translateY(-4px); } /* IMAGEN */ .turismo-img{ flex: 1; display: flex; justify-content: center; } .turismo-img img{ width: 100%; max-width: 520px; border-radius: 30px; box-shadow: 0 25px 60px rgba(0,0,0,0.15); } /* DESTINOS */ .destinos-section{ padding: 80px 8%; } .destinos-title{ text-align: center; margin-bottom: 50px; } .destinos-title h2{ font-size: 42px; color: #072b4a; margin-bottom: 10px; } .destinos-title p{ color: #666; font-size: 18px; } .destinos-grid{ max-width: 1300px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; } .destino-card{ background: rgba(255,255,255,0.82); border-radius: 28px; overflow: hidden; backdrop-filter: blur(12px); box-shadow: 0 20px 45px rgba(0,0,0,0.08); transition: .3s; } .destino-card:hover{ transform: translateY(-8px); } .destino-card img{ width: 100%; height: 260px; object-fit: cover; } .destino-card h3{ font-size: 28px; color: #072b4a; padding: 25px 25px 10px; } .destino-card p{ padding: 0 25px 30px; color: #666; line-height: 1.6; } /* RESPONSIVE */ @media(max-width:980px){ .turismo-container{ flex-direction: column; text-align: center; padding: 40px 25px; } .turismo-text h1{ font-size: 42px; } .turismo-beneficios{ grid-template-columns: 1fr; } .destinos-grid{ grid-template-columns: 1fr; } }



.img-frase-hero {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;

    will-change: transform;

    /* sombra fija (NO animada = menos lag) */
    filter: drop-shadow(0 15px 30px rgba(255,255,255,0.12))
            drop-shadow(0 0 18px rgba(255,255,255,0.06));

    animation: floatSmooth 6s ease-in-out infinite;
}

/* 🔥 solo transform = 100% fluido */
@keyframes floatSmooth {
    0% {
        transform: translate3d(0, 0px, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -10px, 0) scale(1.015);
    }

    100% {
        transform: translate3d(0, 0px, 0) scale(1);
    }
}



.avion-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* avión */
.avion {
    width: 300px;
    display: block;
}

/* 🔥 luz */
.avion-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.0) 40%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0.0) 60%,
        transparent 100%
    );

    transform: skewX(-20deg);
    animation: shineMove 2.8s infinite;
    pointer-events: none;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}




.hero-title-img {
    position: relative;
    display: inline-block;
}

/* imagen principal */
.img-frase-hero {
    display: block;
    max-width: 100%;
    height: auto;

    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.30));

    animation: travelFloat 6s ease-in-out infinite;
}

/* 🌞 luz de sol (natural, no “efecto”) */
.hero-title-img::before {
    content: "";
    position: absolute;
    inset: -50px;
    z-index: -1;

    background: radial-gradient(
        circle at 60% 40%,
        rgba(255, 170, 60, 0.35),
        rgba(255, 120, 0, 0.15),
        transparent 70%
    );

    filter: blur(45px);
    opacity: 0.8;

    animation: sunDrift 8s ease-in-out infinite;
}

/* 🌬️ aire suave alrededor */
.hero-title-img::after {
    content: "";
    position: absolute;
    inset: -30px;
    z-index: -1;

    background: radial-gradient(
        circle at 40% 60%,
        rgba(255, 200, 140, 0.12),
        transparent 65%
    );

    filter: blur(30px);

    animation: airFloat 7s ease-in-out infinite;
}

/* ✈️ flotación tipo “viaje” */
@keyframes travelFloat {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 🌞 movimiento del sol */
@keyframes sunDrift {
    0% {
        transform: translateX(-10px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(10px) scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: translateX(-10px) scale(1);
        opacity: 0.6;
    }
}

/* 🌬️ aire ambiente */
@keyframes airFloat {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}



.hero-title-img {
    position: relative;
    display: inline-block;
    isolation: isolate;
}

/* imagen principal */
.img-frase-hero {
    display: block;
    max-width: 100%;
    height: auto;

    transform: translateZ(0);
    will-change: transform;

    filter: drop-shadow(0 35px 70px rgba(0,0,0,0.32));

    animation: heroFloat 8s cubic-bezier(.4,0,.2,1) infinite;
}

/* 🌞 luz principal (más suave y cinematográfica) */
.hero-title-img::before {
    content: "";
    position: absolute;
    inset: -80px;
    z-index: -1;

    background: radial-gradient(
        circle at 65% 45%,
        rgba(255, 175, 95, 0.38),
        rgba(255, 120, 0, 0.14),
        transparent 75%
    );

    filter: blur(70px);
    opacity: 0.9;

    animation: sunFlow 12s ease-in-out infinite;
}

/* 🌬️ atmósfera (muy sutil, casi imperceptible) */
.hero-title-img::after {
    content: "";
    position: absolute;
    inset: -40px;
    z-index: -1;

    background: radial-gradient(
        circle at 40% 60%,
        rgba(255, 220, 180, 0.10),
        transparent 70%
    );

    filter: blur(50px);
    opacity: 0.6;

    animation: airDrift 10s ease-in-out infinite;
}

/* ✈️ flotación tipo cámara (muy suave) */
@keyframes heroFloat {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* 🌞 luz tipo sol real moviéndose lento */
@keyframes sunFlow {
    0% {
        transform: translateX(-15px) scale(1);
        opacity: 0.65;
    }
    50% {
        transform: translateX(15px) scale(1.05);
        opacity: 0.95;
    }
    100% {
        transform: translateX(-15px) scale(1);
        opacity: 0.65;
    }
}

/* 🌬️ aire ambiental muy fino */
@keyframes airDrift {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}



.hero-title-img {
    position: relative;
    display: inline-block;
    isolation: isolate;
    text-align: center;
}

/* imagen */
.img-frase-hero {
    display: block;
    max-width: 100%;
    height: auto;

    filter: drop-shadow(0 35px 70px rgba(0,0,0,0.32));

}

/* 🌞 luz centrada detrás del título */
.hero-title-img::before {
    content: "";
    position: absolute;
    inset: -40px;
    z-index: -1;

    background: radial-gradient(
        circle at 50% 50%, /* 👈 CENTRO REAL */
        rgba(255, 175, 95, 0.45),
        rgba(255, 120, 0, 0.18),
        transparent 70%
    );

    filter: blur(60px);
    opacity: 0.9;


}

/* 🌬️ aire centrado también */
.hero-title-img::after {
    content: "";
    position: absolute;
    inset: -30px;
    z-index: -1;

    background: radial-gradient(
        circle at 50% 50%, /* 👈 CENTRADO */
        rgba(255, 220, 180, 0.12),
        transparent 65%
    );

    filter: blur(45px);
    opacity: 0.6;

    animation: airSoft 8s ease-in-out infinite;
}

/* ✈️ flotación limpia */
@keyframes heroFloat {
    0%,100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* 🌞 pulso de luz centrado */
@keyframes sunPulse {
    0%,100% {
        transform: scale(1);
        opacity: 0.65;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.95;
    }
}

/* 🌬️ aire suave */
@keyframes airSoft {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}



.heart-orange{
    color: #ff7a00;
    font-size: 1.1em;
    display: inline-block;
    margin-left: 6px;
    animation: travelHeart 3s linear infinite;
}

@keyframes travelHeart{
    0%{
        transform: translateX(0);
        opacity: 0;
    }

    15%{
        opacity: 1;
    }

    70%{
        transform: translateX(30px);
        opacity: 1;
    }

    100%{
        transform: translateX(50px);
        opacity: 0;
    }
}



.hero{
    background: #FFD1A1;
}



.hero h1{
    background: linear-gradient(90deg,#ff8a00,#ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}




.hero{
    padding: 300px 0;
}


.hero-text h1{
    line-height: 1.15;
}



.hero-new::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(255,255,255,.15),
            transparent 40%
        );
    pointer-events:none;
}




/* ==========================================
   HERO TURISMO PREMIUM
========================================== */

.hero{
    position: relative;
    overflow: hidden;

    padding: 120px 20px;

    background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.08), transparent 25%),
    radial-gradient(circle at 15% 85%, rgba(0,255,150,.08), transparent 25%),
    linear-gradient(
        135deg,
        #071a2f 0%,
        #0a4d8c 55%,
        #1b6fd8 100%
    );

    color: #fff;
}

/* luz suave superior */
.hero::before{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-350px;
    right:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,.12),
        transparent 70%
    );

    filter:blur(80px);
}

/* luz inferior */
.hero::after{
    content:"";

    position:absolute;

    width:500px;
    height:500px;

    bottom:-250px;
    left:-150px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,190,60,.12),
        transparent 70%
    );

    filter:blur(80px);
}

.hero-container{
    max-width:1300px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;

    position:relative;
    z-index:2;
}

/* ==========================
   TEXTO
========================== */

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:clamp(3.8rem,7vw,5.8rem);

    line-height:.95;

    font-weight:900;

    letter-spacing:-3px;

    margin-bottom:28px;

    max-width:700px;
}

.hero-text p{
    font-size:1.25rem;

    line-height:1.8;

    max-width:560px;

    opacity:.9;
}

/* detalle elegante */

.hero-text p::before{
    content:"";

    display:block;

    width:80px;
    height:4px;

    margin-bottom:22px;

    border-radius:50px;

    background:#ffd166;
}

/* ==========================
   ILUSTRACION
========================== */

.hero-illu{
    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

/* halo detrás de la valija */

.hero-illu::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,.18),
        transparent 70%
    );

    filter:blur(40px);

    z-index:-1;
}

.hero-illu img{
    width:100%;
    max-width:520px;

    filter:
        drop-shadow(
            0 35px 60px rgba(0,0,0,.28)
        );

 
}

/* ==========================
   ANIMACION
========================== */

@keyframes heroFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:950px){

    .hero{
        padding:90px 20px;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero-text h1{
        font-size:3rem;
        max-width:none;
    }

    .hero-text p{
        margin:auto;
    }

    .hero-text p::before{
        margin:0 auto 20px;
    }

    .hero-illu img{
        max-width:340px;
    }
}



.travel-showcase{
    max-width:1400px;
    margin:120px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:80px;
    align-items:center;
}

.travel-image{
    overflow:hidden;
    border-radius:32px;
}

.travel-image img{
    width:100%;
    height:650px;
    object-fit:cover;

    transition:.8s;
}

.travel-image:hover img{
    transform:scale(1.05);
}

.travel-label{
    font-size:.8rem;
    letter-spacing:3px;
    font-weight:700;
    color:#1776d2;
}

.travel-content h2{
    font-size:clamp(3rem,5vw,5rem);
    line-height:.95;
    margin:20px 0 25px;
    color:#0b2341;
}

.travel-content p{
    font-size:1.15rem;
    line-height:1.9;
    color:#6c7a89;
    max-width:500px;
}

.travel-link{
    display:inline-block;
    margin-top:35px;

    text-decoration:none;

    color:#1776d2;

    font-weight:700;
}






#asociate{
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Título */
#asociate h2{
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Texto */
#asociate p{
    max-width: 600px;
    margin: 0 auto 35px auto;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* Form container */
.asociate-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 420px;
    margin: 0 auto;
}

/* Inputs */
.asociate-form input{
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
    outline: none;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}

.asociate-form input::placeholder{
    color: rgba(255,255,255,0.6);
}

.asociate-form input:focus{
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.2);
}

/* Botón */
#btnWhatsapp{
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 1rem;
}

#btnWhatsapp:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34,197,94,0.3);
}

/* Responsive */
@media (max-width: 500px){
    #asociate h2{
        font-size: 2rem;
    }
}



#asociate{
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* 🔥 borde pro */
    border-top: 1px solid rgba(56,189,248,0.25);
    border-bottom: 1px solid rgba(34,197,94,0.25);
}

/* glow suave alrededor */
#asociate::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(56,189,248,0.15), transparent 60%);
    pointer-events: none;
}



.asociate-form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 420px;
    margin: 0 auto;

    padding: 28px;
    border-radius: 22px;

    /* ❌ sin borde duro */
    border: none;

    /* 🌫️ fondo glass más elegante */
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);

    /* 💡 profundidad suave */
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.35),
        0 0 0 1px rgba(255,255,255,0.06);
    
    position: relative;
    overflow: hidden;
}




#asociate{
    padding: 90px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* 🌌 fondo más profundo */
    background: linear-gradient(135deg, #0b1220, #1e293b);

    /* ✨ bordes suaves externos (clave) */
    border-radius: 40px;
    margin: 60px 20px;

    /* 💡 sombra envolvente */
    box-shadow:
        0 30px 90px rgba(0,0,0,0.45),
        0 0 120px rgba(56,189,248,0.08);
}




#asociate::before{
    content: "";
    position: absolute;
    inset: -80px;
    background: radial-gradient(
        circle at center,
        rgba(56,189,248,0.12),
        transparent 65%
    );
    filter: blur(30px);
    z-index: 0;
}



#asociate > *{
    position: relative;
    z-index: 1;
}




#asociate{
    padding: 90px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #0b1220, #1e293b);

    /* 🧊 centrado real como bloque */
    max-width: 900px;
    margin: 80px auto;

    border-radius: 40px;

    box-shadow:
        0 30px 90px rgba(0,0,0,0.45),
        0 0 120px rgba(56,189,248,0.08);
}



.hero-text h1{
    line-height: 1.05;
    letter-spacing: -0.5px;
}



.travel-showcase{
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 30px;

    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 0;

    align-items: center;

    position: relative;
}

/* fondo decorativo */
.travel-showcase::before{
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background:
    radial-gradient(circle,
    rgba(255,140,0,.12) 0%,
    rgba(255,140,0,0) 70%);

    right: -150px;
    top: -100px;

    pointer-events: none;
}

/* FOTO */

.travel-image{
    position: relative;
    z-index: 1;
}

.travel-image img{
    width: 100%;
    height: 650px;

    object-fit: cover;

    border-radius: 40px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.18);

    transition: .6s ease;
}

.travel-image:hover img{
    transform: scale(1.02);
}

/* TARJETA */

.travel-content{

    margin-left: -90px;

    background: rgba(255,255,255,.92);

    backdrop-filter: blur(20px);

    padding: 60px;

    border-radius: 35px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

    position: relative;
    z-index: 2;
}

.travel-label{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;

    background: #fff4e8;

    color: #ff8c00;

    border-radius: 50px;

    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 25px;
}

.travel-label::before{
    content: "✦";
}

.travel-content h2{
    font-size: clamp(2.8rem,4vw,4.8rem);

    line-height: .95;

    color: #13293d;

    margin-bottom: 25px;

    font-weight: 800;
}

.travel-content p{
    font-size: 1.15rem;

    line-height: 1.9;

    color: #5d6b79;

    margin-bottom: 35px;
}

/* frase flotante */

.travel-content::after{
    content: "✈";

    position: absolute;

    right: 30px;
    top: 20px;

    font-size: 100px;

    color: rgba(255,140,0,.08);
}

/* responsive */

@media(max-width:950px){

    .travel-showcase{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .travel-content{
        margin-left: 0;
        padding: 40px 30px;
    }

    .travel-image img{
        height: 450px;
    }
}



/* Variables para colores y sombras */
:root {
    --bg-section: #f8fafc;
    --card-bg: #ffffff;
    --text-color: #334155;
    --accent-color: #ff8c00;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 25px -5px rgba(255, 140, 0, 0.15), 0 10px 10px -5px rgba(255, 140, 0, 0.04);
}

/* Contenedor principal (opcional, para darle respiro y fondo) */
.services-container {
    padding: 3rem 1.5rem;
    background-color: var(--bg-section);
    border-radius: 20px; /* Si quieres que toda la sección tenga bordes redondeados */
}

/* La grilla principal */
.travel-services {
    display: grid;
    /* Esto hace la magia responsive: tarjetas de mínimo 200px que se acomodan solas */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilo de cada servicio (Tarjetas) */
.travel-services span {
    display: flex;
    align-items: center;
    gap: 12px;
    
    padding: 1.2rem 1.5rem;
    background-color: var(--card-bg);
    border-radius: 16px;
    border: 2px solid transparent;
    
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    
    box-shadow: var(--shadow-soft);
    
    /* Animaciones súper suaves */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    user-select: none;
}

/* El efecto visual cuando le pasas el mouse (Hover) */
.travel-services span:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
    color: var(--accent-color);
}




:root {
    --bg-epic: #0f172a;           
    --card-surface: rgba(255, 255, 255, 0.03); 
    --card-border: rgba(255, 255, 255, 0.08);  
    --neon-orange: #ff8c00;
    --neon-pink: #e52e71;
    --text-muted: #94a3b8;
    --text-glow: #ffffff;
    --anim-speed: 20s; /* 4 imágenes x 5 segundos cada una */
}

/* Contenedor General */
.services-container {
    padding: 3rem 1.5rem;
    background-color: var(--bg-epic);
    border-radius: 24px;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

/* =========================================
   Banner y Slider Animado
   ========================================= */
.services-banner {
    position: relative;
    width: 100%;
    min-height: 350px; 
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden; 
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.banner-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0; 
    transform: scale(1.1); 
    animation: crossfade var(--anim-speed) linear infinite;
}

/* Sincronización del fundido de tus 4 imágenes */
.banner-slider .slide:nth-child(1) { animation-delay: 0s; }
.banner-slider .slide:nth-child(2) { animation-delay: 5s; }
.banner-slider .slide:nth-child(3) { animation-delay: 10s; }
.banner-slider .slide:nth-child(4) { animation-delay: 15s; }

.banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 700px;
}

.services-banner h2 {
    margin: 0 0 1rem 0;
    font-size: clamp(2.2rem, 6vw, 3.5rem); 
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(to right, var(--neon-orange), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.services-banner p {
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-glow); 
    line-height: 1.6;
    opacity: 0.9;
}

/* =========================================
   Grilla de Tarjetas (Efecto Cristal)
   ========================================= */
.travel-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.travel-services span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1.25rem 1.5rem;
    background: var(--card-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.travel-services span::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent, rgba(229, 46, 113, 0.15), rgba(255, 140, 0, 0.15), transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Hover en Tarjetas */
.travel-services span:hover {
    transform: translateY(-8px) scale(1.02);
    color: var(--text-glow);
    border-color: rgba(255, 140, 0, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 
        0 20px 30px -10px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(255, 140, 0, 0.3);
}

.travel-services span:hover::before {
    opacity: 1;
    animation: shimmer 3s linear infinite;
}

/* =========================================
   Animaciones (Keyframes)
   ========================================= */
@keyframes crossfade {
    0% { opacity: 0; transform: scale(1.1); }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; transform: scale(1.0); }
    100% { opacity: 0; transform: scale(1.0); }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


.services-banner{
    position: relative;
    height: 550px;
    overflow: hidden;
    border-radius: 25px;
}

.banner-slider{
    width: 100%;
    height: 100%;
}

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






.hosteria-title{
    display: inline-block;

    padding: 10px 22px;
    margin-bottom: 18px;

    font-size: .95rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #7DD3FC !important;

    border: 1px solid rgba(255, 209, 102, .5);
    border-radius: 50px;

    background: rgba(0,0,0,.25);
    backdrop-filter: blur(8px);

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
}



.exclusive-word{
    color: #F8E7B5;
    font-weight: 700;
}








/* 🌿 SECCIÓN */
.flyers-turisticos{
    padding: 100px 20px;
    background: #f6fbff;
    text-align: center;
}

/* HEADER */
.flyers-header{
    max-width: 750px;
    margin: 0 auto 50px;
}

.flyers-header h2{
    font-size: 2rem;
    color: #1f2a37;
    margin-bottom: 10px;
}

.flyers-header p{
    color: #5b6777;
    line-height: 1.6;
}

/* WRAP */
.flyers-wrap{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD (tu estilo, solo refinado) */
.flyer-card{
    width: 420px;
    height: 300px;

    border-radius: 18px;
    overflow: hidden;

    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* IMAGEN (clave: cover para que no “se vea chica”) */
.flyer-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HOVER */
.flyer-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* 📱 MOBILE */
@media (max-width: 600px){
    .flyer-card{
        width: 100%;
        height: 260px;
    }
}



/* 🔍 ZOOM AL PASAR EL MOUSE */
.flyer-card{
    overflow: hidden; /* importante para el efecto */
}

.flyer-card img{
    transition: transform 0.4s ease;
}

/* agranda la imagen */
.flyer-card:hover img{
    transform: scale(1.12);
}



.flyer-card{
    width: 420px;
    height: auto; /* ❗ antes era 300px fijo */
    border-radius: 18px;
    overflow: visible; /* ❗ deja salir la imagen */
    background: transparent;
    box-shadow: none;
}

.flyer-card img{
    width: 100%;
    height: auto; /* ❗ clave para que no se recorte */
    object-fit: contain;
    display: block;
}



/* HEADER */
.flyers-header{
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 20px;

    text-align: center;
    position: relative;
}

/* TÍTULO */
.flyers-header h2{
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 14px;

    position: relative;
}

/* subrayado moderno más visible */
.flyers-header h2::after{
    content: "";
    display: block;
    width: 110px;
    height: 4px;
    margin: 14px auto 0;

    background: linear-gradient(90deg, #38bdf8, #60a5fa, #7dd3fc);
    border-radius: 999px;
}

/* SUBTÍTULO con más presencia */
.flyers-header p{
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;

    max-width: 680px;
    margin: 0 auto;

    font-weight: 500;
}


.hero-title-img{
    position:relative;
}




.hero-new,
.hero-new *,
.hero-new::before,
.hero-new::after{
    animation: none !important;
}



.hero-school {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 20px;

  background: #f5f7fb;
}

.hero-school-content {
  max-width: 850px;
  text-align: center;
  color: #0f172a;
}

/* etiqueta simple */
.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 12px;
}

/* título serio */
.hero-school-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* texto limpio */
.hero-text {
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* botones */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

/* primario simple */
.btn.primary {
  background: #1d4ed8;
  color: #fff;
}

.btn.primary:hover {
  background: #1e40af;
}

/* secundario sobrio */
.btn.secondary {
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background: #fff;
}

.btn.secondary:hover {
  background: #f1f5f9;
}




.hero-school {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* GRID base */
.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

/* imágenes */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease;
  filter: contrast(1.05) saturate(1.1);
}

/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.65);
}

/* contenido */
.hero-school-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 850px;
  padding: 30px;
}



.hero-school {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: all 1.6s ease; /* 👈 suave medio */
  filter: contrast(1.05) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.65);
}

.hero-school-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 850px;
  padding: 30px;
}



.hero-school-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 850px;
  padding: 40px 30px;

  /* 🔥 clave para lectura */
  background: rgba(10, 15, 30, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 18px;

  /* mejora contraste */
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* refuerzo del overlay (IMPORTANTE) */
.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
}

/* opcional: mejora jerarquía del texto */
.hero-school-content h1 {
  text-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.hero-school-content h2,
.hero-school-content h3,
.hero-text {
  text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}



.hero-school-content {
  position: relative;
  z-index: 2;
  text-align: center;

  max-width: 900px;
  padding: 60px 40px;

  color: #fff;

  /* 🔥 look moderno real */
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* 🔥 fondo más moderno (menos “negro feo”) */
.hero-overlay {
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.75)
  );
}

/* 🧠 TIPOGRAFÍA MÁS MODERNA */
.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.hero-school-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.hero-school-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}

.hero-school-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
}

/* 🔥 BOTONES MÁS MODERNOS */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* primario moderno (no plano) */
.btn.primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 12px 30px rgba(59,130,246,0.35);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(59,130,246,0.45);
}

/* secundario moderno */
.btn.secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}



.hero-new{
    min-height: 100vh;
}





.niveles-educativos {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  text-align: center;
}

.niveles-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.niveles-header h2 {
  font-size: 2.6rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.niveles-header p {
  font-size: 1.1rem;
  color: #475569;
}

.niveles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.nivel-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nivel-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.nivel-card p {
  color: #475569;
  line-height: 1.5;
}

.nivel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* colores por nivel */
.inicial h3 { color: #f59e0b; }
.primaria h3 { color: #3b82f6; }
.talleres h3 { color: #10b981; }




.niveles-educativos {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f6fbff, #ffffff);
  text-align: center;
}

.niveles-header {
  max-width: 850px;
  margin: 0 auto 60px;
}

.niveles-header h2 {
  font-size: 2.6rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.niveles-header p {
  font-size: 1.1rem;
  color: #475569;
}

.niveles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.nivel-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.nivel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.nivel-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* colores suaves institucionales */
.inicial h3 { color: #f59e0b; }
.primaria h3 { color: #3b82f6; }
.talleres h3 { color: #10b981; }

.nivel-card p {
  color: #475569;
  line-height: 1.6;
}




/* ==========================================================================
   VARIABLES DE DISEÑO (DESIGN TOKENS)
   ========================================================================== */
:root {
  /* Paleta de colores base */
  --color-text-primary: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.88);
  --color-dark-slate: #0f172a;
  
  /* Gradientes de marca corporativos */
  --gradient-horario: linear-gradient(135deg, #4f46e5, #7c3aed);
  --gradient-telefono: linear-gradient(135deg, #2563eb, #06b6d4);
  --gradient-direccion: linear-gradient(135deg, #0ea5e9, #10b981);

  /* Estructura y Micro-interacciones */
  --radius-card: 20px;
  --radius-button: 12px;
  --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   CONTENEDOR GLOBAL (LAYOUT)
   ========================================================================== */
.info-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================================================
   TARJETA COMPONENTE (CARD)
   ========================================================================== */
.info-card {
  position: relative;
  color: var(--color-text-primary);
  padding: 56px 32px;
  text-align: center;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 340px;
  box-sizing: border-box;
  
  border-radius: var(--radius-card);
  background: var(--card-bg, #1e293b);
  overflow: hidden;
  
  /* Transición de alto rendimiento (sólo propiedades compuestas por GPU) */
  transition: transform 0.3s var(--transition-smooth), 
              box-shadow 0.3s var(--transition-smooth);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 
              0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Capa de control de contraste para accesibilidad tipográfica */
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Aislamiento de capa para el contenido */
.info-card > * {
  position: relative;
  z-index: 2;
}

/* Variantes de Color Mapeadas */
.horario   { --card-bg: var(--gradient-horario); }
.telefono  { --card-bg: var(--gradient-telefono); }
.direccion { --card-bg: var(--gradient-direccion); }

/* Estados de Interacción (Hover y Focus) */
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   ELEMENTOS INTERNOS (CONTENIDO)
   ========================================================================== */
.info-card .icon {
  font-size: 36px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  margin-bottom: 4px;
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.info-card p {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 260px;
  word-break: break-word; /* Protección contra desbordamientos de texto largo */
}

.info-card .big {
  font-size: 2.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-block: 4px;
}

/* ==========================================================================
   BOTONES (CALL TO ACTION)
   ========================================================================== */
.info-extra {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 210px;
  padding: 11px 20px;
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-button);
  box-sizing: border-box;
  transition: background-color 0.2s var(--transition-smooth), 
              border-color 0.2s var(--transition-smooth);
}

/* Variante Outline */
.btn-cta:not(.solid) {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-text-primary);
}

.btn-cta:not(.solid):hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Variante Sólida (Énfasis Máximo) */
.btn-cta.solid {
  background: #ffffff;
  color: var(--color-dark-slate);
  border: 1px solid #ffffff;
}

.btn-cta.solid:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   DISEÑO ADAPTATIVO (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 640px) {
  .info-contacto {
    gap: 16px;
  }
  
  .info-card {
    min-height: auto;
    padding: 40px 24px;
  }
  
  .info-card .big {
    font-size: 1.875rem;
  }
}

/* Accesibilidad: Respeta la configuración del sistema si el usuario prefiere evitar animaciones */
@media (prefers-reduced-motion: reduce) {
  .info-card {
    transition: none;
  }
  .info-card:hover {
    transform: none;
  }
}





.nivel-img{
    margin-top:22px;
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:18px;
}

.nivel-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.nivel-card:hover .nivel-img img{
    transform:scale(1.06);
}



.niveles-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    column-gap:50px;
    row-gap:70px; /* separación vertical */

    margin-top:80px;
}




.inicial{
    background:linear-gradient(135deg,#FFF8E1,#FFE082);
}

.primaria{
    background:linear-gradient(135deg,#E3F2FD,#90CAF9);
}

.talleres{
    background:linear-gradient(135deg,#F3E5F5,#CE93D8);
}



.nivel-card{
    border:1px solid rgba(255,255,255,.6);
    backdrop-filter:blur(10px);
}







.hero-pattern{
    position:absolute;

    top:-20%;
    left:-20%;
    width:140%;
    height:140%;

    background-image:
        radial-gradient(circle at 20% 30%, rgba(10,77,140,.95), transparent 35%),
        radial-gradient(circle at 75% 40%, rgba(10,77,140,.85), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(10,77,140,.90), transparent 40%),
        url("../img/libro.png");

    background-repeat:repeat;
    background-size:
        auto,
        auto,
        auto,
        60px;

    opacity:.10;

    transform: scaleX(-1) rotate(-18deg) scale(1.4);

    z-index:0;
}




@media (max-width: 768px){
  .hero-description{
    display: block;
    margin-top: 75px;
  }
}





@media (max-width: 768px){

    .hero-school{
        min-height:auto;
        height:auto;
        display:flex;
        flex-direction:column;
    }

    .hero-bg{
        position:relative !important;
        display:flex !important;
        flex-direction:column;
        width:100%;
        height:auto !important;
        overflow:visible;
        order:1;
    }

    .hero-bg img{
        position:relative !important;
        width:100%;
        height:auto !important;
        object-fit:cover;
        opacity:1 !important;
        transform:none !important;
        display:block;
    }

    .hero-overlay{
        display:none;
    }

    .hero-school-content{
        position:relative;
        order:2;
        width:100%;
        padding:30px 20px;
        text-align:center;
    }

}





.hero-overlay{
    background: rgba(0,0,0,0.12);
}





@media (max-width: 768px){

    .nivel-img{
        height: auto;
        overflow: visible;
    }

    .nivel-img img{
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

}