/* ==================================================
   VIAJESLUMINA — DESIGN SYSTEM PREMIUM v2.0
   ================================================== */

/* ====== RESET ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Colores */
    --ink:        #0a0a0f;
    --ink-2:      #131322;
    --ink-3:      #1d1d33;
    --cream:      #f7f3ec;
    --paper:      #ffffff;
    --gold:       #f6c453;
    --gold-deep:  #e0a82e;
    --coral:      #ff5e7e;
    --magenta:    #d946ef;
    --teal:       #2dd4bf;
    --sky:        #38bdf8;
    --gray-900:   #18181b;
    --gray-700:   #3f3f46;
    --gray-500:   #71717a;
    --gray-300:   #d4d4d8;
    --gray-100:   #f4f4f5;

    /* Gradientes signature */
    --grad-warm:  linear-gradient(135deg, #f6c453 0%, #ff5e7e 100%);
    --grad-cool:  linear-gradient(135deg, #2dd4bf 0%, #38bdf8 100%);
    --grad-night: linear-gradient(160deg, #0a0a0f 0%, #1d1d33 60%, #2a1a3e 100%);
    --grad-fire:  linear-gradient(135deg, #ff5e7e 0%, #f6c453 100%);
    --grad-aurora:linear-gradient(135deg, #2dd4bf 0%, #d946ef 50%, #ff5e7e 100%);

    /* Tipografía */
    --f-display:  'Fraunces', serif;
    --f-body:     'Plus Jakarta Sans', sans-serif;
    --f-mono:     'Space Grotesk', sans-serif;

    /* Sombras */
    --sh-sm:  0 2px 8px rgba(10,10,15,.06);
    --sh-md:  0 10px 30px rgba(10,10,15,.10);
    --sh-lg:  0 30px 60px rgba(10,10,15,.15);
    --sh-xl:  0 50px 100px rgba(10,10,15,.25);
    --sh-glow:0 20px 60px rgba(246,196,83,.35);

    /* Radios */
    --r-sm: 12px; --r-md: 20px; --r-lg: 28px; --r-xl: 40px; --r-pill: 100px;

    --ease: cubic-bezier(.22,1,.36,1);
    --ease-out: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--f-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: none; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

@media (max-width: 900px) {
    body, button { cursor: auto; }
}

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px; }

.dot { color: var(--gold); }
.italic { font-style: italic; font-family: var(--f-display); font-weight: 400; }

/* ====== SELECCIÓN ====== */
::selection { background: var(--gold); color: var(--ink); }

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--grad-warm); border-radius: 10px; }

/* ==================================================
   PRELOADER
   ================================================== */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--ink);
    display: grid; place-items: center;
    transition: opacity .8s ease, visibility .8s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    overflow: hidden;
    line-height: 1;
}
.pl-line {
    display: block;
    color: var(--cream);
    transform: translateY(110%);
    animation: plRise .8s var(--ease) forwards;
}
.pl-accent {
    background: var(--grad-warm);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: .15s;
}
@keyframes plRise { to { transform: translateY(0); } }
.preloader-bar {
    width: 200px; height: 2px;
    background: rgba(255,255,255,.1);
    margin: 28px auto 16px;
    border-radius: 2px; overflow: hidden;
}
.preloader-bar span {
    display: block; height: 100%;
    background: var(--grad-warm);
    animation: plLoad 1.8s var(--ease) forwards;
}
@keyframes plLoad { from { width: 0; } to { width: 100%; } }
.preloader-text {
    font-family: var(--f-mono);
    font-size: .8rem;
    color: var(--gray-500);
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* ==================================================
   CURSOR PERSONALIZADO
   ================================================== */
.cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--cream);
    transition: transform .15s ease, width .25s, height .25s;
}
.cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid var(--cream);
    transition: transform .25s var(--ease), width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
body.cursor-hover .cursor-dot { transform: translate(-50%,-50%) scale(0); }
body.cursor-hover .cursor-ring { width: 70px; height: 70px; border-color: var(--gold); }
body.cursor-view .cursor-ring {
    width: 100px; height: 100px;
    background: var(--gold); border-color: var(--gold);
    mix-blend-mode: normal;
}
body.cursor-view .cursor-ring::after {
    content: 'VER';
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: var(--f-mono); font-size: .75rem;
    font-weight: 700; letter-spacing: .15em; color: var(--ink);
}
body.cursor-view .cursor-dot { transform: translate(-50%,-50%) scale(0); }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ====== BARRA DE PROGRESO ====== */
.progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: var(--grad-warm);
    z-index: 999;
    transition: width .1s linear;
}

/* ==================================================
   NAVBAR
   ================================================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 900;
    padding: 24px 0;
    transition: all .4s var(--ease);
}
.navbar.scrolled {
    background: rgba(247,243,236,.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(10,10,15,.06);
    padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; animation: spinSlow 20s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.brand-text {
    font-family: var(--f-display);
    font-size: 1.5rem; font-weight: 700;
    color: var(--ink); letter-spacing: -.02em;
}
.brand-text em {
    font-style: italic; font-weight: 400;
    background: var(--grad-warm);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    color: var(--ink); font-size: 1rem;
    background: rgba(10,10,15,.05);
    transition: all .3s var(--ease);
}
.icon-btn:hover { background: var(--ink); color: var(--cream); transform: rotate(-15deg); }

/* ====== BOTÓN HAMBURGUESA SIEMPRE VISIBLE ====== */
.burger {
    position: relative; z-index: 1200;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ink);
    display: grid; place-items: center;
    transition: background .35s var(--ease), transform .35s var(--ease);
}
.burger:hover { background: var(--gold); transform: scale(1.08) rotate(5deg); }
.burger-box {
    position: relative;
    width: 22px; height: 16px;
}
.burger-box span {
    position: absolute; left: 0;
    display: block;
    height: 2.5px; width: 100%;
    background: var(--cream);
    border-radius: 2px;
    transition: all .4s var(--ease);
}
.burger-box span:nth-child(1) { top: 0; }
.burger-box span:nth-child(2) { top: 6.75px; width: 15px; }
.burger-box span:nth-child(3) { bottom: 0; top: auto; }
.burger.open { background: var(--gold); }
.burger.open .burger-box span { background: var(--ink); }
.burger.open .burger-box span:nth-child(1) { top: 6.75px; transform: rotate(45deg); }
.burger.open .burger-box span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.burger.open .burger-box span:nth-child(3) { bottom: auto; top: 6.75px; transform: rotate(-45deg); width: 100%; }

/* ====== OVERLAY MENU FULLSCREEN ====== */
.menu-overlay {
    position: fixed; inset: 0;
    z-index: 1050;
    background: var(--grad-night);
    display: flex; flex-direction: column;
    clip-path: circle(0% at calc(100% - 50px) 50px);
    transition: clip-path .8s cubic-bezier(.86,0,.07,1);
    visibility: hidden;
    overflow: hidden;
}
.menu-overlay.open {
    clip-path: circle(150% at calc(100% - 50px) 50px);
    visibility: visible;
}

/* ====== BOTÓN CERRAR DENTRO DEL OVERLAY ====== */
.menu-close {
    position: fixed; top: 28px; right: 28px;
    z-index: 1200;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--cream);
    display: grid; place-items: center;
    font-size: 1.3rem;
    transition: all .4s var(--ease);
    opacity: 0; transform: scale(.6) rotate(-90deg);
    pointer-events: none;
}
.menu-overlay.open .menu-close {
    opacity: 1; transform: scale(1) rotate(0);
    pointer-events: auto;
    transition-delay: .45s;
}
.menu-close:hover {
    background: var(--gold);
    color: var(--ink);
    transform: scale(1.1) rotate(90deg);
    border-color: var(--gold);
}
.menu-overlay::before {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    background: var(--coral); filter: blur(140px); opacity: .35;
    top: -200px; right: -150px;
}
.menu-overlay::after {
    content: ''; position: absolute;
    width: 500px; height: 500px; border-radius: 50%;
    background: var(--gold); filter: blur(140px); opacity: .25;
    bottom: -150px; left: -100px;
}
.menu-overlay-inner {
    position: relative; z-index: 2;
    flex: 1;
    display: grid; grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    padding: 130px 60px 60px;
    max-width: 1400px; margin: 0 auto; width: 100%;
}
.menu-links {
    display: flex; flex-direction: column;
    gap: 6px;
    list-style: none;
}
.menu-links li { overflow: hidden; }
.menu-link {
    display: flex; align-items: baseline; gap: 20px;
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 600; line-height: 1.05;
    color: var(--cream);
    letter-spacing: -.03em;
    transform: translateY(110%);
    transition: transform .8s var(--ease), color .3s;
    position: relative;
}
.menu-overlay.open .menu-link { transform: translateY(0); }
.menu-overlay.open .menu-links li:nth-child(1) .menu-link { transition-delay: .25s; }
.menu-overlay.open .menu-links li:nth-child(2) .menu-link { transition-delay: .32s; }
.menu-overlay.open .menu-links li:nth-child(3) .menu-link { transition-delay: .39s; }
.menu-overlay.open .menu-links li:nth-child(4) .menu-link { transition-delay: .46s; }
.menu-overlay.open .menu-links li:nth-child(5) .menu-link { transition-delay: .53s; }
.menu-num {
    font-family: var(--f-mono);
    font-size: .85rem; font-weight: 500;
    color: var(--gold); opacity: .7;
    letter-spacing: .1em;
}
.menu-link:hover { color: var(--gold); font-style: italic; }
.menu-link .ml-arrow {
    font-size: 1.2rem; opacity: 0;
    transform: translateX(-15px);
    transition: all .4s var(--ease);
}
.menu-link:hover .ml-arrow { opacity: 1; transform: translateX(0); color: var(--gold); }
.menu-link.active { color: var(--gold); font-style: italic; }

/* Columna derecha del menu */
.menu-aside {
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding-top: 20px;
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s .6s ease, transform .6s .6s var(--ease);
}
.menu-overlay.open .menu-aside { opacity: 1; transform: none; }
.menu-aside-label {
    font-family: var(--f-mono); font-size: .78rem;
    color: var(--gold); letter-spacing: .15em;
    text-transform: uppercase; margin-bottom: 16px;
}
.menu-aside p {
    color: rgba(255,255,255,.7); font-size: 1rem;
    line-height: 1.7; margin-bottom: 28px; max-width: 320px;
}
.menu-aside a.mail {
    font-family: var(--f-display); font-size: 1.3rem;
    color: var(--cream); font-weight: 500;
    display: inline-flex; align-items: center; gap: 10px;
    transition: color .3s, gap .3s;
}
.menu-aside a.mail:hover { color: var(--gold); gap: 16px; }
.menu-social { display: flex; gap: 12px; }
.menu-social a {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--cream);
    display: grid; place-items: center;
    transition: all .3s var(--ease);
}
.menu-social a:hover { background: var(--grad-warm); color: var(--ink); transform: translateY(-4px); }

.menu-foot {
    position: relative; z-index: 2;
    padding: 0 60px 30px;
    max-width: 1400px; margin: 0 auto; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--f-mono); font-size: .78rem;
    color: rgba(255,255,255,.4); letter-spacing: .1em;
}

@media (max-width: 900px) {
    .menu-overlay-inner {
        grid-template-columns: 1fr;
        padding: 110px 28px 40px; gap: 40px;
    }
    .menu-link { font-size: clamp(2rem, 11vw, 3.5rem); }
    .menu-foot { padding: 0 28px 24px; flex-direction: column; gap: 8px; }
    .icon-btn { display: none; }
}

/* Botón glow */
.btn-glow {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink); color: var(--cream);
    padding: 14px 26px; border-radius: var(--r-pill);
    font-weight: 600; font-size: .95rem;
    position: relative; overflow: hidden;
    transition: all .4s var(--ease);
    isolation: isolate;
}
.btn-glow::before {
    content: ''; position: absolute; inset: 0;
    background: var(--grad-warm);
    transform: translateY(101%);
    transition: transform .45s var(--ease);
    z-index: -1;
}
.btn-glow:hover::before { transform: translateY(0); }
.btn-glow:hover { color: var(--ink); transform: translateY(-2px); box-shadow: var(--sh-glow); }
.btn-glow i { transition: transform .4s var(--ease); }
.btn-glow:hover i { transform: translate(3px,-3px); }
.btn-lg { padding: 18px 32px; font-size: 1rem; }
.btn-sm { padding: 12px 20px; font-size: .9rem; }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--ink); font-weight: 600; font-size: 1rem;
    transition: gap .3s var(--ease);
}
.btn-ghost:hover { gap: 18px; }
.play-dot {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--ink); color: var(--cream);
    display: grid; place-items: center; font-size: .8rem;
    transition: all .4s var(--ease);
}
.btn-ghost:hover .play-dot { background: var(--grad-warm); color: var(--ink); transform: scale(1.1); }

@media (max-width: 700px) {
    .nav-actions .btn-glow { display: none; }
}

/* ==================================================
   HERO
   ================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-sky {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(246,196,83,.25), transparent 60%),
        radial-gradient(ellipse 70% 50% at 90% 30%, rgba(255,94,126,.20), transparent 60%),
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(45,212,191,.15), transparent 60%),
        var(--cream);
}
.hero-glow {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .55;
    animation: float 14s ease-in-out infinite;
}
.glow-1 { width: 480px; height: 480px; background: var(--gold); top: -120px; left: -100px; }
.glow-2 { width: 420px; height: 420px; background: var(--coral); top: 30%; right: -120px; animation-delay: -4s; }
.glow-3 { width: 380px; height: 380px; background: var(--teal); bottom: -120px; left: 30%; animation-delay: -8s; }
@keyframes float {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px,-30px) scale(1.1); }
    66% { transform: translate(-30px,40px) scale(.95); }
}
.hero-noise {
    position: absolute; inset: 0; opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 60px; align-items: center;
}

.hero-copy { max-width: 640px; }

.pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: var(--r-pill);
    font-family: var(--f-mono); font-size: .78rem; font-weight: 500;
    background: rgba(10,10,15,.06); color: var(--ink);
    letter-spacing: .02em;
}
.pill-live { background: rgba(10,10,15,.06); }
.pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; position: relative;
}
.pulse::after {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: #22c55e; animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(3); opacity: 0; } }

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.04em;
    margin: 28px 0 28px;
    color: var(--ink);
}
.title-row { display: block; overflow: hidden; }
.title-italic { font-style: italic; font-weight: 400; }
.hero-title .dot { color: var(--gold); }

.hero-lead {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--gray-700); max-width: 520px;
    margin-bottom: 40px; font-weight: 400;
}
.hero-lead strong { color: var(--ink); font-weight: 700; }

.hero-cta { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

/* Tarjeta flotante hero */
.hero-card {
    position: relative;
    background: var(--paper);
    border-radius: var(--r-lg);
    overflow: visible;
    box-shadow: var(--sh-xl);
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.hc-image {
    position: relative; height: 320px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    overflow: hidden;
}
.hc-image img { width: 100%; height: 100%; object-fit: cover; }
.hc-badge {
    position: absolute; top: 18px; left: 18px;
    background: rgba(10,10,15,.7); backdrop-filter: blur(10px);
    color: var(--cream); padding: 6px 14px; border-radius: var(--r-pill);
    font-size: .75rem; font-weight: 600; display: flex; align-items: center; gap: 6px;
}
.hc-badge i { color: var(--coral); }
.hc-body { padding: 24px; }
.hc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.hc-loc { font-size: .85rem; color: var(--gray-500); font-weight: 500; }
.hc-loc i { color: var(--coral); margin-right: 4px; }
.hc-rate { font-size: .85rem; font-weight: 700; color: var(--ink); }
.hc-rate i { color: var(--gold); }
.hc-body h3 { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 18px; color: var(--ink); }
.hc-foot { display: flex; justify-content: space-between; align-items: center; }
.hc-price small { display: block; font-size: .72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .1em; }
.hc-price strong { font-family: var(--f-display); font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.hc-price span { font-size: .8rem; color: var(--gray-500); }

.hc-sticker {
    position: absolute;
    background: var(--paper);
    border-radius: var(--r-md);
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--sh-lg);
    font-size: .8rem;
}
.hc-sticker i { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: var(--paper); }
.hc-sticker strong { display: block; font-weight: 700; color: var(--ink); font-size: .82rem; }
.hc-sticker small { color: var(--gray-500); }
.st-1 { top: 60px; left: -40px; animation: stickerFloat 5s ease-in-out infinite; }
.st-1 i { background: var(--grad-cool); }
.st-2 { bottom: 100px; right: -50px; animation: stickerFloat 5s ease-in-out infinite -2.5s; }
.st-2 i { background: var(--grad-warm); }
@keyframes stickerFloat { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(3deg); } }

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    font-family: var(--f-mono); font-size: .72rem; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gray-500);
}
.scroll-track { width: 1px; height: 50px; background: rgba(10,10,15,.15); position: relative; overflow: hidden; }
.scroll-track span { position: absolute; top: 0; left: 0; width: 100%; height: 50%; background: var(--ink); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown { 0% { top: -50%; } 100% { top: 100%; } }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-card { max-width: 420px; }
    .hero-scroll { display: none; }
}

/* ==================================================
   MARQUEE
   ================================================== */
.marquee {
    background: var(--ink); color: var(--cream);
    padding: 28px 0; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.marquee-track {
    display: flex; align-items: center; gap: 40px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-family: var(--f-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600; font-style: italic;
}
.marquee-track span:nth-child(4n+1) {
    background: var(--grad-warm);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.marquee-track i { color: var(--gold); font-size: 1.2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==================================================
   SECCIONES — GENERIC
   ================================================== */
.section { padding: 130px 0; position: relative; }

.section-head { margin-bottom: 70px; }
.section-head.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; }

.kicker {
    display: inline-block;
    font-family: var(--f-mono); font-size: .8rem;
    font-weight: 500; letter-spacing: .15em;
    text-transform: uppercase; color: var(--gray-500);
    margin-bottom: 24px;
}
.kicker-light { color: var(--gold); }

.display-title {
    font-family: var(--f-display);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1; letter-spacing: -.03em;
    color: var(--ink);
}
.display-title.light { color: var(--cream); }
.display-title > span { display: block; overflow: hidden; }
.display-title .italic { font-style: italic; font-weight: 400; }

.section-lead {
    font-size: 1.05rem; color: var(--gray-500);
    max-width: 520px; margin-top: 24px;
}

/* Reveal masks */
.reveal-mask { display: block; overflow: hidden; }
.reveal-in {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s var(--ease);
}
.reveal-in.in { transform: translateY(0); }
.reveal-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-up.in { opacity: 1; transform: none; }
.reveal-line { overflow: hidden; }
.reveal-line > * { display: inline-block; transition: transform 1s var(--ease); transform: translateY(110%); }
.reveal-line.in > * { transform: translateY(0); }

/* ==================================================
   BENTO GRID — DESTINOS
   ================================================== */
.destinations { background: var(--cream); }

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}
.bento-card {
    position: relative; border-radius: var(--r-lg);
    overflow: hidden; cursor: none;
    box-shadow: var(--sh-md);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    transform-style: preserve-3d;
}
.bento-card:hover { box-shadow: var(--sh-xl); }
.bento-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform .8s var(--ease);
}
.bento-card:hover img { transform: scale(1.08); }
.bento-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,15,.85) 100%);
    transition: opacity .4s;
}
.bento-content {
    position: absolute; inset: 0;
    padding: 24px; color: var(--cream);
    display: flex; flex-direction: column; justify-content: space-between;
    z-index: 2;
}
.b-tag {
    align-self: flex-start;
    background: var(--grad-warm); color: var(--ink);
    padding: 5px 12px; border-radius: var(--r-pill);
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em;
}
.b-tag.gold { background: var(--gold); }
.b-country { font-size: .8rem; opacity: .9; display: flex; align-items: center; gap: 6px; }
.b-country i { color: var(--gold); }
.b-bottom h3 {
    font-family: var(--f-display); font-weight: 600;
    font-size: 1.8rem; line-height: 1; margin: 6px 0 8px;
}
.b-bottom p { font-size: .85rem; opacity: .85; margin-bottom: 12px; max-width: 90%; }
.b-meta { display: flex; justify-content: space-between; align-items: flex-end; }
.b-price small { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; opacity: .7; }
.b-price { font-family: var(--f-display); font-size: 1.3rem; font-weight: 600; }
.b-arrow {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--cream); color: var(--ink);
    display: grid; place-items: center;
    transition: all .4s var(--ease);
}
.bento-card:hover .b-arrow { background: var(--grad-warm); transform: rotate(-45deg); }

/* Layout bento */
.b-1 { grid-column: span 2; grid-row: span 2; }
.b-1 .b-bottom h3 { font-size: 2.6rem; }
.b-2 { grid-column: span 2; }
.b-3 { grid-column: span 1; }
.b-4 { grid-column: span 1; }
.b-5 { grid-column: span 2; }

@media (max-width: 900px) {
    .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .b-1 { grid-column: span 2; grid-row: span 1; }
    .b-2, .b-5 { grid-column: span 2; }
    .b-3, .b-4 { grid-column: span 1; }
}
@media (max-width: 560px) {
    .bento { grid-template-columns: 1fr; }
    .bento-card { grid-column: span 1 !important; }
}

/* ==================================================
   PAQUETES
   ================================================== */
.packages { background: var(--paper); }

.pkg-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.pkg-card {
    background: var(--paper);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    position: relative;
    transform-style: preserve-3d;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }
.pkg-featured { border: 2px solid var(--gold); }
.pkg-ribbon {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--grad-warm); color: var(--ink);
    padding: 6px 20px; border-radius: 0 0 var(--r-pill) var(--r-pill);
    font-family: var(--f-mono); font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; z-index: 3;
}
.pkg-media { position: relative; height: 260px; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.08); }
.pkg-tags { position: absolute; top: 16px; left: 16px; display: flex; gap: 8px; }
.t-sale {
    background: var(--grad-fire); color: var(--paper);
    padding: 6px 12px; border-radius: var(--r-pill);
    font-size: .75rem; font-weight: 700;
}
.t-cat {
    background: rgba(10,10,15,.6); backdrop-filter: blur(10px);
    color: var(--cream); padding: 6px 12px; border-radius: var(--r-pill);
    font-size: .72rem; font-weight: 600;
}
.t-cat.gold { background: var(--gold); color: var(--ink); }
.pkg-fav {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
    color: var(--coral); font-size: 1rem;
    display: grid; place-items: center;
    transition: transform .3s var(--ease);
}
.pkg-fav:hover { transform: scale(1.2); }
.pkg-days {
    position: absolute; bottom: 16px; left: 16px;
    background: rgba(10,10,15,.6); backdrop-filter: blur(10px);
    color: var(--cream); padding: 6px 14px; border-radius: var(--r-pill);
    font-size: .78rem; font-weight: 500;
}
.pkg-days i { color: var(--gold); margin-right: 4px; }
.pkg-info { padding: 26px; }
.pkg-loc { font-size: .82rem; color: var(--gray-500); font-weight: 500; }
.pkg-loc i { color: var(--coral); margin-right: 4px; }
.pkg-info h3 {
    font-family: var(--f-display); font-size: 1.5rem; font-weight: 600;
    margin: 8px 0 16px; color: var(--ink);
}
.pkg-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pkg-feats li {
    background: var(--gray-100); color: var(--gray-700);
    padding: 6px 12px; border-radius: var(--r-pill);
    font-size: .78rem; font-weight: 500;
}
.pkg-feats i { color: var(--teal); margin-right: 4px; }
.pkg-stars { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray-500); margin-bottom: 20px; }
.pkg-stars i { color: var(--gold); font-size: .85rem; }
.pkg-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.pkg-price small { display: block; font-size: .8rem; color: var(--gray-500); text-decoration: line-through; }
.pkg-price strong { font-family: var(--f-display); font-size: 1.7rem; font-weight: 700; color: var(--ink); }

@media (max-width: 900px) {
    .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .section-head.split { grid-template-columns: 1fr; }
}

/* ==================================================
   OFERTAS — DARK SECTION
   ================================================== */
.deals {
    background: var(--grad-night);
    color: var(--cream);
    overflow: hidden;
}
.deals-bg { position: absolute; inset: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .4; animation: float 16s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: var(--coral); top: 10%; left: -100px; }
.orb-2 { width: 450px; height: 450px; background: var(--gold); bottom: 0; right: -100px; animation-delay: -5s; }
.orb-3 { width: 380px; height: 380px; background: var(--magenta); top: 40%; left: 40%; animation-delay: -10s; }

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

.countdown {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 36px;
}
.cd-box {
    background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-md);
    padding: 18px 24px; min-width: 90px;
}
.cd-num {
    display: block; font-family: var(--f-display);
    font-size: 2.4rem; font-weight: 700; line-height: 1;
    background: var(--grad-warm);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cd-lbl { font-size: .72rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .15em; margin-top: 6px; display: block; }
.cd-sep { font-family: var(--f-display); font-size: 2rem; color: rgba(255,255,255,.3); }

.deals-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}
.deal-card {
    position: relative; border-radius: var(--r-lg);
    overflow: hidden; min-height: 420px;
    display: flex; align-items: flex-end;
    transition: transform .5s var(--ease);
    transform-style: preserve-3d;
}
.deal-card:hover { transform: translateY(-6px); }
.deal-hero { min-height: 420px; }
.deal-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.deal-card:hover img { transform: scale(1.08); }
.deal-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,10,15,.92) 100%); }
.deal-off {
    position: absolute; top: 20px; left: 20px;
    background: var(--grad-fire); color: var(--paper);
    padding: 8px 16px; border-radius: var(--r-pill);
    font-weight: 700; font-size: .85rem;
    box-shadow: 0 8px 20px rgba(255,94,126,.4);
}
.deal-body { position: relative; z-index: 2; padding: 28px; color: var(--cream); width: 100%; }
.deal-loc { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.deal-body h3 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 600; margin-bottom: 8px; }
.deal-hero h3 { font-size: 2.2rem; }
.deal-body p { font-size: .9rem; opacity: .8; margin-bottom: 14px; }
.deal-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.dp-old { font-size: 1rem; opacity: .5; text-decoration: line-through; }
.dp-now { font-family: var(--f-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.deal-hero .dp-now { font-size: 2.6rem; }

@media (max-width: 900px) {
    .deals-grid { grid-template-columns: 1fr; }
    .deal-card { min-height: 320px; }
}

/* ==================================================
   TESTIMONIOS
   ================================================== */
.testimonials { background: var(--cream); }

.stats-strip {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; padding: 40px;
    background: var(--paper); border-radius: var(--r-lg);
    box-shadow: var(--sh-md); margin-bottom: 60px;
    border: 1px solid var(--gray-100);
}
.stat-item { text-align: center; position: relative; }
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -10px; top: 20%; height: 60%;
    width: 1px; background: var(--gray-100);
}
.stat-num {
    font-family: var(--f-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700; line-height: 1;
    background: var(--grad-warm);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plus {
    font-family: var(--f-display); font-size: 1.5rem; font-weight: 600;
    background: var(--grad-warm);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-item p { font-size: .85rem; color: var(--gray-500); margin-top: 6px; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
    background: var(--paper); border-radius: var(--r-lg);
    padding: 36px; position: relative;
    box-shadow: var(--sh-md);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
    border: 1px solid var(--gray-100);
    transform-style: preserve-3d;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.testi-quote {
    font-family: var(--f-display); font-size: 4rem; line-height: 1;
    color: var(--gold); opacity: .3; position: absolute; top: 24px; right: 28px;
}
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-card blockquote {
    font-size: 1rem; line-height: 1.7; color: var(--gray-700);
    margin-bottom: 28px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
    width: 52px; height: 52px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--gold);
}
.testi-author strong { display: block; font-size: .95rem; color: var(--ink); }
.testi-author span { font-size: .8rem; color: var(--gray-500); }
.testi-author i { color: var(--coral); }

.trust-row {
    display: flex; justify-content: center; align-items: center;
    gap: 30px; margin-top: 60px; flex-wrap: wrap;
    color: var(--gray-500); font-size: .9rem;
}
.trust-logos { display: flex; gap: 28px; }
.trust-logos span { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); }
.trust-logos i { color: var(--gold); }

@media (max-width: 900px) {
    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; }
    .stat-item:nth-child(2)::after { display: none; }
    .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ==================================================
   CTA FINAL
   ================================================== */
.cta-final { padding: 100px 0; background: var(--cream); }
.cta-card {
    background: var(--grad-night);
    border-radius: var(--r-xl);
    padding: 80px 60px;
    position: relative; overflow: hidden;
    text-align: center; color: var(--cream);
    box-shadow: var(--sh-xl);
    transform-style: preserve-3d;
}
.cta-orbs { position: absolute; inset: 0; overflow: hidden; }
.cta-card .orb-1 { width: 400px; height: 400px; background: var(--coral); top: -100px; left: -50px; }
.cta-card .orb-2 { width: 350px; height: 350px; background: var(--gold); bottom: -100px; right: -50px; animation-delay: -5s; }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600; line-height: 1.05; letter-spacing: -.03em;
    margin: 20px 0 16px;
}
.cta-inner p { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-form {
    display: flex; gap: 10px;
    background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    padding: 8px; border-radius: var(--r-pill);
    max-width: 500px; margin: 0 auto 30px;
}
.cta-form input {
    flex: 1; background: transparent; border: none; outline: none;
    padding: 12px 20px; color: var(--cream); font-family: inherit; font-size: .95rem;
}
.cta-form input::placeholder { color: rgba(255,255,255,.5); }
.cta-trust { display: inline-flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars img {
    width: 38px; height: 38px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--ink-2);
    margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }
.cta-trust span { font-size: .85rem; color: rgba(255,255,255,.7); }
.cta-trust strong { color: var(--cream); }

@media (max-width: 600px) {
    .cta-card { padding: 60px 28px; }
    .cta-form { flex-direction: column; border-radius: var(--r-md); }
}

/* ==================================================
   FOOTER
   ================================================== */
.footer {
    background: var(--ink); color: rgba(255,255,255,.6);
    padding: 80px 0 0; position: relative; overflow: hidden;
}
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px; padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative; z-index: 2;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-text { color: var(--cream); }
.footer-brand p { font-size: .9rem; max-width: 320px; margin-bottom: 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: var(--cream);
    display: grid; place-items: center; transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--grad-warm); color: var(--ink); transform: translateY(-3px); }
.footer-col h4 { color: var(--cream); font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.footer-col a { display: block; font-size: .9rem; margin-bottom: 10px; transition: all .3s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col p { font-size: .9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-col p i { color: var(--gold); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 0; flex-wrap: wrap; gap: 16px;
    font-size: .85rem; position: relative; z-index: 2;
}
.footer-pay { display: flex; gap: 14px; font-size: 1.7rem; color: rgba(255,255,255,.4); }
.footer-wordmark {
    position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(8rem, 22vw, 22rem);
    line-height: 1; letter-spacing: -.05em;
    color: rgba(255,255,255,.025);
    white-space: nowrap; pointer-events: none;
    z-index: 1;
}

@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
