/* ============================================================
   HAIM — más que destinos, experiencias
   Cinematic premium travel. Paleta derivada del logo.
   ============================================================ */

:root {
  /* Marca */
  --blue:      #2E8CF0;
  --blue-deep: #1B6FD6;
  --blue-soft: #6FB4FF;
  --red:       #E8453C;   /* acento mínimo, como el punto del logo */

  /* Neutros */
  --ink:       #1C2230;   /* carbón azulado */
  --ink-soft:  #4A5365;
  --ink-mute:  #8A93A6;
  --paper:     #FFFFFF;
  --cream:     #F4F6FA;   /* fondo claro */
  --cream-2:   #E9EEF6;

  /* Oscuro cinematográfico (hero, cta, footer) */
  --night:     #0C1320;
  --night-2:   #111B2E;
  --night-3:   #18243B;
  --on-night:  #EAF1FB;
  --on-night-mute: rgba(234,241,251,.62);

  --line:      rgba(28,34,48,.12);
  --line-night: rgba(234,241,251,.14);

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

  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif { font-family: "Fraunces", Georgia, serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Tipografía utilitaria ---------- */
.kicker, .section-eyebrow {
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
}
.section-eyebrow { margin-bottom: 1rem; }

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.01em;
  text-wrap: balance;
}
em { font-style: italic; color: var(--blue-deep); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* DEFENSIVA: split + reveal nunca invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* split words */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(.7em) rotate(2deg);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.split-word.in { opacity: 1; transform: none; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .92rem 1.7rem;
  border-radius: 100px;
  font-weight: 600; font-size: .96rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(46,140,240,.6);
}
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 16px 40px -10px rgba(46,140,240,.75); }
.btn-ghost {
  background: transparent; color: var(--on-night);
  border-color: var(--line-night);
}
.btn-ghost:hover { border-color: var(--on-night); background: rgba(255,255,255,.06); }

/* ============================================================
   SPLASH
   ============================================================ */
.splash {
  position: fixed; inset: 0; z-index: 999;
  background: var(--night);
  display: grid; place-items: center;
  animation: splashSafety .01s 4.6s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; transform: scale(1.04);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
.splash-inner { display: grid; justify-items: center; gap: 1.6rem; }
.splash-logo { width: clamp(150px, 32vw, 230px); animation: floatY 3s ease-in-out infinite;
  filter: brightness(0) invert(1); }
.splash-bar { width: 160px; height: 2px; background: var(--line-night); border-radius: 2px; overflow: hidden; }
.splash-bar span { display: block; height: 100%; width: 0; background: var(--blue);
  animation: load 2.4s var(--ease-out) forwards; }
@keyframes load { to { width: 100%; } }
@keyframes floatY { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-trail { position: fixed; inset: 0; z-index: 899; pointer-events: none;
  width: 100%; height: 100%; opacity: 0; transition: opacity .3s var(--ease-out); }
.cursor-trail.is-ready { opacity: 1; }
.cursor { position: fixed; top: 0; left: 0; z-index: 900; pointer-events: none;
  opacity: 0; transition: opacity .3s var(--ease-out); will-change: transform; }
.cursor.is-ready { opacity: 1; }
.cursor-plane {
  display: block;
  transform: translate(-50%, -50%) rotate(var(--ang, 0deg)) scale(var(--scl, 1));
  transition: filter .3s var(--ease);
  filter: drop-shadow(0 4px 7px rgba(20,90,170,.45));
}
.cursor.is-hover { --scl: 1.35; }
/* ocultar el cursor nativo cuando hay puntero fino (el JS dibuja el avión) */
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, textarea, select, [data-tilt], [data-magnetic], .dest-card, .globe-canvas { cursor: none; }
}
/* En táctil el JS no activa el avión (queda opacity:0); no se oculta con display
   para evitar que entornos que reportan "hover:none" tapen también el cursor. */
@media (hover: none) { .cursor-trail { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--pad);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-block: .55rem;
  box-shadow: 0 1px 0 rgba(28,34,48,.08), 0 12px 30px -22px rgba(28,40,70,.5);
}
.nav-brand { position: relative; display: inline-flex; }
.nav-logo { height: 38px; width: auto; transition: opacity .4s var(--ease); }
.nav-logo--white { filter: brightness(0) invert(1); } /* gris -> blanco puro sobre oscuro */
.nav-logo--color { position: absolute; inset: 0; opacity: 0; }
.nav.scrolled .nav-logo--white { opacity: 0; }
.nav.scrolled .nav-logo--color { opacity: 1; }
/* enlaces oscuros sobre la barra clara */
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-links a:not(.nav-cta)::after { background: var(--blue); }
.nav.scrolled .nav-cta { color: #fff; }
.nav.scrolled .nav-burger span { background: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--on-night); font-size: .95rem; font-weight: 500; position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px;
  background: var(--blue-soft); transition: width .35s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--blue); color: #fff !important; padding: .6rem 1.3rem;
  border-radius: 100px; transition: background .35s var(--ease), transform .35s var(--ease);
}
.nav-cta:hover { background: var(--blue-deep); }
.nav-active { color: var(--blue-soft) !important; }
.nav-active::after { width: 100% !important; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer;
  width: 30px; height: 22px; position: relative; }
.nav-burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--on-night);
  transition: transform .35s var(--ease), opacity .35s var(--ease); }
.nav-burger span:first-child { top: 4px; }
.nav-burger span:last-child { bottom: 4px; }

/* ============================================================
   HERO — VENTANA DE AVIÓN
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  background: var(--night);
  color: var(--on-night);
  display: flex; align-items: center;
  overflow: hidden;
  padding: 7rem var(--pad) 5rem;
}
/* fondo / slideshow de la portada */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease-out), transform 7s linear;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 1.4s var(--ease-out); transform: none !important; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,14,26,.80) 0%, rgba(8,14,26,.45) 55%, rgba(8,14,26,.20) 100%),
    linear-gradient(to top, rgba(8,14,26,.60) 0%, transparent 50%);
}
/* nombre del destino actual */
.hero-slide-name {
  position: absolute; bottom: 5rem; right: var(--pad);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(234,241,251,.55); font-weight: 600;
}
/* dots de navegación */
.hero-dots {
  position: absolute; bottom: 1.6rem; right: var(--pad);
  display: flex; gap: .45rem; align-items: center;
}
.hero-dots button {
  width: 6px; height: 6px; border-radius: 50%;
  border: none; background: rgba(234,241,251,.35);
  cursor: pointer; padding: 0;
  transition: background .3s, transform .3s;
}
.hero-dots button.is-active {
  background: #fff; transform: scale(1.4);
}
.hero-inner--globe {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}

/* ---- Globo 3D interactivo ---- */
.globe-wrap { position: relative; }
.globe-stage {
  position: relative; width: 100%; aspect-ratio: 1; max-width: 580px; margin-inline: auto;
  opacity: 0; transition: opacity .8s var(--ease-out);
}
.globe-stage.globe-ready { opacity: 1; }
.globe-stage::before {
  content: ""; position: absolute; inset: -6%; z-index: 0;
  background: radial-gradient(circle at 50% 48%, rgba(46,140,240,.4), transparent 60%);
  filter: blur(26px); pointer-events: none;
}
.globe-canvas { position: relative; z-index: 1; width: 100%; height: 100%;
  display: block; cursor: grab; touch-action: none; }
.globe-labels { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.globe-label {
  position: absolute; top: 0; left: 0;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--on-night); white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,.95); transition: opacity .3s var(--ease);
}
.globe-card {
  position: absolute; top: 0; left: 0; z-index: 3;
  width: 184px; transform: translate(-50%, calc(-100% - 24px));
  background: rgba(9,15,27,.92); border: 1px solid var(--line-night);
  border-radius: 14px; overflow: hidden; pointer-events: none;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.globe-card[hidden] { display: none; }
.globe-card img { width: 100%; height: 98px; object-fit: cover; }
.globe-card .gc-body { padding: .6rem .8rem .75rem; }
.globe-card span { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-soft); }
.globe-card h4 { font-size: .98rem; font-weight: 500; color: var(--on-night); margin-top: .15rem; }
/* ficha grande al hacer clic en una maravilla */
.globe-detail {
  position: absolute; left: 50%; bottom: 2%; transform: translateX(-50%);
  width: min(94%, 370px); display: flex; gap: .85rem; padding: .85rem;
  background: rgba(9,15,27,.95); border: 1px solid var(--line-night);
  border-radius: 16px; box-shadow: 0 26px 64px -22px rgba(0,0,0,.9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 6; animation: gdIn .4s var(--ease-out);
}
.globe-detail[hidden] { display: none; }
.globe-detail > img { width: 96px; height: 96px; object-fit: cover; border-radius: 11px; flex: none; }
.gd-body { display: flex; flex-direction: column; gap: .18rem; min-width: 0; }
.gd-body span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-soft); }
.gd-body h4 { font-size: 1.08rem; font-weight: 500; color: var(--on-night); }
.gd-body p { font-size: .82rem; color: var(--on-night-mute); margin-bottom: .5rem; }
.gd-cta { align-self: flex-start; padding: .5rem 1.05rem; font-size: .85rem; }
.gd-close { position: absolute; top: .3rem; right: .55rem; background: none; border: 0;
  color: var(--on-night-mute); font-size: 1.4rem; line-height: 1; cursor: pointer; padding: .2rem; }
.gd-close:hover { color: var(--on-night); }
@keyframes gdIn { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }

.globe-hint {
  text-align: center; margin-top: 1.1rem; font-size: .66rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--on-night-mute);
}
.globe-stage:not(.globe-ready) ~ .globe-hint { opacity: 0; }
/* Fallback sin WebGL (visible por defecto; el globo lo oculta al iniciar) */
.globe-fallback {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1rem;
}
.globe-wrap.globe-on .globe-fallback { display: none; }
.globe-fallback li { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; }
.globe-fallback img { width: 100%; height: 100%; object-fit: cover; }
.globe-fallback li::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,14,26,.82)); }
.globe-fallback span { position: absolute; left: .6rem; right: .6rem; bottom: .5rem; z-index: 2;
  font-size: .7rem; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.9); }
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
}
.hero-copy { max-width: 40ch; }
.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  font-weight: 400; line-height: 1; letter-spacing: -.02em;
  margin: 1.2rem 0 1.5rem;
  text-shadow: 0 2px 34px rgba(0,0,0,.45);
}
.hero-title em { color: var(--blue-soft); }
.hero-sub { color: rgba(234,241,251,.82); font-size: 1.08rem; max-width: 42ch;
  text-shadow: 0 1px 18px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-slide-meta {
  display: flex; align-items: center; gap: .6rem; margin-top: 2.4rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--on-night-mute);
}
.hero-slide-meta b { color: var(--blue-soft); font-weight: 600; }
.hero-slide-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* indicadores del slideshow */
.hero-dots {
  position: absolute; z-index: 2; bottom: 2.1rem; right: var(--pad);
  display: flex; gap: .55rem;
}
.hero-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.4);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.hero-dots button.is-active { background: var(--blue-soft); transform: scale(1.35); }

.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--on-night-mute);
}
.hero-scroll span {
  width: 22px; height: 36px; border: 1.5px solid var(--on-night-mute); border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 3px; background: var(--blue-soft);
  animation: scrollDot 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 6px; } 40% { opacity: 1; } 80% { opacity: 0; top: 18px; } 100% { opacity: 0; } }

/* ============================================================
   INTRO / MANIFIESTO
   ============================================================ */
.intro {
  max-width: 1000px; margin-inline: auto;
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  text-align: center;
}
.intro-statement {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 300; line-height: 1.28; letter-spacing: -.01em;
  color: var(--ink); margin-top: 1.4rem;
  text-wrap: balance;
}

/* ============================================================
   SECCIONES genéricas
   ============================================================ */
.section-head { max-width: var(--maxw); margin: 0 auto 3rem; padding-inline: var(--pad); }

/* EXPERIENCIAS — acordeón horizontal */
.experiences { padding-block: clamp(2rem,5vw,4rem) 0; background: var(--night); }
.experiences .section-head { padding-bottom: 0; }
.experiences .section-eyebrow { color: var(--blue-soft); }
.experiences .section-title { color: var(--on-night); }

/* Acordeón */
.exp-accordion {
  display: flex;
  height: 560px;
  gap: 0;
  margin-top: 2.5rem;
  overflow: hidden;
}
.exp-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex .7s var(--ease-out);
}
.exp-panel.is-open { flex: 4; }

.exp-panel-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease-out), filter .6s;
}
.exp-panel:hover .exp-panel-bg,
.exp-panel.is-open .exp-panel-bg { transform: scale(1.04); filter: saturate(1.15); }

.exp-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,8,20,.95) 0%, rgba(4,8,20,.4) 50%, transparent 100%);
  transition: background .5s;
}
.exp-panel.is-open .exp-panel-overlay {
  background: linear-gradient(to top, rgba(4,8,20,.92) 0%, rgba(4,8,20,.3) 55%, transparent 100%);
}

/* Etiqueta lateral (visible cuando está cerrado) */
.exp-panel-label {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap; z-index: 2;
  display: flex; align-items: center; gap: .7rem;
  transition: opacity .4s;
}
.exp-panel.is-open .exp-panel-label { opacity: 0; pointer-events: none; }
.exp-panel-num {
  font-family: "Fraunces", serif; font-size: 1rem; color: var(--blue-soft);
  font-style: italic;
}
.exp-panel-title-side {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(234,241,251,.7); font-weight: 600;
}

/* Contenido expandido */
.exp-panel-content {
  position: absolute; left: 2.4rem; right: 2.4rem; bottom: 2.4rem; z-index: 3;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s .15s var(--ease-out), transform .5s .15s var(--ease-out);
  pointer-events: none;
}
.exp-panel.is-open .exp-panel-content {
  opacity: 1; transform: none; pointer-events: auto;
}
.exp-panel-content .exp-panel-num {
  display: block; font-size: 1.1rem; margin-bottom: .5rem;
}
.exp-panel-content h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 400; color: #fff; line-height: 1.1;
  margin-bottom: .9rem;
}
.exp-panel-content p {
  color: rgba(234,241,251,.78); font-size: .96rem; line-height: 1.65;
  max-width: 44ch; margin-bottom: 1.4rem;
}
.exp-panel-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: #fff;
  padding: .65rem 1.4rem; border-radius: 100px;
  font-size: .88rem; font-weight: 600;
  text-decoration: none;
  transition: background .3s, transform .3s;
}
.exp-panel-btn:hover { background: var(--blue-deep); transform: translateY(-2px); }

/* Línea divisoria entre paneles */
.exp-panel + .exp-panel::before {
  content: ""; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(234,241,251,.12); z-index: 4;
}

/* MARQUEE */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.4rem;
  background: var(--cream-2); }
.marquee-track { display: inline-flex; gap: 1.4rem; white-space: nowrap;
  font-family: "Fraunces", serif; font-style: italic; font-size: clamp(1.4rem,3vw,2.2rem);
  color: var(--ink); will-change: transform; }
.marquee-track span { color: var(--ink); }
.marquee-track span:nth-child(even) { color: var(--blue); }

/* DESTINOS — showcase interactivo */
.destinations { background: var(--night); color: var(--on-night); overflow: hidden; }

/* Layout principal split */
.ds-showcase {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 100vh;
}

/* Lista izquierda */
.ds-list {
  display: flex; flex-direction: column;
  padding: clamp(3rem,6vw,5rem) clamp(2rem,4vw,4rem);
  border-right: 1px solid var(--line-night);
  background: var(--night-2);
  overflow-y: auto;
}
.ds-list-head { margin-bottom: 2.5rem; }
.ds-list-head .section-eyebrow { color: var(--blue-soft); margin-bottom: .6rem; }
.ds-list-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400; line-height: 1.2; color: var(--on-night);
}

/* Nav de items */
.ds-nav { display: flex; flex-direction: column; gap: 0; }
.ds-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 1.2rem;
  border: none; background: none; cursor: pointer;
  border-bottom: 1px solid var(--line-night);
  text-align: left;
  transition: background .25s, padding-left .3s var(--ease-out);
  border-radius: 8px;
}
.ds-item:first-child { border-top: 1px solid var(--line-night); }
.ds-item:hover { background: rgba(46,140,240,.07); padding-left: 1.6rem; }
.ds-item.is-active {
  background: rgba(46,140,240,.12);
  border-left: 3px solid var(--blue);
  padding-left: 1.6rem;
}
.ds-item-num {
  font-family: "Fraunces", serif; font-size: .85rem;
  color: var(--blue-soft); font-style: italic; min-width: 2ch;
}
.ds-item-name {
  font-size: 1rem; font-weight: 600; color: var(--on-night); flex: 1;
}
.ds-item-country {
  font-size: .75rem; color: var(--on-night-mute);
  letter-spacing: .06em; text-transform: uppercase;
}
.ds-item.is-active .ds-item-name { color: #fff; }

/* Panel visual derecho */
.ds-visual {
  position: relative; overflow: hidden;
}
.ds-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s var(--ease-out), transform 8s linear;
}
.ds-img.is-active { opacity: 1; transform: scale(1); }

/* Overlay degradado */
.ds-visual::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(8,14,26,.65) 0%, transparent 50%),
    linear-gradient(to top, rgba(8,14,26,.85) 0%, transparent 55%);
}

/* Info sobre la imagen */
.ds-visual-info {
  position: absolute; left: 2.4rem; right: 2.4rem; bottom: 2.8rem; z-index: 2;
}
.ds-country {
  display: block;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-soft); font-weight: 700; margin-bottom: .6rem;
}
.ds-name {
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400; color: #fff; line-height: 1;
  margin-bottom: .8rem;
}
.ds-desc {
  font-size: 1rem; color: rgba(234,241,251,.78);
  max-width: 44ch; line-height: 1.6; margin-bottom: 1.6rem;
}
.ds-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue); color: #fff;
  padding: .75rem 1.6rem; border-radius: 100px;
  font-size: .9rem; font-weight: 600; text-decoration: none;
  transition: background .3s, transform .3s;
}
.ds-btn:hover { background: var(--blue-deep); transform: translateY(-2px); }

/* Contador */
.ds-counter {
  position: absolute; top: 2rem; right: 2rem; z-index: 2;
  font-size: .75rem; letter-spacing: .14em; color: var(--on-night-mute);
  font-weight: 600;
}
.ds-counter span { color: var(--on-night); font-size: 1.1rem; font-family: "Fraunces", serif; }

.dest-grid {
  max-width: 100%; margin-inline: auto;
  padding: 2.5rem clamp(1rem,4vw,3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 520px 400px 320px;
  gap: 1rem;
}

/* Hero: ocupa 2 cols × 1 fila */
.dest-card--hero { grid-column: span 2; }

/* Tall: altura estándar de la fila 2 */
.dest-card--tall { /* usa la fila 2 completa */ }

/* Panorama: ocupa las 3 cols */
.dest-card--panorama { grid-column: span 3; }

.dest-card {
  position: relative; border-radius: 20px; overflow: hidden;
  cursor: pointer;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
  will-change: transform;
}
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s var(--ease);
}
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,8,18,.92) 0%, rgba(4,8,18,.3) 50%, transparent 100%);
  transition: background .5s;
}
.dest-card:hover img { transform: scale(1.07); filter: saturate(1.2) brightness(1.06); }
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 40px 80px -24px rgba(0,0,0,.8); }
.dest-card:hover::after {
  background: linear-gradient(to top, rgba(4,8,18,.96) 0%, rgba(4,8,18,.4) 55%, transparent 100%);
}

.dest-meta {
  position: absolute; left: 1.8rem; right: 1.8rem; bottom: 1.6rem; z-index: 2; color: #fff;
}
.dest-rank {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-soft); margin-bottom: .5rem;
}
.dest-meta h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500; line-height: 1.1; margin-bottom: .25rem;
}
.dest-meta > span {
  display: block; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(234,241,251,.6);
  margin-bottom: .5rem;
}
.dest-meta p {
  font-size: .9rem; color: rgba(234,241,251,.75); line-height: 1.5;
  max-width: 36ch;
  opacity: 0; transform: translateY(6px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.dest-card:hover .dest-meta p { opacity: 1; transform: none; }
.dest-meta h3 { font-size: 1.5rem; font-weight: 500; }
.dest-meta span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-soft); }
.dest-meta p { font-size: .92rem; color: rgba(255,255,255,.85); margin-top: .3rem;
  opacity: 0; max-height: 0; transition: opacity .5s var(--ease), max-height .5s var(--ease); }
.dest-card:hover .dest-meta p { opacity: 1; max-height: 3em; }

/* POR QUÉ HAIM */
.why { background: var(--night); color: var(--on-night); padding-block: clamp(5rem,10vw,8rem); }
.why-inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,6rem); align-items: center;
}
.why .section-title { color: var(--on-night); }
.why-text { color: var(--on-night-mute); margin-top: 1.4rem; font-size: 1.05rem; max-width: 42ch; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem 2rem; }
.stat { border-top: 1px solid var(--line-night); padding-top: 1.1rem; }
.stat-num {
  display: block; font-family: "Fraunces", serif; font-size: clamp(2.4rem,5vw,3.4rem);
  font-weight: 400; color: var(--blue-soft); line-height: 1;
}
.stat-label { color: var(--on-night-mute); font-size: .9rem; }

/* TESTIMONIOS */
.testimonials { padding-block: clamp(4rem,9vw,7rem); }
.tst-grid {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad);
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem;
}
.tst-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1.4rem;
}
.tst-card blockquote {
  font-family: "Fraunces", serif; font-size: 1.15rem; line-height: 1.5;
  font-style: italic; color: var(--ink); position: relative;
}
.tst-card blockquote::before { content: “\201C”; color: var(--blue); font-size: 2.4rem;
  line-height: 0; vertical-align: -.4em; margin-right: .15em; }
.tst-card figcaption { margin-top: auto; }
.tst-card strong { display: block; font-weight: 600; }
.tst-card span { color: var(--ink-mute); font-size: .85rem; }

/* CTA / CONTACTO — nuevo diseño premium split */
.cta { position: relative; overflow: hidden; color: var(--on-night); min-height: 100vh; display: flex; align-items: center; background: var(--night); }

/* Fondo aéreo */
.cta-bg-new { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.8s var(--ease-out), transform 10s linear;
  filter: saturate(1.35) brightness(1.1);
}
.cta-bg-img.is-active {
  opacity: 1;
  transform: scale(1.0);
}

/* Etiqueta maravilla */
.cta-wonder-label {
  position: absolute; bottom: 3.8rem; right: 2rem; z-index: 5;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 600;
  transition: opacity .5s;
}

/* Dots indicadores */
.cta-slide-dots {
  position: absolute; bottom: 2rem; right: 2rem;
  display: flex; gap: .45rem; z-index: 5; align-items: center;
}
.cta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.3); cursor: pointer;
  transition: background .4s, transform .4s;
}
.cta-dot.is-active {
  background: #fff; transform: scale(1.5);
}
.cta-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(4,8,20,.82) 0%, rgba(4,8,20,.45) 50%, rgba(4,8,20,.1) 100%),
    linear-gradient(to top, rgba(4,8,20,.55) 0%, transparent 45%);
}

/* Layout split */
.cta-split {
  position: relative; z-index: 2;
  width: 100%; max-width: 1300px; margin-inline: auto;
  padding: clamp(5rem,10vw,8rem) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,7rem);
  align-items: center;
}

/* Lado copy */
.cta-copy .section-eyebrow { color: var(--blue-soft); margin-bottom: 1rem; }
.cta-title {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.05;
  color: #fff; margin-bottom: 1.4rem;
}
.cta-sub {
  color: var(--on-night-mute); font-size: 1.05rem; line-height: 1.75;
  max-width: 44ch; margin-bottom: 2.2rem;
}
.cta-promises { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.cta-promises li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; color: var(--on-night-mute);
}
.cta-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(46,140,240,.2); border: 1px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-soft); font-size: .7rem; font-weight: 700; flex-shrink: 0;
}

/* Formulario glass */
.cta-glass {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: clamp(2rem,4vw,3rem);
  box-shadow: 0 32px 80px -24px rgba(0,0,0,.5);
}
.cta-form-title {
  font-family: "Fraunces", serif; font-size: 1.5rem;
  font-weight: 400; color: #fff; margin-bottom: 1.8rem;
}
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .cta-form textarea {
  width: 100%; padding: 1.1rem 1.1rem .5rem; font: inherit; color: #fff;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; transition: border .3s, background .3s;
}
.cta-form textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.field input:focus, .cta-form textarea:focus {
  outline: none; border-color: var(--blue-soft); background: rgba(255,255,255,.12);
}
.field label {
  position: absolute; left: 1.1rem; top: .95rem; color: rgba(234,241,251,.5);
  pointer-events: none; transition: transform .25s, font-size .25s, color .25s;
  font-size: .95rem;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label {
  transform: translateY(-.7rem); font-size: .65rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue-soft);
}
.cta-submit {
  grid-column: 1/-1;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: 1rem; margin-top: .4rem;
  background: #25D366; color: #fff; border: none; cursor: pointer;
  border-radius: 14px; font: 600 1rem "Manrope", sans-serif;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 8px 28px -8px rgba(37,211,102,.5);
}
.cta-submit:hover { background: #1ebe59; transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(37,211,102,.6); }
.btn-check { width: 20px; height: 20px; display: none; }
.cta-form.is-sent .btn-label { display: none; }
.cta-form.is-sent .btn-check { display: block; }
.cta-success { grid-column: 1/-1; text-align: center; color: var(--blue-soft);
  font-weight: 500; opacity: 0; max-height: 0; transition: opacity .5s var(--ease); }
.cta-form.is-sent .cta-success { opacity: 1; max-height: 3em; }

/* FOOTER */
.footer { background: var(--night-2); color: var(--on-night); padding: clamp(3.5rem,7vw,5rem) var(--pad) 2rem; }
.footer-top { max-width: var(--maxw); margin: 0 auto 2.5rem; display: grid; gap: .8rem; justify-items: start; }
.footer-logo { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer-tag { font-family: "Fraunces", serif; font-style: italic; color: var(--on-night-mute); }
.footer-cols {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 2rem;
  border-top: 1px solid var(--line-night); padding-top: 2.5rem;
}
.footer-cols h4 { font-family: "Manrope"; font-size: .78rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue-soft); margin-bottom: 1rem; font-weight: 600; }
.footer-cols a { display: block; color: var(--on-night-mute); padding: .3rem 0;
  transition: color .3s var(--ease); }
.footer-cols a:hover { color: var(--on-night); }
.footer-bottom {
  max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--line-night);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--on-night-mute);
}

/* ---------- TEXTAREA en formulario ---------- */
.cta-form textarea {
  width: 100%; resize: vertical; min-height: 90px;
  font-family: inherit; font-size: inherit;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-night);
  border-radius: 10px; padding: 1rem 1.1rem;
  color: var(--on-night); outline: none;
  transition: border-color .25s;
}
.cta-form textarea:focus { border-color: var(--blue); }
.cta-form .field--full label { pointer-events: none; }

/* ---------- Botón WhatsApp en formulario ---------- */
.btn-wa {
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
}
.btn-wa:hover { background: #1ebe59; }

/* ---------- BOTÓN FLOTANTE WHATSAPP ---------- */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 900;
  display: flex; align-items: center; gap: .6rem;
  background: #25D366; color: #fff;
  padding: .75rem 1.2rem .75rem .9rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  font-family: "Manrope", sans-serif;
  font-size: .9rem; font-weight: 600;
  text-decoration: none;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
  animation: none;
}
.wa-float-label { white-space: nowrap; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.75); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero { align-items: flex-start; min-height: auto; padding-bottom: 3.5rem; }
  .hero-inner--globe { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: 100%; order: 1; }
  .globe-wrap { order: 2; }
  .globe-stage { max-width: 420px; }
  .why-inner { grid-template-columns: 1fr; }
  .exp-accordion { height: 420px; }
  .exp-panel.is-open { flex: 3; }
  .tst-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .ds-showcase { grid-template-columns: 1fr; min-height: auto; }
  .ds-visual { min-height: 105vw; position: relative; order: 2; }
  .ds-list { border-right: none; order: 1; padding-block: 3rem; }
  .ds-name { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: .5rem; }
  .ds-desc { font-size: .92rem; max-width: 100%; margin-bottom: 1.2rem; }
  .ds-visual-info { left: 1.5rem; right: 1.5rem; bottom: 1.8rem; }
  .ds-counter { top: 1.2rem; right: 1.2rem; }
  .dest-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .dest-card--hero, .dest-card--panorama { grid-column: span 2; aspect-ratio: 16/9; }
  .dest-card--tall { aspect-ratio: 4/3; }
  .dest-card { min-height: 280px; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    height: 100vh; height: 100dvh; z-index: 205;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem;
    background: rgba(12,19,32,.97); backdrop-filter: blur(16px);
    transform: translateX(100%); transition: transform .45s var(--ease-out); }
  .nav-links a { font-size: 1.3rem; }
  /* panel móvil oscuro: enlaces e ícono siempre claros */
  .nav.scrolled .nav-links a { color: var(--on-night); }
  body.menu-open .nav.scrolled .nav-burger span { background: var(--on-night); }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-burger { display: block; z-index: 210; }
  body.menu-open .nav-burger span:first-child { transform: translateY(6px) rotate(45deg); }
  body.menu-open .nav-burger span:last-child { transform: translateY(-6px) rotate(-45deg); }
}
/* El avión y la estela se ocultan solo en dispositivos táctiles (puntero grueso) */
@media (pointer: coarse) {
  .cursor, .cursor-trail { display: none; }
}
@media (max-width: 540px) {
  /* Acordeón experiencias vertical */
  .exp-accordion { flex-direction: column; height: auto; gap: .6rem; }
  .exp-panel { flex: none; height: 76px; border-radius: 16px; }
  .exp-panel.is-open { height: 340px; }
  .exp-panel + .exp-panel::before { display: none; }
  .exp-panel-label { transform: none; left: 1.4rem; bottom: auto; top: 50%; transform: translateY(-50%); }
  .exp-panel.is-open .exp-panel-label { opacity: 0; }
  .exp-panel-content { left: 1.4rem; right: 1.4rem; bottom: 1.4rem; }
  .exp-panel-content h3 { font-size: 1.5rem; }
  .exp-panel-content p { font-size: .9rem; margin-bottom: 1rem; }

  /* Destinos grid fallback (oculto, ya usa showcase) */
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card, .dest-card--hero, .dest-card--tall, .dest-card--panorama { grid-column: auto; min-height: 260px; aspect-ratio: 4/3; }

  /* CTA contacto en columna */
  .cta { min-height: auto; }
  .cta-split { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 4rem; }
  .cta-form { grid-template-columns: 1fr; }
  .cta-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .cta-glass { padding: 1.6rem; border-radius: 22px; }
  .cta-slide-dots { bottom: 1.2rem; right: 1.2rem; }
  .cta-wonder-label { bottom: 2.6rem; right: 1.2rem; font-size: .65rem; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; }

  /* Tipografía general más contenida */
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* Botón WhatsApp flotante compacto */
  .wa-float { bottom: 1.1rem; right: 1.1rem; padding: .65rem 1rem .65rem .8rem; font-size: .82rem; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* Pantallas muy pequeñas */
@media (max-width: 380px) {
  .footer-cols { grid-template-columns: 1fr; }
  .wa-float-label { display: none; }
  .wa-float { padding: .7rem; border-radius: 50%; }
}

/* Solo gateamos lo intrusivo */
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; transform: none; }
  .splash-logo { animation: none; }
}

/* ============================================================
   FAQ — Preguntas frecuentes
   ============================================================ */
.faq { padding-block: clamp(4rem,8vw,7rem); background: var(--cream); }
.faq-list {
  max-width: 820px; margin-inline: auto; padding-inline: var(--pad);
  display: flex; flex-direction: column; gap: .9rem;
}
.faq-item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: var(--blue); box-shadow: 0 18px 40px -24px rgba(28,40,70,.25); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.3rem 1.6rem;
  font-family: "Manrope", sans-serif; font-size: 1.05rem; font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.6rem; font-weight: 300; color: var(--blue);
  line-height: 1; transition: transform .3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary { color: var(--blue); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-answer { padding: 0 1.6rem 1.4rem; }
.faq-answer p { color: var(--ink-soft); line-height: 1.7; font-size: .98rem; }
