/* =====================================================
   CENTRAL TRAVEL AGENCY — 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);
    position: relative;
    z-index: 1001;
}
/* Index.php: logo 3x (156px) superpuesto sobre navbar + hero */
body.page-index .navbar-brand .logo-img {
    height: 156px;
    width: 156px;
    margin-top: 10px;
    margin-bottom: -68px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.25);
}
/* Index.php: al hacer scroll, reducir a 2x (104px) */
body.page-index .navbar.scrolled .logo-img {
    height: 104px;
    width: 104px;
    margin-top: 6px;
    margin-bottom: -46px;
}
/* Otras páginas: logo 2x (104px) fijo, sin cambio con scroll */
body:not(.page-index) .navbar-brand .logo-img {
    height: 104px;
    width: 104px;
    margin-top: 6px;
    margin-bottom: -46px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
body:not(.page-index) .navbar.scrolled .logo-img {
    height: 104px;
    width: 104px;
}
.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;
}
.navbar-brand .brand-ruc {
    font-size: 0.58rem;
    color: var(--gray-400);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* 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: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #141414;
    padding: 8rem 2rem 1.5rem;
}
.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); } }

/* === HERO CON VIDEO (layout 2 columnas) === */
.hero--with-video {
    min-height: 70vh;
    align-items: stretch;
    text-align: left;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
/* Cuando hay video, los textos ocupan la mitad izquierda */
.hero--with-video .hero-content {
    flex: 1 1 0;
    max-width: none;
    text-align: left;
}
.hero--with-video .hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
}
.hero--with-video .hero-content .hero-actions {
    justify-content: flex-start;
}
.hero--with-video .hero-content p {
    margin-left: 0;
}
/* Columna derecha: video */
.hero-video-col {
    flex: 0 0 48%;
    max-width: 48%;
}
.hero-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 3px rgba(245,168,0,0.35);
}
.hero-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* Sin video: layout centrado original */
.hero:not(.hero--with-video) .hero-inner {
    justify-content: center;
}
.hero:not(.hero--with-video) .hero-content {
    text-align: center;
    max-width: 820px;
}

/* Responsive: en móvil el video va abajo */
@media (max-width: 860px) {
    .hero-inner {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-video-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hero--with-video .hero-content {
        text-align: center;
    }
    .hero--with-video .hero-content .hero-actions {
        justify-content: center;
    }
    .hero--with-video .hero-content p {
        margin: 0 auto 1.25rem;
    }
}

/* =====================================================
   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: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    margin: -2.5rem auto 2.5rem;
    max-width: 1100px;
    width: calc(100% - 3rem);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    padding: 2.5rem 1.5rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
    .stat-item:not(:last-child)::after {
        display: none;
    }
}
.stat-item .stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}
.stat-item .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
}

/* =====================================================
   CARDS DE DESTINOS
   ===================================================== */
.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .destinos-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

.card-destino {
    position: relative;
    height: 230px;
    background: #090e1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    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: var(--gold);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #090e1f;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}
.card-destino:hover .card-img img {
    transform: scale(1.08);
    opacity: 0.35;
}

.card-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(9, 14, 31, 0.95) 0%, rgba(9, 14, 31, 0.5) 28%, transparent 55%);
    transition: background 0.4s ease, padding 0.4s ease;
    cursor: pointer;
}
.card-destino:hover .card-body {
    background: linear-gradient(to top, rgba(9, 14, 31, 0.98) 0%, rgba(9, 14, 31, 0.9) 75%, rgba(9, 14, 31, 0.8) 100%);
    padding-bottom: 1.25rem;
}

.card-tag {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
    transition: var(--transition);
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.2;
    transition: var(--transition);
}
.card-destino:hover .card-title {
    margin-bottom: 0.4rem;
}

.card-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, max-height 0.3s ease, transform 0.3s ease, margin-bottom 0.3s ease;
}
.card-destino:hover .card-desc {
    opacity: 1;
    max-height: 60px;
    transform: translateY(0);
    margin-bottom: 0.8rem;
}

.card-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    transition: opacity 0.3s ease, max-height 0.3s ease, transform 0.3s ease, padding 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    transform: translateY(10px);
    overflow: hidden;
}
.card-destino:hover .card-footer-link {
    opacity: 1;
    max-height: 30px;
    padding-top: 0.6rem;
    transform: translateY(0);
}
.card-footer-link:hover { gap: 0.5rem; color: var(--white); }

/* =====================================================
   MINIATURA FLOTANTE DE LICENCIA / CERTIFICADO
   ===================================================== */
.licencia-float-wrap {
    /* Se posiciona en el flujo normal entre hero y destinos,
       pero sobresale hacia arriba (hero) y hacia abajo (destinos)
       usando márgenes negativos relativos al contenedor section */
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 20;
    /* Sube al hero y baja hacia destinos: el wrap no tiene altura propia */
    margin-top: -80px;
    margin-bottom: -80px;
    padding-right: 2.5rem;
    pointer-events: none;
}
.licencia-thumb {
    pointer-events: all;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.licencia-thumb:hover {
    transform: scale(1.04) translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.55));
}
.licencia-thumb img {
    /* Miniatura A4 vertical — relación aprox 1:1.41 */
    width: 90px;
    height: 127px;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px;
    border: 2px solid var(--gold);
    background: #fff;
    display: block;
}
.licencia-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--blue-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.18rem 0.55rem;
    border-radius: 20px;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .licencia-float-wrap {
        justify-content: center;
        padding-right: 0;
        margin-top: -60px;
        margin-bottom: -60px;
    }
    .licencia-thumb img {
        width: 70px;
        height: 99px;
    }
}

/* Estilos de Slider Horizontal para Circuitos */
.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
}
.circuito-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
    width: 100%;
    scrollbar-width: none;
}
.circuito-slider::-webkit-scrollbar {
    display: none;
}
.slider-slide {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 290px;
    scroll-snap-align: start;
}
@media (max-width: 960px) {
    .slider-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
}
@media (max-width: 600px) {
    .slider-slide {
        flex: 0 0 100%;
    }
}
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--blue-dark);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition);
}
.slider-control:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
}
.slider-control.prev { left: -15px; }
.slider-control.next { right: -15px; }
@media (max-width: 1150px) {
    .slider-control.prev { left: 0; }
    .slider-control.next { right: 0; }
}

/* =====================================================
   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;
    justify-items: center;
}
.respaldo-grid:has(.respaldo-card:nth-child(1):last-child),
.respaldo-grid:has(.respaldo-card:nth-child(2):last-child) {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}
.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%;
}

/* Tarjetas Horizontales para Reconocimientos */
.reconocimientos-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}
.reconocimiento-card-horizontal {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.reconocimiento-card-horizontal:hover {
    border-color: rgba(26,63,168,0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.reconocimiento-imgs-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.reconocimiento-img-item {
    width: 105px;
    height: 105px;
    border-radius: var(--radius);
    border: 2px solid rgba(245,168,0,0.35);
    background: #fff;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}
.reconocimiento-card-horizontal:hover .reconocimiento-img-item {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(245,168,0,0.2);
}
.reconocimiento-img-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.reconocimiento-icon-wrap {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff7e6;
    border-radius: 50%;
    flex-shrink: 0;
}
.reconocimiento-content {
    flex: 1;
    text-align: left;
}
.reconocimiento-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}
.reconocimiento-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .reconocimiento-card-horizontal {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .reconocimiento-content {
        text-align: center;
    }
    .reconocimiento-imgs-wrap {
        justify-content: center;
    }
}

/* Imagen de ancho completo (servicios principal) */
.img-fullwidth {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* =====================================================
   CTA BANNER
   ===================================================== */

/* =====================================================
   ASOCIADOS / ALIADOS CARDS
   ===================================================== */
.asociados-filter {
    max-width: 400px;
    margin: 0 auto 2rem;
    position: relative;
}
.asociados-filter input {
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 30px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--white);
    transition: var(--transition);
}
.asociados-filter input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,63,168,0.1);
}
.asociados-filter .filter-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--gray-400);
    pointer-events: none;
}
.asociados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.25rem;
}
.asociado-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(15px);
    box-shadow: var(--shadow-sm);
}
.asociado-card.visible { opacity: 1; transform: translateY(0); }
.asociado-card:hover {
    border-color: rgba(26,63,168,0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.asociado-card.hidden { display: none; }
.asociado-logo {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid var(--gray-200);
    background: var(--off-white);
    padding: 4px;
    flex-shrink: 0;
}
.asociado-info { flex: 1; min-width: 0; }
.asociado-info h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 0.3rem;
    line-height: 1.25;
}
.asociado-info p {
    font-size: 0.78rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.asociado-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue);
    transition: var(--transition);
}
.asociado-link:hover { color: var(--gold-dark); gap: 0.5rem; }
.no-results-msg {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    padding: 2rem 0;
    display: none;
}

.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: #090e1f;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
.cuentas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.cuenta-card {
    position: relative;
    border-radius: 16px;
    padding: 1.75rem;
    color: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    background: linear-gradient(135deg, #1d2b56 0%, #111a3b 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.cuenta-card::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}
.cuenta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(245, 168, 0, 0.3);
}

.cuenta-card-bcp {
    background: linear-gradient(135deg, #1a3fa8 0%, #0d2270 100%);
}
.cuenta-card-yape {
    background: linear-gradient(135deg, #742586 0%, #460f54 100%);
}
.cuenta-card-bancodelanacion {
    background: linear-gradient(135deg, #a31d24 0%, #6e0f14 100%);
}

.cuenta-chip {
    width: 38px;
    height: 28px;
    background: linear-gradient(135deg, #ffd04d 0%, #c07f00 100%);
    border-radius: 5px;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.4);
}
.cuenta-banco {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}
.cuenta-detalles {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 2;
    margin-top: auto;
}
.cuenta-dato {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.cuenta-dato strong {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}
.copy-val {
    font-family: monospace;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.btn-copy-cuenta {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--white);
    border-radius: 4px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.78rem;
    padding: 0;
}
.btn-copy-cuenta:hover {
    background: var(--gold);
    color: var(--blue-dark);
}

/* =====================================================
   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); }

/* Libro de Reclamaciones — botón sobre el copyright */
.footer-reclamaciones {
    text-align: center;
    padding: 1rem 0 0.75rem;
}
.footer-reclamaciones .btn-reclamo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245,168,0,0.12);
    border: 1px solid rgba(245,168,0,0.3);
    color: var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}
.footer-reclamaciones .btn-reclamo:hover {
    background: rgba(245,168,0,0.25);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.footer-reclamaciones .btn-reclamo .reclamo-icon {
    font-size: 1.1rem;
}
.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); }
}
/* =====================================================
   FORMULARIO DE RESERVA / BOOKING WIDGET ("Reserva tu cupo")
   ===================================================== */
.booking-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(13, 34, 112, 0.06);
}
.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}
.booking-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0d2270;
    margin: 0;
}
.booking-step {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.booking-section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.6px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}
.booking-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}
.booking-option-card {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}
.booking-option-card:hover {
    border-color: #1e4bbf;
    background: #f1f5f9;
}
.booking-option-card.selected {
    border-color: #1e4bbf;
    background: #eff6ff;
    box-shadow: 0 0 0 1px #1e4bbf;
}
.booking-option-card input[type="radio"] {
    display: none;
}
.booking-option-card .radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #94a3b8;
    margin-top: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.booking-option-card.selected .radio-custom {
    border-color: #1e4bbf;
    background: #1e4bbf;
}
.booking-option-card.selected .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}
.booking-option-card .option-info {
    flex: 1;
}
.booking-option-card .option-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.booking-option-card .option-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.92rem;
    line-height: 1.3;
}
.booking-option-card .option-price {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0d2270;
}
.booking-option-card .option-details {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 0.25rem;
    line-height: 1.35;
}
.booking-fields-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}
.booking-field label {
    font-size: 0.68rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    display: block;
}
.booking-field input {
    width: 100%;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Inter', sans-serif;
}
.booking-field input:focus {
    border-color: #1e4bbf;
}
.booking-total-box {
    background: #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.booking-total-box .total-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}
.booking-total-box .total-breakdown {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.15rem;
}
.booking-total-box .total-amount {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #0d2270;
}
.btn-booking-submit {
    width: 100%;
    background: #c07f00;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.btn-booking-submit:hover {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4);
}
/* Selección de Medio de Pago en Booking Widget */
.payment-method-selector {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}
.payment-method-card {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.payment-method-card input {
    display: none;
}
.payment-method-card.selected {
    border-color: #1a3fa8;
    background: #f0f4ff;
    box-shadow: 0 0 0 2px rgba(26, 63, 168, 0.15);
}
.payment-method-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: #1e293b;
}
.payment-method-card.selected .payment-name {
    color: #1a3fa8;
}
.payment-details-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.85rem;
    margin-bottom: 1.2rem;
    font-size: 0.83rem;
}
.payment-instruction {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    color: #475569;
    line-height: 1.45;
    margin-bottom: 0.6rem;
}
.payment-instruction p {
    margin: 0;
    font-size: 0.8rem;
}
.payment-info-row {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.4rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.84rem;
}
.payment-info-row code {
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    color: #1a3fa8;
}
.bank-accounts-widget-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.widget-account-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem 0.7rem;
}
.account-bank-title {
    font-weight: 700;
    color: #1a3fa8;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}
.account-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #334155;
    margin-top: 2px;
}
.account-line code {
    font-family: monospace;
    font-weight: 700;
    background: #e2e8f0;
    padding: 1px 4px;
    border-radius: 3px;
    color: #0f172a;
}
.btn-mini-copy {
    background: none;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.72rem;
    padding: 1px 5px;
    transition: background 0.2s ease;
}
.btn-mini-copy:hover {
    background: #e2e8f0;
}
.booking-flow-note {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    margin-top: 0.8rem;
    font-size: 0.78rem;
    color: #714b00;
    line-height: 1.45;
}
.booking-flow-note span {
    font-size: 1.1rem;
    line-height: 1;
}
.booking-flow-note p {
    margin: 0;
}

.payment-trust-section {
    text-align: center;
    margin-top: 1.2rem;
}
.payment-trust-section .trust-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.payment-trust-section .trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.4rem 0;
    flex-wrap: wrap;
}
.payment-trust-section .badge-card {
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    padding: 0.18rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 800;
}
.badge-yape { background: #6b21a8; color: #fff; border-color: #581c87; }
.badge-bcp { background: #002a8f; color: #fff; border-color: #001f6b; }
.badge-bbva { background: #004481; color: #fff; border-color: #002d57; }
.badge-transfer { background: #1a7a3c; color: #fff; border-color: #145a2c; }
.payment-trust-section .trust-security {
    font-size: 0.73rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.35rem;
}

.booking-doubts-section {
    border-top: 1px solid #e2e8f0;
    margin-top: 1.2rem;
    padding-top: 1rem;
    text-align: center;
}
.booking-doubts-section p {
    font-size: 0.82rem;
    color: #475569;
    font-weight: 500;
    margin-bottom: 0.6rem;
}
.btn-whatsapp-query {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    background: #16a34a;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 10px;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}
.btn-whatsapp-query:hover {
    background: #15803d;
}

/* =====================================================
   BLOQUES DE SERVICIOS (TARJETAS CON 3 DISEÑOS)
   ===================================================== */
/* Estilo Bloque 2: PeruRail (Diseño Elegante Ferrocarril / Dorado) */
.perurail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 1.5rem;
}
.perurail-card {
    background: #ffffff;
    border-radius: 16px;
    border-top: 4px solid var(--gold, #F5A800);
    box-shadow: 0 6px 20px rgba(13, 34, 112, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.perurail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(13, 34, 112, 0.15);
}
.perurail-card-img {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: #101726;
}
.perurail-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.perurail-card:hover .perurail-card-img img {
    transform: scale(1.06);
}
.perurail-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(13, 34, 112, 0.85);
    color: #FFD04D;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245, 168, 0, 0.4);
}
.perurail-card-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.perurail-card-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--blue-dark, #0d2270);
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.perurail-card-body p {
    font-size: 0.88rem;
    color: var(--gray-600, #3b4b72);
    line-height: 1.6;
    flex: 1;
}

/* Estilo Bloque 3: Seguros de Viaje (Diseño Seguridad & Protección) */
.seguros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.seguros-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--green, #1a7a3c);
    border-radius: 14px;
    padding: 1.3rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}
.seguros-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(26, 122, 60, 0.12);
    border-color: #cbd5e1;
    border-left-color: var(--green, #1a7a3c);
    transform: translateY(-3px);
}
.seguros-card-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.seguros-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seguros-card-body {
    flex: 1;
}
.seguros-card-body h3 {
    font-size: 1.05rem;
    color: var(--green, #1a7a3c);
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.seguros-card-body p {
    font-size: 0.85rem;
    color: var(--gray-600, #3b4b72);
    line-height: 1.5;
}

/* Estilo Bloque 4: Tipos de Servicios (Diseño Grid Moderno) */
.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.tipos-card {
    background: #ffffff;
    border: 1px solid #e8edf8;
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.tipos-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(26, 63, 168, 0.12);
    border-color: var(--blue, #1a3fa8);
}
.tipos-card-img {
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f3f5fa;
}
.tipos-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.tipos-card:hover .tipos-card-img img {
    transform: scale(1.05);
}
.tipos-card h3 {
    font-size: 1.05rem;
    color: var(--blue-dark, #0d2270);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.tipos-card p {
    font-size: 0.85rem;
    color: var(--gray-600, #3b4b72);
    line-height: 1.55;
    flex: 1;
}

/* =====================================================
   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; }
}

/* =====================================================
   MODAL LIGHTBOX PARA IMÁGENES DE RESPALDO
   ===================================================== */
.reconocimiento-img-item img,
.respaldo-img {
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reconocimiento-img-item img:hover,
.respaldo-img:hover {
    transform: scale(1.05);
}
.img-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
    animation: fadeInModal 0.2s ease-out;
}
@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}
.img-modal-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.img-modal-close {
    position: absolute;
    top: -42px;
    right: 0;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.img-modal-close:hover {
    background: rgba(255, 255, 255, 0.45);
}
.img-modal-img {
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 3px rgba(245,168,0,0.4);
    background: #fff;
    padding: 8px;
}
.img-modal-caption {
    color: #fff;
    font-size: 0.95rem;
    margin-top: 0.75rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}