/* ═══════════════════════════════════════════
    VARIABLES INSTITUCIONALES (COTIZA Y VIAJA)
    ═══════════════════════════════════════════ */
:root {
    --primary-red: #e63a48;
    --primary-blue: #1f3d86;
    --accent-orange: #f28a48;
    --text-dark: #222222;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ═══════════════════════════════════════════
    RESET GENERAL Y BASE
    ═══════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
}

body {
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Evita que el header fijo tape el contenido */
}

h1, h2, h3, h4, .nav__link, .menu-main-link, .btn, .stat__num, .section-tag {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}



/* ═══════════════════════════════════════════
    HEADER FIXED PREMIUM
    ═══════════════════════════════════════════ */
.header {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo__img {
    height: 50px;
    width: auto;
    display: block;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

/*══════════════════════════════════════════════
    COMPATIBILIDAD HERO ANTERIOR
══════════════════════════════════════════════*/

.hero > .hero__content.container{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    justify-content:center;

    max-width:1200px;

    width:100%;

    margin:0 auto;

    text-align:left;

}

/* ==========================================
   AJUSTE DE CENTRADO PERFECTO EN MÓVILES
   ========================================== */
@media screen and (max-width: 768px) {
    /* 1. Reduce el colchón lateral para ganar espacio y centrar */
    .container {
        padding: 0 16px !important; 
    }

    /* 2. Asegura que la barra de navegación use todo el ancho sin desfasarse */
    .nav {
        width: 100% !important;
        padding: 0 4px !important; /* Equilibra el peso del logo y la hamburguesa */
    }
}

/* CORRECCIÓN: Forzamos a que las letras del menú sean del azul oficial y no lila */
.menu-main-link, .nav__link {
    color: var(--primary-blue) !important;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s;
}

.menu-main-link:hover, .nav__link:hover {
    color: var(--primary-red) !important;
}

/* Botón WhatsApp del menú superior */
.nav__whatsapp-button {
    color: var(--white) !important;
    background-color: #128c7e;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 10px rgba(18,140,126,0.25);
}

.nav__whatsapp-button:hover {
    transform: translateY(-2px);
    background-color: #0e6f65;
}

/* Ocultar hamburguesa en pantallas grandes de escritorio */
.mobile-only-btn, .nav__toggle {
    display: none !important;
}

/* ═══════════════════════════════════════════
    NUEVA SECCIÓN BUSCADOR PREMIUM 
    ═══════════════════════════════════════════ */
.booking-premium {
    padding: 80px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-tag-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

/* CORRECCIÓN: Letras del título del Buscador en el Azul de tu marca */
.booking-title-premium {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.booking-desc-premium {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 35px;
}

.benefits-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item-mini {
    text-align: center;
}

.benefit-icon-box {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--primary-blue);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.benefit-text-mini {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.2;
    text-transform: none;
}

/* Estructura de fila para los botones divididos */
.action-buttons-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: nowrap;
}

.btn-split {
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* Botón Cotiza: Azul de tu Logo */
.btn-split-cotiza {
    background: var(--primary-blue);
    color: #ffffff !important;
    box-shadow: 0 8px 16px rgba(31, 61, 134, 0.2);
}

.btn-split-cotiza:hover {
    transform: translateY(-2px);
    background: #152a5e;
}

.txt-split-y {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111a2e;
}

/* Botón Viaja: Naranja de tu Logo */
.btn-split-viaja {
    background: var(--accent-orange);
    color: #ffffff !important;
    box-shadow: 0 8px 16px rgba(242, 138, 72, 0.2);
}

.btn-split-viaja:hover {
    transform: translateY(-2px);
    background: #d67333;
}

/* Caja de advertencia legal */
.search-disclaimer {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #664d03;
    padding: 15px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    line-height: 1.5;
    text-align: justify;
    max-width: 550px;
}

.main-search-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(17, 26, 46, 0.08);
    display: block;
    object-fit: cover;
}

/*══════════════════════════════════════════════
                HERO
══════════════════════════════════════════════*/

.hero{

    position:relative;

    overflow:hidden;

    min-height:92vh;

    display:flex;

    align-items:center;

    padding:120px 0 90px;

    background:
        linear-gradient(
            90deg,
            rgba(4,12,30,.95) 0%,
            rgba(8,18,38,.90) 35%,
            rgba(15,25,45,.55) 70%,
            rgba(15,25,45,.20) 100%
        ),
        url("assets/avionsol.webp");

    background-size:cover;

    background-position:center right;

}

.hero__overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at right center,
    rgba(255,255,255,.10),
    transparent 45%);

    pointer-events:none;

}

.hero__grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

/*══════════════════════════════════════════════
                IZQUIERDA
══════════════════════════════════════════════*/

.hero__content{

    color:#fff;

}

.hero__badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:11px 18px;

    margin-bottom:30px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    font-size:14px;

    font-weight:700;

}

.hero__badge i{

    color:#FFD166;

}

.hero__title{

    margin:0 0 28px;

    font-size:64px;

    line-height:1.08;

    font-weight:800;

    letter-spacing:-1.5px;

    color:#fff;

    max-width:760px;

}

.hero__title span{

    color:var(--primary-red);

}

.hero__subtitle{

    max-width:690px;

    font-size:22px;

    line-height:1.75;

    color:rgba(255,255,255,.92);

    margin-bottom:38px;

}

/*══════════════════════════════════════════════
                BENEFICIOS
══════════════════════════════════════════════*/

.hero__benefits{

    display:grid;

    grid-template-columns:repeat(2,minmax(250px,1fr));

    gap:18px 28px;

    margin-bottom:40px;

}

.hero__benefits div{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:17px;

    font-weight:600;

}

.hero__benefits i{

    color:#FFB347;

    font-size:18px;

    flex-shrink:0;

}

/*══════════════════════════════════════════════
                BOTONES
══════════════════════════════════════════════*/

.hero__buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:22px;

}

.hero__buttons .btn{

    min-width:250px;

    justify-content:center;

}

.hero__cta{

    box-shadow:0 15px 35px rgba(230,58,72,.35);

}

.hero__microcopy{

    margin:0;

    color:rgba(255,255,255,.85);

    font-size:15px;

    font-weight:600;

}

/*══════════════════════════════════════════════
                FAQ PREMIUM
══════════════════════════════════════════════*/

.faq-premium{

    padding:110px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );

}

.faq-premium .section-heading{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;

}

.faq-premium .section-kicker{

    display:inline-block;

    margin-bottom:18px;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(230,58,72,.08);

    color:var(--primary-red);

    font-size:14px;

    font-weight:700;

}

.faq-premium .section-title{

    margin-bottom:20px;

    font-size:48px;

    line-height:1.2;

}

.faq-premium .section-title span{

    color:var(--primary-red);

}

.faq-premium .section-subtitle{

    font-size:20px;

    line-height:1.8;

    color:#5d6675;

}

.faq-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.faq-card{

    padding:34px;

    background:#fff;

    border-radius:22px;

    border:1px solid #edf1f5;

    box-shadow:0 18px 45px rgba(17,26,46,.06);

    transition:
        transform .30s ease,
        box-shadow .30s ease,
        border-color .30s ease;

}

.faq-card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 60px rgba(17,26,46,.12);

    border-color:rgba(230,58,72,.22);

}

.faq-icon{

    width:64px;

    height:64px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:22px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary-red),
        #ff7d54
    );

    color:#fff;

    font-size:26px;

}

.faq-card h3{

    margin-bottom:16px;

    color:var(--primary-blue);

    font-size:22px;

    line-height:1.35;

}

.faq-card p{

    color:#5d6675;

    line-height:1.8;

    font-size:16px;

}

/*══════════════════════════════════════════════
            WHY US
══════════════════════════════════════════════*/

.why-us{

    padding:110px 0;

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:70px;

}

.why-card{

    padding:36px;

    border-radius:22px;

    background:#fff;

    border:1px solid #edf1f5;

    box-shadow:0 18px 40px rgba(17,26,46,.05);

    transition:.30s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(17,26,46,.10);

    border-color:rgba(230,58,72,.20);

}

.why-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    margin-bottom:24px;

    background:linear-gradient(135deg,var(--primary-red),#ff8356);

    color:#fff;

    font-size:28px;

}

.why-card h3{

    margin-bottom:16px;

    color:var(--primary-blue);

    font-size:22px;

}

.why-card p{

    color:#5d6675;

    line-height:1.8;

}

.why-card--accent{

    background:linear-gradient(135deg,#102548,#183867);

    color:#fff;

}

.why-card--accent h3,

.why-card--accent p{

    color:#fff;

}

.why-card--accent i{

    background:rgba(255,255,255,.18);

}

/*══════════════════════════════════════════════
                TARJETA ELIZABETH
══════════════════════════════════════════════*/

.hero__advisor{

    display:flex;

    justify-content:center;

}

.hero__advisor-card{

    width:100%;

    max-width:470px;

    padding:34px;

    border-radius:28px;

    text-align:center;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(22px);

    box-shadow:0 30px 60px rgba(0,0,0,.28);

}

.hero__advisor-card img{

    width:170px;

    height:170px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.20);

    margin-bottom:22px;

}

.hero__advisor-label{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(230,58,72,.18);

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:.4px;

}

.hero__advisor-card h2{

    margin:0 0 18px;

    color:#fff;

    font-size:30px;

    line-height:1.3;

}

.hero__advisor-card h2 strong{

    color:#FFD166;

}

.hero__advisor-card p{

    color:rgba(255,255,255,.90);

    line-height:1.8;

    font-size:17px;

    margin-bottom:28px;

}

/*══════════════════════════════════════════════
                TAGS
══════════════════════════════════════════════*/

.hero__advisor-tags{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:12px;

}

.hero__advisor-tags span{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.12);

    color:#fff;

    font-size:14px;

    font-weight:600;

}

.hero__advisor-tags i{

    color:#FFD166;

}

/*══════════════════════════════════════════════
                TABLET
══════════════════════════════════════════════*/

@media (max-width:1100px){

.hero{

    padding:110px 0 70px;

}

.hero__grid{

    grid-template-columns:1fr;

    gap:55px;

}

.hero__content{

    max-width:100%;

}

.hero__title{

    font-size:54px;

    max-width:100%;

}

.hero__subtitle{

    max-width:100%;

}

.hero__advisor{

    justify-content:flex-start;

}

.hero__advisor-card{

    max-width:700px;

}

}


/*══════════════════════════════════════════════
                MÓVIL
══════════════════════════════════════════════*/

@media (max-width:768px){

.hero{

    min-height:auto;

    padding:95px 0 55px;

    background-position:68% center;

}

.hero__grid{

    grid-template-columns:1fr;

    gap:40px;

}

.hero__badge{

    font-size:12px;

    padding:9px 14px;

    line-height:1.4;

}

.hero__title{

    font-size:40px;

    line-height:1.12;

    letter-spacing:-.8px;

    margin-bottom:22px;

}

.hero__subtitle{

    font-size:18px;

    line-height:1.65;

    margin-bottom:30px;

}

.hero__benefits{

    grid-template-columns:1fr;

    gap:14px;

    margin-bottom:30px;

}

.hero__benefits div{

    font-size:16px;

}

.hero__buttons{

    flex-direction:column;

    gap:14px;

}

.hero__buttons .btn{

    width:100%;

    min-width:100%;

}

.hero__microcopy{

    text-align:center;

    font-size:14px;

}

.hero__advisor{

    margin-top:10px;

}

.hero__advisor-card{

    padding:26px;

    border-radius:22px;

}

.hero__advisor-card img{

    width:135px;

    height:135px;

    margin-bottom:18px;

}

.hero__advisor-card h2{

    font-size:26px;

}

.hero__advisor-card p{

    font-size:16px;

    line-height:1.7;

}

.hero__advisor-tags{

    gap:10px;

}

.hero__advisor-tags span{

    width:100%;

    justify-content:center;

    font-size:13px;

    padding:11px 14px;

}

}


/*══════════════════════════════════════════════
                MÓVILES PEQUEÑOS
══════════════════════════════════════════════*/

@media (max-width:480px){

.hero{

    padding:88px 0 45px;

}

.hero__title{

    font-size:34px;

}

.hero__subtitle{

    font-size:17px;

}

.hero__advisor-card{

    padding:22px;

}

.hero__advisor-card img{

    width:115px;

    height:115px;

}

.hero__advisor-card h2{

    font-size:23px;

}

.hero__advisor-card p{

    font-size:15px;

}

.hero__advisor-label{

    font-size:12px;

}

}

/*══════════════════════════════════════════════
            HERO ANIMATIONS
══════════════════════════════════════════════*/

.hero__badge,
.hero__title,
.hero__subtitle,
.hero__benefits,
.hero__buttons,
.hero__microcopy{

    opacity:0;

    transform:translateY(28px);

    animation:heroFade .75s ease forwards;

}

.hero__badge{

    animation-delay:.10s;

}

.hero__title{

    animation-delay:.22s;

}

.hero__subtitle{

    animation-delay:.36s;

}

.hero__benefits{

    animation-delay:.50s;

}

.hero__buttons{

    animation-delay:.64s;

}

.hero__microcopy{

    animation-delay:.78s;

}

.hero__advisor{

    opacity:0;

    transform:translateX(45px);

    animation:advisorFade .9s ease forwards;

    animation-delay:.55s;

}

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(28px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes advisorFade{

    from{

        opacity:0;

        transform:translateX(45px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* ═══════════════════════════════════════════
    BOTONES PREMIUM
    ═══════════════════════════════════════════ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn--primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn--primary:hover {
    background-color: #cd2d39;
    transform: translateY(-2px);
}

.btn--ghost {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn--ghost:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background-color: #25d366;
    color: var(--white);
    font-weight: 700;
}

.btn--whatsapp:hover {
    background-color: #20ba56;
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn--full {
    width: 100%;
}

/*══════════════════════════════════════════════
        ACABADOS PREMIUM HERO
══════════════════════════════════════════════*/

.hero__advisor-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.hero__advisor-card:hover{

    transform:translateY(-10px);

    box-shadow:0 45px 90px rgba(0,0,0,.35);

    border-color:rgba(255,255,255,.35);

}

.hero__advisor-card img{

    margin-top:-70px;

    box-shadow:0 25px 45px rgba(0,0,0,.35);

    transition:transform .35s ease;

}

.hero__advisor-card:hover img{

    transform:scale(1.04);

}

.hero__cta{

    position:relative;

    overflow:hidden;

}

.hero__cta::before{

    content:"";

    position:absolute;

    top:0;

    left:-130%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

}

.hero__cta:hover::before{

    left:170%;

    transition:left .75s ease;

}

/* ═══════════════════════════════════════════
    SECCIÓN DE VISAS (HOME PREVIEW)
    ═══════════════════════════════════════════ */
.section-tag {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 38px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ═══════════════════════════════════════════
    DESTINOS DESTACADOS (TARJETAS)
    ═══════════════════════════════════════════ */
.destinations {
    padding: 80px 0;
}

.destinations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dest-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.dest-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.1));
    z-index: 1;
}

.dest-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--white);
}

.dest-card__label {
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dest-card__name {
    font-size: 32px;
    margin-bottom: 15px;
}

.dest-card__btn {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 4px;
    transition: color 0.3s;
}
.dest-card__btn:hover {
    color: var(--accent-orange);
}

/* ═══════════════════════════════════════════
    ESTADÍSTICAS (STRIP)
    ═══════════════════════════════════════════ */
.stats {
    background-color: var(--primary-blue);
    padding: 60px 0;
    color: var(--white);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat__num {
    font-size: 48px;
    color: var(--accent-orange);
    display: block;
}

.stat__label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.85;
}

/* ═══════════════════════════════════════════
    CTA FINAL
    ═══════════════════════════════════════════ */
.cta-final {
    background: linear-gradient(rgba(17, 26, 46, 0.9), rgba(17, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.section-tag--light {
    color: var(--accent-orange);
}

.cta-final__title {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-final__sub {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-final__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ═══════════════════════════════════════════
    FOOTER ESTRUCTURADO (4 COLUMNAS)
    ═══════════════════════════════════════════ */
.footer {
    background-color: #111a2e;
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.logo__img--footer {
    height: 45px;
    margin-bottom: 15px;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.6;
}

.footer__links h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
}

.footer__links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--accent-orange);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.footer__credit {
    color: var(--accent-orange);
    font-weight: 700;
}

/* ═══════════════════════════════════════════
    SISTEMA DE MODAL FLOTANTE (CONTACTO)
    ═══════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 26, 46, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--white);
    width: 92%;
    max-width: 540px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.modal__header h2 {
    color: var(--primary-blue);
    font-size: 26px;
    margin-bottom: 8px;
}

.modal__header p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.lead-form .form-row {
    display: flex;
    gap: 16px;
}

.lead-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    flex: 1;
}

.lead-form label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
}

.lead-form input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: var(--bg-light);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

/* ═══════════════════════════════════════════
    CORRECCIÓN DE SUBMENÚ DESPLEGABLE (DROPDOWN)
    ═══════════════════════════════════════════ */
.nav__dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white) !important;
    min-width: 240px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 10px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-red);
    z-index: 2000;
}

.nav__dropdown:hover .dropdown__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Mantiene el funcionamiento en compu y añade soporte para el toque en celular */
.nav__dropdown:hover .dropdown__menu,
.nav__dropdown.is-open .dropdown__menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown__menu li {
    width: 100%;
    display: block;
}

.dropdown__menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    padding: 12px 20px !important;
    color: var(--text-dark) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: left;
    transition: background 0.2s, color 0.2s;
    width: 100%;
}

.dropdown__menu li a i {
    color: var(--primary-blue);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.dropdown__menu li a:hover {
    background-color: rgba(31, 61, 134, 0.05) !important;
    color: var(--primary-red) !important;
}

/* ═══════════════════════════════════════════
    DISEÑO RESPONSIVO (MÓVIL Y TABLETS)
    ═══════════════════════════════════════════ */
@media screen and (max-width: 768px) {
    .mobile-only-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;    /* Tamaño fijo premium */
        height: 44px !important;
        flex-shrink: 0 !important; /* Evita que el logo lo empuje o aplaste */
        margin: 0 !important;      /* Cero desfases por margen */
    }

    .faq-grid{
    
        grid-template-columns:1fr;
    
    }
    
    .faq-premium{
    
        padding:80px 0;
    
    }
    
    .faq-premium .section-title{
    
        font-size:36px;
    
    }
    
    .faq-premium .section-subtitle{
    
        font-size:18px;
    
    }

    .nav__menu {
        position: fixed !important;
        top: 70px !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: calc(100vh - 70px) !important;
        background: #ffffff !important;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.15) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 40px 24px !important;
        gap: 24px !important;
        transition: right 0.3s ease-in-out !important;
        z-index: 9999 !important;
        overflow-y: auto;
    }

    .nav__menu.show-menu {
        right: 0 !important;
    }

    .nav__menu li {
        width: 100% !important;
    }

    .nav__menu a {
        display: block !important;
        width: 100% !important;
        font-size: 18px !important;
        padding: 4px 0 !important;
    }

    .dropdown__menu {
        position: relative !important;
        top: 0 !important;
        box-shadow: none !important;
        padding-left: 15px !important;
        margin-top: 10px !important;
        background: #f7fafc !important;
        display: none !important;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        border-top: none;
        border-left: 3px solid var(--primary-red);
    }

    .nav__dropdown.open-dropdown .dropdown__menu {
        display: block !important;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer__links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer__bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .hero__title {
        font-size: 38px;
    }
    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 290px;
    }
    .lead-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    .booking-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .booking-title-premium { 
        font-size: 36px; 
    }
    .booking-premium { 
        padding: 60px 0; 
    }
    .benefits-mini-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px; 
    }
    .booking-tag-premium { 
        justify-content: center; 
    }
    .action-buttons-row { 
        justify-content: center; 
    }
    .search-disclaimer { 
        margin: 0 auto; 
    }
}

@media (max-width: 480px) {
    .action-buttons-row { 
        gap: 8px; 
    }
    .btn-split { 
        padding: 14px 18px; 
        font-size: 13px; 
    }
    .txt-split-y { 
        font-size: 18px; 
    }
}

/* --- Ajustes Personalizados del Footer --- */
.logo__img--footer {
    width: 170px !important;
    height: auto !important;
}
.footer__links-title-destinos {
    font-size: calc(1rem + 2px) !important;
}
.footer__links-destinos-item {
    font-size: 1.05rem !important;
}

/* =══════════════════════════════════════════
   BOTÓN FLOTANTE DE WHATSAPP (SIEMPRE VISIBLE)
   ═══════════════════════════════════════════ */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99999; /* Asegura que flote por encima de carruseles y banners */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1); /* Efecto de rebote premium al pasar el mouse */
    background-color: #1ebd54;
}

/* Ajuste sutil para celulares (para que no tape tanto espacio) */
@media screen and (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
}

/* ---------- Language Selector ---------- */

.nav-language{
    position:relative;
    list-style:none;
}

.nav__language{
    display:flex;
    align-items:center;
    gap:6px;

    color:#1f3d86;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    letter-spacing:.5px;

    padding:10px 0;

    transition:.25s;
}

.nav__language:hover{
    color:#00a8e8;
}

.nav__language .fa-chevron-down{
    font-size:11px;
    transition:.25s;
}

.language-menu{
    position:absolute;
    top:115%;
    left:50%;
    transform:translateX(-50%);

    min-width:180px;

    background:#fff;
    border-radius:14px;
    padding:10px 0;

    box-shadow:0 15px 45px rgba(0,0,0,.18);

    opacity:0;
    visibility:hidden;

    transition:.25s;

    z-index:99999;
}

.language-menu li{
    list-style:none;
}

.language-menu a{
    display:flex;
    align-items:center;
    gap:12px;

    padding:12px 18px;

    text-decoration:none;

    color:#1f3d86;
    font-weight:600;

    transition:.25s;
}

.language-menu a:hover{
    background:#f5f8ff;
}

.language-menu img{
    width:22px;
    height:22px;
    border-radius:50%;
    object-fit:cover;
}

.nav-language:hover .language-menu{
    opacity:1;
    visibility:visible;
}

.nav-language:hover .fa-chevron-down{
    transform:rotate(180deg);
}

.btn-save{

display:flex;
align-items:center;
justify-content:space-between;

gap:18px;

background:linear-gradient(135deg,#0052CC,#003B95);

color:#fff;

text-decoration:none;

padding:18px 22px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,82,204,.28);

margin-bottom:30px;

transition:.25s;

}

/* ==========================================================
   TARJETA DE ELIZABETH
========================================================== */

.advisor-card{

    margin:38px auto;

    max-width:760px;

    background:#fff;

    border-radius:22px;

    padding:24px;

    display:flex;

    gap:24px;

    align-items:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border:1px solid rgba(0,0,0,.05);

}

.advisor-photo{

    width:110px;

    height:110px;

    object-fit:cover;

    border-radius:50%;

    flex-shrink:0;

    border:4px solid #fff;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.advisor-label{

    display:inline-block;

    color:var(--primary-red);

    font-weight:700;

    margin-bottom:6px;

    letter-spacing:.4px;

    text-transform:uppercase;

    font-size:.8rem;

}

.advisor-info h3{

    margin:0 0 10px;

    font-size:1.6rem;

    color:#1f2937;

}

.advisor-info p{

    margin:0;

    line-height:1.7;

    color:#4b5563;

}

.advisor-trust{

    margin-top:18px;

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.advisor-trust span{

    background:#f8fafc;

    border-radius:30px;

    padding:8px 16px;

    font-size:.92rem;

    font-weight:600;

    color:#374151;

}

@media (max-width:768px){

.advisor-card{

    flex-direction:column;

    text-align:center;

}

.advisor-trust{

    justify-content:center;

}

}

/*══════════════════════════════════════════════
            WHY US RESPONSIVE
══════════════════════════════════════════════*/

@media (max-width:992px){

    .why-grid{

        grid-template-columns:1fr;

    }

}

.canada-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.canada-content{

    width:100%;

}

.canada-layout{

    grid-template-columns:1fr;

    gap:35px;

}

.visa-image-wrapper img{

    width:100%;

    height:auto;

    display:block;

}

/*══════════════════════════════════════════════
            WHY US - HEADER
══════════════════════════════════════════════*/

.why-us{

    padding:100px 0;

    background:#fff;

}

.why-us .section-heading{

    max-width:900px;

    margin:0 auto 70px;

    text-align:center;

}

.why-us .section-kicker{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:#eef5ff;

    color:var(--primary-blue);

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.8px;

    margin-bottom:22px;

}

.why-us .section-title{

    font-family:'Oswald',sans-serif;

    font-size:52px;

    line-height:1.15;

    color:var(--primary-blue);

    margin-bottom:24px;

    text-transform:uppercase;

}

.why-us .section-title span{

    display:block;

    color:var(--primary-red);

}

.why-us .section-subtitle{

    max-width:760px;

    margin:0 auto;

    font-size:20px;

    line-height:1.8;

    color:#555;

}