/* ============================================================
   SAE · Servicios Aéreos Estrella — style.css
   ------------------------------------------------------------
   TABLA DE CONTENIDOS
   1. Tokens (:root)
   2. Reset y base
   3. Skip-link
   4. Header (.header)
   5. Menú móvil (.header__toggle / .header__nav)
   6. Hero (.hero)
   7. KPIs del hero (.hero__kpis)
   8. Utilidades y estados (.is-*)
   9. Motion / prefers-reduced-motion
   10. @media print
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* color — paleta SAE: navy de aviación + dorado cálido */
  --navy-deep: oklch(0.18 0.03 250);       /* fondo principal */
  --navy: oklch(0.24 0.035 250);
  --accent: oklch(0.87 0.03 235);          /* acento acero claro */
  --accent-deep: oklch(0.78 0.04 235);
  --accent-blue: oklch(0.55 0.15 255);
  --surface: var(--navy-deep);
  --line: color-mix(in oklch, white 18%, transparent);
  --line-strong: color-mix(in oklch, white 34%, transparent);
  /* superficie clara (secciones sobre blanco cálido) */
  --surface-light: oklch(0.96 0.004 90);
  --ink: oklch(0.22 0.02 250);
  --ink-mid: oklch(0.42 0.015 250);
  --ink-faint: oklch(0.56 0.014 250);
  --line-dark: color-mix(in oklch, var(--ink) 14%, transparent);
  /* texto */
  --text-clear: oklch(0.97 0.005 90);
  --text-mid: oklch(0.85 0.01 90);
  --text-faint: oklch(0.72 0.015 90);
  /* tipografía */
  --font-display: "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  /* layout */
  --radius: 12px;
  --pad-x: clamp(20px, 4vw, 40px);
  --maxw: none;
}

/* ---------- 2. Reset y base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--text-clear);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
p { text-wrap: pretty; }
a { color: var(--text-clear); }
a:not([class]):hover { color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- 3. Skip-link ---------- */
.skip-link {
  position: absolute; left: var(--pad-x); top: -48px;
  z-index: 100; padding: 12px 20px;
  background: var(--accent); color: var(--navy-deep);
  font-weight: 600; text-decoration: none; border-radius: 0 0 12px 12px;
  transition: top 0.2s ease;
}
.skip-link:focus-visible { top: 0; color: var(--navy-deep); }

/* ---------- 4. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 10;
}
.header__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header__pill {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: color-mix(in oklch, white 8%, transparent);
  border: 1px solid color-mix(in oklch, white 12%, transparent);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header__divider {
  width: 1px; height: 26px; margin: 0 8px;
  background: var(--line);
}
.header__logo { flex: none; display: block; padding: 4px 6px; }
.header__logo img { width: 104px; height: 36px; object-fit: contain; }
.header__nav { margin: 0; }
.header__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px;
}
.header__link {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.01em; text-decoration: none; color: var(--text-mid);
  border-radius: 10px;
}
.header__link:hover { background: color-mix(in oklch, white 7%, transparent); }
.header__aside { display: flex; align-items: center; gap: 20px; }
.header__lang {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--text-faint); display: inline-flex; align-items: center; min-height: 44px;
  text-decoration: none;
}
.header__lang:hover { }
.langsel {
  display: inline-flex; align-items: center; gap: 2px;
  padding: 3px;
  background: color-mix(in oklch, white 8%, transparent);
  border: 1px solid color-mix(in oklch, white 12%, transparent);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.langsel__seg {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; min-height: 32px; padding: 0 12px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--text-faint); text-decoration: none;
  border-radius: 9px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.langsel__seg.is-active {
  color: var(--text-clear);
  background: color-mix(in oklch, white 14%, transparent);
}
.header.is-on-light .langsel {
  background: color-mix(in oklch, var(--ink) 7%, transparent);
  border-color: color-mix(in oklch, var(--ink) 18%, transparent);
}
.header.is-on-light .langsel__seg { color: var(--ink-mid); }
.header.is-on-light .langsel__seg.is-active {
  color: var(--ink);
  background: color-mix(in oklch, var(--ink) 14%, transparent);
}
.header__cta {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 0 22px;
  background: var(--text-clear); color: var(--navy-deep);
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; text-decoration: none;
  border-radius: 999px;
}

/* Header sobre secciones claras (.is-on-light la alterna JS) */
.header.is-on-light .header__pill {
  background: color-mix(in oklch, var(--navy-deep) 88%, transparent);
  border-color: color-mix(in oklch, var(--ink) 20%, transparent);
}
.header.is-on-light .header__lang { color: var(--ink-mid); }
.header.is-on-light .header__lang:hover { }
.header.is-on-light .header__cta { background: var(--navy-deep); color: var(--text-clear); }
.header__pill, .header__cta { transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease; }

/* ---------- 5. Menú móvil ---------- */
.header__toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--line-strong); border-radius: 10px;
  cursor: pointer;
}
.header__toggle-bar {
  display: block; height: 2px; width: 100%;
  background: var(--text-clear);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] .header__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .header__toggle { display: flex; margin-left: 4px; }
  .header__lang { display: none; }
  .langsel { display: none; }
  .header__cta { display: none; }
  .header__divider { display: none; }
  .header__pill { flex: 1; justify-content: space-between; }
  .header__nav {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    margin: 0; padding: 8px 16px 16px;
    background: color-mix(in oklch, var(--navy-deep) 82%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid color-mix(in oklch, white 12%, transparent);
    border-radius: 16px;
    display: none;
  }
  .header__nav.is-open { display: block; }
  .header__list { flex-direction: column; gap: 0; }
  .header__link { width: 100%; min-height: 48px; border-bottom: 1px solid var(--line); }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(120px, 15vh, 180px) var(--pad-x) clamp(40px, 5vw, 72px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--navy-deep); }
.hero__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  border: 0; pointer-events: none;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, color-mix(in oklch, var(--navy-deep) 88%, transparent) 0%, transparent 45%),
    linear-gradient(to right, color-mix(in oklch, var(--navy-deep) 62%, transparent) 0%, transparent 55%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.hero__content {
  display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
}
.hero__kicker {
  margin: 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.hero__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.98; letter-spacing: -0.025em;
  max-width: 14ch; text-wrap: balance;
}
.hero__title-dim { display: block; color: var(--text-mid); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
body.anim-ready .hero__kicker,
body.anim-ready .hero__title,
body.anim-ready .hero__sub,
body.anim-ready .hero__actions { opacity: 0; animation: fhRise 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
body.anim-ready .hero__kicker { animation-delay: 0.2s; }
body.anim-ready .hero__title { animation-delay: 0.5s; }
body.anim-ready .hero__sub { animation-delay: 0.9s; }
body.anim-ready .hero__actions { animation-delay: 1.2s; }
@media (prefers-reduced-motion: reduce) {
  body.anim-ready .hero__kicker,
  body.anim-ready .hero__title,
  body.anim-ready .hero__sub,
  body.anim-ready .hero__actions { opacity: 1; animation: none; }
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 56px; padding: 0 10px 0 28px;
  background: var(--text-clear); color: var(--navy-deep);
  font-family: var(--font-sans); font-size: 16px; font-weight: 600;
  letter-spacing: 0.01em; text-decoration: none;
  border-radius: 999px;
}
.hero__cta svg { flex: none; }
.hero__cta-arrow {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; margin-left: 6px;
  background: var(--navy-deep); color: var(--text-clear); border-radius: 50%;
}
.hero__cta-arrow svg { width: 16px; height: 16px; }
.hero__cta--ghost {
  background: transparent; color: var(--text-clear);
  border: 1px solid var(--line-strong);
  padding-right: 10px;
}
.hero__cta--ghost .hero__cta-arrow { background: transparent; color: var(--text-clear); border: 1px solid currentColor; }
.hero__card {
  flex: none; width: min(340px, 40vw);
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px; text-decoration: none;
  border-radius: 16px;
  background: color-mix(in oklch, var(--navy-deep) 55%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in oklch, white 14%, transparent);
}
.hero__card-kicker {
  margin: 0;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.hero__card-text { margin: 0; font-size: 15px; line-height: 1.5; color: var(--text-clear); text-wrap: pretty; }
.hero__card-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-top: 2px;
  border: 1px solid var(--line-strong); border-radius: 8px; color: var(--text-clear);
}
.hero__card-arrow svg { width: 15px; height: 15px; }
@media (max-width: 860px) {
  .hero__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero__card { width: min(420px, 100%); }
}

/* ---------- 7b. Servicios (.services) ---------- */
.services {
  background: var(--surface-light);
  color: var(--ink);
}
.services__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 40px;
}
.services__lead { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.services__kicker {
  margin: 6px 0 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mid);
  display: flex; align-items: baseline; gap: 12px;
}
.services__kicker::before { content: "+"; font-size: 16px; }
.services__statement {
  margin: 0;
  color: #152537;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.18; letter-spacing: -0.02em;
  text-wrap: pretty;
}
.services__grid {
  grid-column: 1 / -1;
  margin-top: clamp(40px, 6vw, 96px);
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  list-style: none; padding: 0 0 10px;
}
.services__grid::-webkit-scrollbar { display: none; }
.services__item {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  border: 1px solid var(--line-dark); border-radius: 20px;
  background: color-mix(in oklch, var(--ink) 3%, transparent);
  padding: 20px;
  display: flex; flex-direction: column; gap: 18px;
}
.services__controls {
  display: flex; gap: 12px;
}
.services__arrow {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: none; color: var(--ink);
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.services__arrow:hover { background: color-mix(in oklch, var(--ink) 6%, transparent); }
.services__arrow svg { width: 18px; height: 18px; }
.services__ph {
  width: 100%; aspect-ratio: 16 / 10;
  border: 1px solid var(--line-dark); border-radius: 18px;
  margin-top: 6px;
  background: repeating-linear-gradient(-45deg,
    color-mix(in oklch, var(--ink) 5%, transparent) 0 14px,
    transparent 14px 28px);
  display: flex; align-items: center; justify-content: center;
}
.services__ph { overflow: hidden; }
.services__ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ground__ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.legs__ph { overflow: hidden; }
.legs__ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reserva__ph { overflow: hidden; }
.reserva__ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.services__ph span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-mid); padding: 0 12px; text-align: center;
}
.services__plus {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklch, var(--ink) 7%, transparent);
  font-size: 20px; font-weight: 400; line-height: 1;
  color: var(--ink);
}
.services__name {
  margin: 10px 0 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px); line-height: 1.2; letter-spacing: -0.01em;
}
.services__desc {
  margin: 0;
  font-size: 16px; line-height: 1.55; color: var(--ink-faint);
  max-width: 34ch;
}
.services a { color: var(--ink); }
.services a:hover { }
.services__dots { display: none; }
@media (max-width: 900px) {
  .services__inner { grid-template-columns: 1fr; gap: 24px; }
  .services__item { flex-basis: 100%; padding: 20px; }
  .services__controls { display: none; }
  .services__dots {
    grid-column: 1 / -1;
    display: flex; justify-content: center; gap: 9px; margin-top: 18px;
  }
  .services__dot {
    width: 8px; height: 8px; padding: 0; border: 0; cursor: pointer; border-radius: 999px;
    background: color-mix(in oklch, var(--ink) 22%, transparent);
    transition: width 0.3s ease, background-color 0.3s ease;
  }
  .services__dot.is-active { width: 26px; background: var(--ink); }
}

/* ---------- 7c. Experiencia en tierra (.ground) ---------- */
.ground {
  background:
    radial-gradient(110% 80% at 15% 0%, color-mix(in oklch, var(--navy) 50%, transparent), transparent 58%),
    linear-gradient(to bottom, var(--navy-deep), color-mix(in oklch, var(--navy) 22%, var(--navy-deep)));
  color: var(--text-clear);
}
.ground__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.ground__left {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: calc(100svh - 220px);
}
.ground__kicker {
  margin: 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint);
  display: flex; align-items: baseline; gap: 12px;
}
.ground__kicker::before { content: "+"; font-size: 16px; }
.ground__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.1; letter-spacing: -0.02em;
  max-width: 18ch; text-wrap: pretty;
}
.ground__intro { margin: 0; font-size: 17px; line-height: 1.6; color: var(--text-mid); max-width: 46ch; }
.ground__nav {
  list-style: none; margin: auto 0 0; padding: 0;
  display: flex; flex-direction: column;
}
.ground__nav-link {
  display: flex; align-items: center; gap: 12px;
  min-height: 48px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  color: var(--text-faint);
  transition: color 0.2s ease;
}
.ground__nav li:last-child .ground__nav-link { border-bottom: 1px solid var(--line); }
.ground__nav-link::before {
  content: ""; flex: none;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent);
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ground__nav-link:hover { }
.ground__nav-link.is-active { color: var(--text-clear); }
.ground__nav-link.is-active::before { opacity: 1; transform: none; }
.ground__cards { display: flex; flex-direction: column; gap: 24px; }
.ground__card {
  position: relative;
  min-height: min(78svh, 640px);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: flex-end;
  scroll-margin-top: 96px;
}
.ground__ph {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg,
    color-mix(in oklch, white 4%, transparent) 0 14px,
    transparent 14px 28px);
  display: flex; align-items: center; justify-content: center;
}
.ground__ph span {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--text-faint);
}
.ground__card-body {
  position: relative;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(to top, color-mix(in oklch, var(--navy-deep) 92%, transparent), transparent);
}
.ground__icon {
  width: 44px; height: 44px; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: color-mix(in oklch, var(--navy-deep) 60%, transparent);
  color: var(--accent);
}
.ground__icon svg { width: 22px; height: 22px; }
.ground__card-title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 1.9vw, 28px); line-height: 1.2;
}
.ground__card-desc { margin: 0; font-size: 16px; line-height: 1.55; color: var(--text-mid); max-width: 60ch; }
@media (max-width: 900px) {
  .ground__inner { grid-template-columns: 1fr; }
  .ground__left { position: static; min-height: 0; }
  .ground__nav { display: none; }
  .ground__card { min-height: 60svh; }
}

/* ---------- 7d. Destinos populares (.destinos) ---------- */
.destinos {
  position: relative;
  background: var(--surface); color: var(--text-clear);
  padding: clamp(72px, 10vw, 140px) var(--pad-x) clamp(72px, 10vw, 140px);
  overflow: hidden;
}
.destinos__head {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: clamp(24px, 3.5vw, 52px);
}
.destinos__kicker {
  margin: 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint);
}
.destinos__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.1; letter-spacing: -0.02em;  max-width: 22ch; text-wrap: pretty;
}
.destinos__sub { margin: 0; font-size: 17px; color: var(--text-mid); }
.destinos__hl { color: var(--ink-faint); }

/* Variante clara de destinos */
.destinos--light { background: var(--surface-light); color: var(--ink); }
.destinos--light .destinos__kicker { color: var(--ink-mid); }
.destinos--light .destinos__sub { color: var(--ink-mid); }
.destinos--light .destinos__hl { color: var(--ink-faint); }

/* Carrusel de destinos (.dcar) */
.dcar { position: relative; z-index: 2; margin: 0 calc(-1 * var(--pad-x)); }
.dcar__viewport { overflow: hidden; padding: 36px 0 64px; }
.dcar__track {
  display: flex; align-items: center; gap: clamp(16px, 2vw, 28px);
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dcar .destinos__card { flex: 0 0 clamp(260px, 31%, 360px); opacity: 1; }
.dcar__track.dcar--snap, .dcar__track.dcar--snap .destinos__card { transition: none !important; }
.dcar__dots { display: flex; justify-content: center; gap: 10px; margin-top: 6px; }
.dcar__dot {
  width: 8px; height: 8px; padding: 0; border: 0; cursor: pointer; border-radius: 999px;
  background: color-mix(in oklch, var(--ink) 22%, transparent);
  transition: width 0.3s ease, background-color 0.3s ease;
}
.dcar__dot.is-active { width: 28px; background: var(--ink); }
.destinos__cta {
  gap: 8px; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); letter-spacing: 0.04em;
  min-height: 44px; padding: 0 18px;
  font-size: 13px; font-weight: 400; text-decoration: none;
  border-radius: 999px;
}
.destinos__cta svg { width: 14px; height: 14px; flex: none; }

/* ---------- Card estilo boarding pass (.bpass) ---------- */
.dcar .destinos__card.bpass { flex: 0 0 clamp(300px, 36%, 400px); }
.destinos__card.bpass {
  position: relative;
  border: 0; border-radius: 26px; overflow: hidden;
  aspect-ratio: 3 / 4.15;
  background: #0d2033;
  box-shadow: 0 18px 40px -24px rgba(21,37,55,0.5);
  display: block;
}
.bpass__media { position: absolute; inset: 0; }
.bpass__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,20,34,0.35) 100%);
}
.bpass__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bpass__ticket {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 12px;
  background: color-mix(in oklch, var(--surface-light) 92%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
  box-shadow: 0 10px 30px -14px rgba(21,37,55,0.4);
}
.bpass__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bpass__lbl {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mid); flex: 1;
}
.bpass__lbl--c { text-align: center; }
.bpass__lbl--r { text-align: right; }
.bpass__route { display: flex; align-items: center; gap: 14px; }
.bpass__iata {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1; letter-spacing: -0.01em; color: var(--ink);
}
.bpass__path { flex: 1; display: flex; align-items: center; gap: 8px; }
.bpass__dash {
  flex: 1; height: 0;
  border-top: 1.5px dashed color-mix(in oklch, var(--ink) 28%, transparent);
}
.bpass__plane {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--surface-light);
}
.bpass__plane svg { width: 14px; height: 14px; transform: rotate(90deg); }
.bpass__row--cities { font-size: 12.5px; color: var(--ink-mid); }
.bpass__row--cities .bpass__cityr { text-align: right; }
.bpass__dur {
  flex: 1; text-align: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-faint);
}
.bpass__meta {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  background: color-mix(in oklch, var(--ink) 5%, transparent);
  border-radius: 12px; overflow: hidden;
}
.bpass__cell {
  display: flex; flex-direction: column; gap: 3px; align-items: center; text-align: center;
  padding: 11px 8px;
}
.bpass__cell + .bpass__cell { border-left: 1px solid color-mix(in oklch, var(--ink) 12%, transparent); }
.bpass__mlbl { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.bpass__mval { font-size: 12.5px; font-weight: 500; color: var(--ink); }
.bpass__cta {
  margin-top: 2px;
  font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.01em;
  color: var(--ink);
  background: color-mix(in oklch, var(--ink) 6%, transparent);
  border: 0;
}
/* Galería marquee */
.expval {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: clamp(64px, 9vw, 140px) auto 0;
  padding-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 80px); align-items: stretch;
}
.expval__media {
  position: relative; overflow: hidden;
  border-radius: 20px; border: 1px solid var(--line-dark);
  aspect-ratio: 3 / 4; min-height: 100%;
}
.expval__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expval__overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 18px; padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(to top, color-mix(in oklch, var(--navy-deep) 82%, transparent) 0%, transparent 55%);
}
.expval__overlay-title {
  margin: 0; color: var(--text-clear);
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px); line-height: 1.1; letter-spacing: -0.02em;
  max-width: 16ch; text-wrap: balance;
}
.expval__cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 12px;
  min-height: 52px; padding: 0 8px 0 24px;
  background: var(--text-clear); color: var(--navy-deep);
  font-size: 15px; font-weight: 600; text-decoration: none;
  border-radius: 999px;
}
.expval__cta-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-deep); color: var(--text-clear);
}
.expval__cta-arrow svg { width: 16px; height: 16px; }
.expval__content { display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 32px; }
.expval__top { display: flex; flex-direction: column; align-items: flex-start; }
.expval__bottom { display: flex; flex-direction: column; align-items: flex-start; }
.expval__kicker {
  margin: 0 0 16px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mid);
}
.expval__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.6vw, 56px); line-height: 1.1; letter-spacing: -0.025em;
  max-width: 16ch; text-wrap: balance;
}
.expval__title em { font-style: normal; font-weight: 500; color: var(--ink-mid); display: block; }
.expval__lead {
  margin: 22px 0 0; max-width: 52ch;
  font-size: 17px; line-height: 1.6; color: var(--ink-faint); text-wrap: pretty;
}
.expval__tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  width: 100%; margin-top: 0; padding: 0;
}
.expval__tab {
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; padding: 9px 16px; border-radius: 999px;
  background: color-mix(in oklch, var(--ink) 6%, transparent);
  border: 1px solid transparent;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.expval__tab .expval__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--navy);
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.expval__tab.is-active { color: var(--ink); background: color-mix(in oklch, var(--ink) 12%, transparent); border-color: var(--line-dark); }
.expval__tab.is-active .expval__dot { opacity: 1; transform: scale(1); }
.expval__desc {
  margin: 16px 0 0; max-width: 60ch;
  padding-top: 16px; border-top: 1px solid var(--line-dark);
  font-size: 16px; line-height: 1.6; color: var(--ink-faint); text-wrap: pretty;
}
@media (max-width: 860px) {
  .expval { grid-template-columns: 1fr; }
  .expval__media { aspect-ratio: 16 / 11; }
}
@media (max-width: 900px) {
  .dcar .destinos__card { flex: 0 0 clamp(240px, 62%, 340px); }
  .dcar .destinos__card.bpass { flex: 0 0 clamp(280px, 68%, 360px); }
}
@media (max-width: 620px) {
  .dcar .destinos__card { flex: 0 0 78%; }
  .dcar .destinos__card.bpass { flex: 0 0 82%; }
}

/* ---------- 7e. Empty Legs (.legs) ---------- */
.legs {
  background:
    radial-gradient(120% 90% at 85% 0%, color-mix(in oklch, var(--navy) 55%, transparent), transparent 60%),
    linear-gradient(to bottom, color-mix(in oklch, var(--navy) 30%, var(--navy-deep)), var(--navy-deep));
  color: var(--text-clear); border-top: 1px solid var(--line);
}
.legs__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.legs__content { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.legs__kicker {
  margin: 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint);
  display: flex; align-items: baseline; gap: 12px;
}
.legs__kicker::before { content: "+"; font-size: 16px; }
.legs__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.1; letter-spacing: -0.02em;
  max-width: 18ch; text-wrap: pretty;
}
.legs__sub { margin: 0; font-size: 17px; line-height: 1.6; color: var(--text-mid); max-width: 44ch; }
.legs__cta {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 56px; padding: 0 10px 0 28px;
  background: var(--text-clear); color: var(--navy-deep);
  font-size: 16px; font-weight: 600; text-decoration: none;
  border-radius: 999px;
}
.legs__cta-arrow {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; margin-left: 6px;
  background: var(--navy-deep); color: var(--text-clear); border-radius: 50%;
}
.legs__cta-arrow svg { width: 16px; height: 16px; }
.legs__ph {
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line); border-radius: 16px;
  background: repeating-linear-gradient(-45deg,
    color-mix(in oklch, white 4%, transparent) 0 14px,
    transparent 14px 28px);
  display: flex; align-items: center; justify-content: center;
}
.legs__ph span {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--text-faint); padding: 0 16px; text-align: center;
}

/* ---------- 7f. Reserva (.reserva) ---------- */
.reserva { background: var(--surface-light); color: var(--ink); }
.reserva__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.reserva__content { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.reserva__kicker {
  margin: 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mid);
  display: flex; align-items: baseline; gap: 12px;
}
.reserva__kicker::before { content: "+"; font-size: 16px; }
.reserva__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.12; letter-spacing: -0.02em;
  max-width: 40ch; text-wrap: balance;
}
.reserva__sub { margin: 0; font-size: 17px; line-height: 1.6; color: var(--ink-faint); max-width: 56ch; }
.reserva__cta {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 56px; padding: 0 28px;
  background: var(--navy-deep); color: var(--text-clear);
  font-size: 16px; font-weight: 600; text-decoration: none;
  border-radius: 999px;
}
.reserva__ph {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark); border-radius: 16px;
  background: repeating-linear-gradient(-45deg,
    color-mix(in oklch, var(--ink) 5%, transparent) 0 14px,
    transparent 14px 28px);
  display: flex; align-items: center; justify-content: center;
}
.reserva__ph span {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink-mid); padding: 0 16px; text-align: center;
}
@media (max-width: 900px) {
  .legs__inner, .reserva__inner { grid-template-columns: 1fr; }
  .reserva__ph { order: 2; }
}

/* ---------- 8. Utilidades y estados ---------- */
/* .js-* solo son hooks de JS: nunca se estilizan aquí. */

/* ---------- 7g. Footer (.footer) ---------- */
.footer {
  background: var(--navy-deep); color: var(--text-clear);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) var(--pad-x) clamp(28px, 3vw, 40px);
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.footer__logo { display: block; }
.footer__logo img { width: 128px; height: 44px; object-fit: contain; }
.footer__tagline {
  margin: 0; max-width: 42ch; text-wrap: pretty;
  font-size: 15px; line-height: 1.6; color: var(--text-mid);
}
.footer__wa {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  background: var(--text-clear); color: var(--navy-deep);
  font-size: 14px; font-weight: 600; text-decoration: none;
  border-radius: 999px;
}
.footer__heading {
  margin: 0 0 20px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint);
}
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__contact { font-style: normal; display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer__link {
  color: var(--text-mid); text-decoration: none;
  font-size: 15px; display: inline-flex; align-items: center; min-height: 28px;
  transition: color 0.2s ease;
}
.footer__link:hover { }
.footer__place { font-size: 14px; line-height: 1.6; color: var(--text-faint); }
.footer__map {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-clear); text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}
.footer__map:hover { }
.footer__bar {
  max-width: var(--maxw); margin: clamp(48px, 6vw, 80px) auto 0;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 32px;
  align-items: center; justify-content: space-between;
}
.footer__copy { margin: 0; font-size: 13px; color: var(--text-faint); }
.footer__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; }
.footer__domain { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--text-faint); }
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- 7h. Catálogo de aeronaves (aeronaves.html) ---------- */
.fleethead {
  position: relative; overflow: hidden;
  background: var(--navy-deep); color: var(--text-clear);
  min-height: 60vh; display: flex; align-items: center;
  padding: clamp(130px, 16vh, 180px) var(--pad-x) clamp(40px, 5vw, 60px);
}
.fleethead__media { position: absolute; inset: 0; z-index: 0; }
.fleethead__poster { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.fleethead__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      color-mix(in oklch, var(--navy-deep) 70%, transparent) 0%,
      color-mix(in oklch, var(--navy-deep) 40%, transparent) 45%,
      color-mix(in oklch, var(--navy-deep) 85%, transparent) 100%),
    color-mix(in oklch, var(--navy-deep) 30%, transparent);
}
.fleethead__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 18px; }
.fleethead__kicker {
  margin: 0; font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
}
.fleethead__title {
  margin: 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 6vw, 80px); line-height: 0.98; letter-spacing: -0.025em; color: var(--text-clear);
}
.fleethead__dim { color: var(--text-mid); }
.fleethead__sub { margin: 0; max-width: 60ch; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--text-mid); }
@keyframes fhRise { from { opacity: 0; transform: translateY(28px); filter: blur(7px); } to { opacity: 1; transform: none; filter: none; } }
body.anim-ready .fleethead__kicker,
body.anim-ready .fleethead__title,
body.anim-ready .fleethead__sub { opacity: 0; animation: fhRise 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; }
body.anim-ready .fleethead__kicker { animation-delay: 0.2s; }
body.anim-ready .fleethead__title { animation-delay: 0.5s; }
body.anim-ready .fleethead__sub { animation-delay: 0.9s; }
@media (prefers-reduced-motion: reduce) {
  body.anim-ready .fleethead__kicker,
  body.anim-ready .fleethead__title,
  body.anim-ready .fleethead__sub { opacity: 1; animation: none; }
}

.fleet { background: var(--surface-light); color: var(--ink); padding: clamp(56px, 8vw, 110px) var(--pad-x) clamp(40px, 5vw, 64px); }
.fleet__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.fleet__card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line-dark); border-radius: 22px; overflow: hidden;
  background: color-mix(in oklch, white 60%, transparent);
  box-shadow: 0 18px 44px -30px rgba(21,37,55,0.5);
}
.fleet__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: color-mix(in oklch, var(--ink) 6%, transparent); }
.fleet__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fleet__badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--accent);
  padding: 6px 12px; border-radius: 999px;
}
.fleet__body { display: flex; flex-direction: column; gap: 16px; padding: 24px; flex: 1; }
.fleet__name { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.01em; }
.fleet__price { margin: 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; font-size: 14px; color: var(--ink-mid); }
.fleet__from { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.fleet__price strong { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2.2vw, 28px); color: var(--ink); }
.fleet__per { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-faint); }

/* Card estilo overlay del catálogo (.fcard) */
.fcard {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 26px; background: var(--surface-light);
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 48px -30px rgba(21,37,55,0.5);
}
.fcard__hero { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: color-mix(in oklch, var(--ink) 6%, transparent); }
.fcard__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcard__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-deep); background: var(--accent); padding: 6px 12px; border-radius: 999px;
}
.fcard__overlay {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, rgba(8,16,26,0.92) 0%, rgba(8,16,26,0.55) 55%, transparent 100%);
}
.fcard__id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fcard__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 1.8vw, 23px); line-height: 1.1; color: #fff; }
.fcard__sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: rgba(255,255,255,0.75); }
.fcard__dir {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 24px; border-radius: 14px;
  font-family: var(--font-sans); font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  text-decoration: none; color: #fff;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.fcard__body { display: flex; flex-direction: column; gap: 18px; padding: 22px; flex: 1; }
.fcard__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--line-dark); }
.fcard__level {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: color-mix(in oklch, var(--ink) 7%, transparent);
  padding: 6px 12px; border-radius: 999px;
}
.fcard__by { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-faint); text-align: right; }
.fcard__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fcard__stat { display: flex; flex-direction: column; gap: 3px; }
.fcard__stat b { font-family: var(--font-display); font-weight: 500; font-size: clamp(18px, 1.8vw, 22px); color: var(--ink); }
.fcard__stat b .fcard__u { font-style: normal; font-family: var(--font-mono); font-size: 0.58em; letter-spacing: 0.04em; color: var(--ink-faint); }
.fcard__stat small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.fleet__note {
  max-width: var(--maxw); margin: clamp(32px, 4vw, 56px) auto 0;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.02em; color: var(--ink-faint);
}

/* ---------- 9. Motion ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.js-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.js-reveal.is-in { opacity: 1; transform: none; }
.js-parallax { overflow: hidden; }
.js-parallax img { will-change: transform; }
.js-reveal-blur {
  opacity: 0; transform: translateY(30px); filter: blur(14px);
  transition: opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform, filter;
}
.js-reveal-blur.is-in { opacity: 1; transform: none; filter: blur(0); }
.wp-word { opacity: 0.14; transition: opacity 0.15s linear; }
.wp-word.wp-hl { color: #152537; }
.reserva__title .wp-word.wp-hl { color: #79808C; }
body.anim-ready .hero__content > * {
  animation: hero-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
body.anim-ready .hero__content > *:nth-child(2) { animation-delay: 0.08s; }
body.anim-ready .hero__content > *:nth-child(3) { animation-delay: 0.16s; }
body.anim-ready .hero__content > *:nth-child(4) { animation-delay: 0.24s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.anim-ready .hero__content > * { animation: none; }
  .js-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js-reveal-blur { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .destinos__gallery-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- 9b. Página legal (.page-legal) ---------- */
.legal {
  background: var(--surface-light); color: var(--ink);
  padding: clamp(120px, 16vh, 180px) var(--pad-x) clamp(64px, 9vw, 110px);
}
.legal__inner { max-width: 820px; margin: 0 auto; }
.legal__head { padding-bottom: clamp(28px, 4vw, 44px); margin-bottom: clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--line-dark); }
.legal__kicker {
  margin: 0 0 16px; font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mid);
}
.legal__title {
  margin: 0; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.02; letter-spacing: -0.025em; color: var(--ink);
}
.legal__lead {
  margin: 22px 0 0; max-width: 64ch;
  font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; color: var(--ink-mid); text-wrap: pretty;
}
.legal__meta { margin: 20px 0 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-faint); }
.legal__meta strong { color: var(--ink-mid); font-weight: 500; }
.legal__section { margin-top: clamp(36px, 5vw, 56px); }
.legal__h2 {
  margin: 0 0 16px; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.015em; color: var(--ink);
}
.legal__p {
  margin: 0 0 14px; max-width: 68ch;
  font-size: 16px; line-height: 1.7; color: var(--ink-mid); text-wrap: pretty;
}
.legal__p strong { color: var(--ink); font-weight: 600; }
.legal__list {
  margin: 0 0 14px; padding-left: 22px; max-width: 68ch;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 16px; line-height: 1.6; color: var(--ink-mid);
}
.legal__list li { padding-left: 4px; }
.legal a { color: var(--accent-blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--ink); }
.legal__ext { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-faint); white-space: nowrap; }
.controller-card {
  margin: 4px 0 0; border: 1px solid var(--line-dark); border-radius: 14px; overflow: hidden;
  background: color-mix(in oklch, var(--ink) 3%, transparent);
}
.controller-card__row {
  display: grid; grid-template-columns: 190px minmax(0, 1fr);
}
.controller-card__row + .controller-card__row { border-top: 1px solid var(--line-dark); }
.controller-card__k {
  padding: 14px 18px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mid);
  background: color-mix(in oklch, var(--ink) 4%, transparent);
  display: flex; align-items: center;
}
.controller-card__v { padding: 14px 18px; font-size: 15px; line-height: 1.5; color: var(--ink); }
.controller-card__v a { color: var(--accent-blue); }
@media (max-width: 560px) {
  .controller-card__row { grid-template-columns: 1fr; }
  .controller-card__row .controller-card__v { padding-top: 0; }
}

/* ---------- 10. Print ---------- */
@media print {
  body { background: #fff; color: #000; }
  .header, .skip-link, .hero__actions { display: none; }
  .hero { min-height: auto; }
  .hero__media { display: none; }
  .hero__title, .hero__kicker, .hero__sub, .hero__kpi-value, .hero__kpi-label { color: #000; }
  .services { background: #fff; color: #000; }
  .services__desc, .services__kicker { color: #000; }
  .footer { background: #fff; color: #000; border-top: 1px solid #ccc; }
  .footer__wa, .footer__map { display: none; }
  .legal { padding: 0; background: #fff; color: #000; }
  .legal a { color: #000; }
  .controller-card { border-color: #999; }
  .controller-card__k { background: #f2f2f2; color: #000; }
}
