/* =====================================================
   JL TURRY CENTRAL — Estilos Globales
   Paleta institucional extraída del logo:
   Azul rey  #1a3fa8 | Dorado  #F5A800 | Verde  #1a7a3c
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* ── Colores institucionales del logo ── */
    --blue:        #1a3fa8;
    --blue-dark:   #0d2270;
    --blue-deeper: #08163d;
    --blue-mid:    #1e4bbf;
    --blue-light:  #2a5fd4;
    --gold:        #ecec2d;
    --gold-light:  #FFD04D;
    --gold-dark:   #c07f00;
    --green:       #1a7a3c;
    --green-light: #22a050;
    --red-accent:  #cc2222;
    
    /* ── Nueva paleta con fondo principal blanco ── */
    --white:       #FFFFFF;
    --off-white:   #F8Fafd;
    --gray-50:     #F3F5FA;
    --gray-100:    #e8edf8;
    --gray-200:    #D5DEEF;
    --gray-400:    #5a6e99;
    --gray-600:    #3b4b72;
    --text-color:  #0d2270;

    /* ── Sistema ── */
    --shadow-sm:   0 2px 10px rgba(13,34,112,0.08);
    --shadow-md:   0 8px 30px rgba(13,34,112,0.12);
    --shadow-lg:   0 20px 60px rgba(13,34,112,0.15);
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ——— RESET ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #fafcfc;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ——— SCROLLBAR ——— */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 2px solid var(--gold);
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 0.4rem 2rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* Logo en navbar */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.navbar-brand .logo-img {
    height: 52px;
    width: 52px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: #fff;
    padding: 2px;
    transition: var(--transition);
}
.navbar.scrolled .logo-img { height: 42px; width: 42px; }
.navbar-brand:hover .logo-img { transform: scale(1.05); }
.navbar-brand .brand-text { display: flex; flex-direction: column; }
.navbar-brand .brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: 0.3px;
    line-height: 1.1;
}
.navbar-brand .brand-sub {
    font-size: 0.62rem;
    color: var(--gold-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Nav links */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}
.nav-link {
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-size: 0.855rem;
    font-weight: 600;
    color: var(--blue-dark);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--blue-mid);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after { left: 10%; right: 10%; }
.nav-link.active { color: var(--blue-dark); }
.nav-link.active::after { left: 10%; right: 10%; background: var(--gold); }

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-dark) !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.45rem 1.1rem;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,168,0,0.3);
}
.nav-cta::after { display: none; }

/* ── Selector de idioma ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(13,34,112,0.05);
    border: 1px solid rgba(26,63,168,0.25);
    border-radius: 30px;
    padding: 3px 6px;
    flex-shrink: 0;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--gray-400);
    transition: var(--transition);
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}
.lang-btn .flag {
    font-size: 1rem;
    line-height: 1;
}
.lang-btn.active {
    background: var(--blue);
    color: var(--white);
}
.lang-btn:hover:not(.active) {
    background: rgba(26,63,168,0.1);
    color: var(--blue);
}

/* Hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #141414;
    padding: 6rem 2rem 4rem;
}
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-slide.active {
    opacity: 0.45; /* Deja traslucir un poco más el color original de las imágenes */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Degradado en tonos plomo / gris oscuro en lugar de azul */
    background: linear-gradient(150deg, rgba(20, 20, 20, 0.85) 0%, rgba(40, 40, 40, 0.75) 50%, rgba(15, 15, 15, 0.9) 100%);
    z-index: 1;
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.hero-particles span {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 8s infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    50% { transform: translateY(-30px) translateX(15px); opacity: 0.9; }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.hero-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: #fff;
    padding: 6px;
    margin: 0 auto 1.5rem;
    animation: fadeInDown 0.8s ease both;
    box-shadow: 0 0 40px rgba(245,168,0,0.3);
}
.hero-badge {
    display: inline-block;
    background: rgba(245,168,0,0.15);
    border: 1px solid rgba(245,168,0,0.4);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    animation: fadeInDown 0.9s ease 0.1s both;
}
.hero h1 {
    font-size: clamp(2.3rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    animation: fadeInUp 0.9s ease 0.2s both;
}
.hero h1 .highlight {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .eslogan {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 0.95s ease 0.25s both;
}
.hero p {
    font-size: 1.1rem;
    color: var(--gray-100);
    max-width: 580px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-100);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero-scroll .arrow { width: 18px; height: 18px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* =====================================================
   BOTONES
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--blue-dark);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245,168,0,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
}
.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,122,60,0.3);
}

/* =====================================================
   SECCIONES GENERALES
   ===================================================== */
section { padding: 5rem 0; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
    display: inline-block;
    background: rgba(26,63,168,0.06);
    border: 1px solid rgba(26,63,168,0.2);
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 1rem;
}
.section-title span {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc { color: var(--gray-400); max-width: 550px; margin: 0 auto; }
.divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    border-radius: 2px;
    margin: 1rem auto 0;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    background: var(--off-white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 2.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    display: block;
}
.stat-item .stat-label {
    font-size: 0.78rem;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =====================================================
   CARDS DE DESTINOS
   ===================================================== */
.destinos-grid {
    display: grid;
    /* Reducido el ancho mínimo del grid en ~30% (de 300px a 210px) */
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.25rem;
}
.card-destino {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.card-destino.visible {
    opacity: 1;
    transform: translateY(0);
}
.card-destino:hover {
    transform: translateY(-5px);
    border-color: rgba(26,63,168,0.3);
    box-shadow: var(--shadow-md);
}
.card-img {
    width: 100%;
    /* Reducido el alto de la imagen en un 40% (de 190px a 115px) */
    height: 115px;
    object-fit: cover;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-body { 
    /* Reducido el padding interno */
    padding: 1rem; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}
.card-tag {
    font-size: 0.58rem; /* Texto más compacto */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 0.35rem;
}
.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; /* Título reducido */
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}
.card-desc {
    font-size: 0.78rem; /* Descripción reducida */
    color: var(--gray-400);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
    /* Limitamos a 3 líneas para que no se desborde */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem; /* Enlace reducido */
    font-weight: 700;
    color: var(--blue);
    transition: var(--transition);
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}
.card-footer-link:hover { gap: 0.5rem; color: var(--gold-dark); }

/* =====================================================
   SECCIÓN VALORES
   ===================================================== */
.valores-section { background: var(--off-white); }
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.valor-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(15px);
    box-shadow: var(--shadow-sm);
}
.valor-card.visible { opacity: 1; transform: translateY(0); }
.valor-card:hover {
    border-color: rgba(26,63,168,0.25);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.valor-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.valor-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 0.2rem;
}
.valor-text p { font-size: 0.8rem; color: var(--gray-400); }

/* =====================================================
   STRIPE VERDE (acento institucional)
   ===================================================== */
.green-stripe {
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--gold));
}

/* =====================================================
   PAGE HERO (páginas internas)
   ===================================================== */
.page-hero {
    padding: 9rem 0 4rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(26,63,168,0.04) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--blue-dark); margin-bottom: 1rem; }
.page-hero p { color: var(--gray-400); max-width: 500px; margin: 0 auto; font-size: 1.05rem; }

/* =====================================================
   PÁGINA DETALLE DESTINO
   ===================================================== */
.detalle-section { padding: 5rem 0; }
.detalle-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}
.detalle-main .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.detalle-main .breadcrumb a { color: var(--blue); font-weight: 600; }
.detalle-main .breadcrumb a:hover { text-decoration: underline; }
.detalle-main h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--blue-dark); margin-bottom: 1rem; }
.detalle-main .resumen { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.8; }
.detalle-main h3 {
    font-size: 0.9rem; font-weight: 700;
    color: var(--blue); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 1rem;
}
.experiencias-list { display: flex; flex-direction: column; gap: 0.75rem; }
.exp-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}
.exp-item .dot {
    width: 8px; height: 8px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}
.detalle-sidebar .sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: sticky;
    top: 90px;
    box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
    font-size: 1rem; font-weight: 700;
    color: var(--blue-dark); margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}
.sidebar-card .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--gray-400);
    border-bottom: 1px solid var(--gray-100);
}
.sidebar-card .contact-item:last-of-type { border-bottom: none; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 1.25rem; }

/* =====================================================
   PÁGINA NOSOTROS
   ===================================================== */
.nosotros-intro {
    padding: 6rem 0 5rem;
    background: var(--white);
}
.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.nosotros-text h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--blue-dark); margin-bottom: 1.25rem; }
.nosotros-text p { color: var(--gray-400); line-height: 1.9; margin-bottom: 1rem; font-size: 1rem; }
.nosotros-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nosotros-visual .mini-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
}
.nosotros-visual .mini-card .num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 800; color: var(--blue);
}
.nosotros-visual .mini-card .lbl { font-size: 0.75rem; color: var(--gray-400); font-weight: 600; }

/* =====================================================
   RESPALDO CARDS
   ===================================================== */
.respaldo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.respaldo-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    box-shadow: var(--shadow-sm);
}
.respaldo-card.visible { opacity: 1; transform: translateY(0); }
.respaldo-card:hover {
    border-color: rgba(26,63,168,0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.respaldo-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.respaldo-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.5rem; }
.respaldo-card p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.6; }

/* Imágenes dentro de tarjetas de respaldo */
.respaldo-img-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(245,168,0,0.35);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: var(--transition);
}
.respaldo-card:hover .respaldo-img-wrap {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(245,168,0,0.25);
}
.respaldo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    padding: 4rem 0;
    text-align: center;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue-dark); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--blue-dark); opacity: 0.75; margin-bottom: 1.75rem; font-size: 1rem; }
.cta-banner .btn-blue {
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue-dark);
}
.cta-banner .btn-blue:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13,34,112,0.4);
}

/* =====================================================
   CUENTAS BANCARIAS
   ===================================================== */
.cuentas-section { background: var(--blue-deeper); padding: 4rem 0; }
.cuentas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.cuenta-card {
    background: rgba(26,63,168,0.2);
    border: 1px solid rgba(245,168,0,0.12);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.cuenta-card:hover { border-color: rgba(245,168,0,0.4); }
.cuenta-banco {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--gold); margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.cuenta-dato { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 0.3rem; }
.cuenta-dato strong { color: var(--white); font-weight: 500; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deeper) 60%, #050e28 100%);
    border-top: 3px solid var(--gold);
    padding: 4rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.footer-logo {
    width: 60px; height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: #fff;
    padding: 3px;
}
.footer-brand h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 800;
    color: var(--white); margin-bottom: 0.2rem;
}
.footer-brand .slogan { font-size: 0.7rem; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-brand p {
    font-size: 0.85rem; color: var(--gray-400);
    line-height: 1.7; margin-top: 0.75rem; margin-bottom: 1.25rem; max-width: 280px;
}
.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    color: var(--white); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(245,168,0,0.2);
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.85rem; color: var(--gray-400);
    transition: var(--transition);
    display: flex; align-items: center; gap: 0.5rem;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
    display: flex; gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem; color: var(--gray-400);
}
.footer-contact-item .icon { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid rgba(245,168,0,0.12);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray-600); }
.footer-bottom .gold { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(245,168,0,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--gray-400);
    transition: var(--transition);
}
.social-link:hover {
    background: rgba(245,168,0,0.15);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* =====================================================
   WHATSAPP FLOTANTE
   ===================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-green 3s infinite;
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(37,211,102,0.55); }
.whatsapp-btn .wa-icon { font-size: 1.2rem; }
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 38px rgba(37,211,102,0.7); }
}

/* =====================================================
   ANIMACIONES
   ===================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 960px) {
    .detalle-grid { grid-template-columns: 1fr; }
    .detalle-sidebar { order: -1; }
    .nosotros-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .navbar-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--blue-deeper);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.3s ease;
        border-left: 2px solid var(--gold);
        z-index: 999;
    }
    .navbar-nav.open { right: 0; }
    .hamburger { display: flex; z-index: 1000; }
    .nav-link { font-size: 1rem; width: 100%; padding: 0.6rem 0.9rem; }
    .lang-switcher { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .hero-logo { width: 100px; height: 100px; }
}