/* ==========================================================================
   TripXpress — sistema de estilos
   Paleta heredada del sistema TripXpress (tailwind.config.js del CRM)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --bg:            #0b0b0d;
  --bg-elev:       #121216;
  --surface:       #16161b;
  --surface-2:     #1d1d24;
  --line:          rgba(255, 255, 255, .09);
  --line-strong:   rgba(255, 255, 255, .16);

  --text:          #f4f4f6;
  --text-muted:    #a4a4b0;
  --text-dim:      #76767f;

  --pink:          #ff007f;
  --orange:        #ff7a00;
  --yellow:        #ffc300;
  --purple:        #8a2be2;
  --cyan:          #00bcd4;
  --green:         #7ed957;
  --wa:            #25d366;

  --grad:          linear-gradient(115deg, #ff007f 0%, #ff5a1f 52%, #ffc300 100%);
  --grad-soft:     linear-gradient(115deg, rgba(255,0,127,.16), rgba(255,195,0,.10));
  --grad-cool:     linear-gradient(115deg, #8a2be2, #00bcd4);

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  30px;
  --r-pill: 999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.3);
  --shadow-md:  0 16px 40px rgba(0,0,0,.45);
  --shadow-lg:  0 32px 80px rgba(0,0,0,.55);
  --glow-pink:  0 18px 60px rgba(255,0,127,.28);

  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.25rem, 6.5vw, 5.5rem);

  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Outfit", var(--font-body);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(255, 0, 127, .35); color: #fff; }

/* scrollbar */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: #2c2c35; border-radius: 99px; border: 3px solid var(--bg); }
  ::-webkit-scrollbar-thumb:hover { background: #3d3d49; }
}

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--alt { background: linear-gradient(180deg, transparent, var(--bg-elev) 6%, var(--bg-elev) 94%, transparent); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--yellow);
  color: #0b0b0d;
  padding: .7rem 1.1rem;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- 4. Tipografía utilitaria ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.section-title {
  font-size: clamp(1.85rem, 4.6vw, 3.1rem);
  max-width: 20ch;
}
.section-lead {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 62ch;
}
.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--split {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: flex-end;
  justify-content: space-between;
}
.section-head--split .section-lead { margin-top: .85rem; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 5. Botones ---------- */
.btn {
  --btn-bg: var(--surface-2);
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: -.01em;
  line-height: 1.2;
  border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--primary {
  background: var(--grad);
  color: #14060c;
  border-color: transparent;
  box-shadow: var(--glow-pink);
}
.btn--primary:hover { box-shadow: 0 22px 68px rgba(255, 0, 127, .4); }

.btn--wa {
  background: var(--wa);
  color: #05270f;
  border-color: transparent;
  box-shadow: 0 16px 44px rgba(37, 211, 102, .26);
}
.btn--wa:hover { box-shadow: 0 22px 60px rgba(37, 211, 102, .38); }

.btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.28); }

.btn--sm { padding: .68rem 1.15rem; font-size: .875rem; }
.btn--block { width: 100%; }

/* ---------- 6. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, .72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(11, 11, 13, .92);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { height: 38px; width: auto; }
.brand__sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: .35rem; }
}
.nav__link {
  padding: .55rem .85rem;
  border-radius: var(--r-pill);
  font-size: .94rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--text); background: rgba(255,255,255,.06); }

.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  position: relative;
  transition: background-color .2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* menú móvil */
.mobile-nav {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
  border-top: 1px solid transparent;
  background: var(--bg-elev);
}
.mobile-nav.is-open { grid-template-rows: 1fr; border-top-color: var(--line); }
.mobile-nav__inner { overflow: hidden; }
.mobile-nav ul { padding: .85rem var(--gutter) 1.5rem; display: grid; gap: .2rem; }
.mobile-nav a {
  display: block;
  padding: .85rem .3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 1rem; }
@media (min-width: 1024px) { .mobile-nav { display: none; } }

/* ---------- 7. Barra de aviso ---------- */
.topbar {
  background: var(--grad);
  color: #180810;
  font-size: .84rem;
  font-weight: 600;
  text-align: center;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .3rem .9rem;
  padding: .55rem var(--gutter);
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; font-weight: 800; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 12% 8%,  rgba(255, 0, 127, .26), transparent 60%),
    radial-gradient(50% 50% at 88% 22%, rgba(138, 43, 226, .22), transparent 62%),
    radial-gradient(65% 60% at 70% 95%, rgba(0, 188, 212, .17), transparent 60%);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 35%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 35%, #000 35%, transparent 100%);
}
.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; gap: 4rem; }
}

.hero__title {
  font-size: clamp(2.4rem, 6.4vw, 4.35rem);
  letter-spacing: -.035em;
}
.hero__lead {
  margin-top: 1.35rem;
  font-size: clamp(1.03rem, 1.9vw, 1.2rem);
  color: var(--text-muted);
  max-width: 54ch;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .42rem .9rem .42rem .55rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.045);
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(126, 217, 87, .16);
  flex: none;
  margin-left: .35rem;
}

.hero__trust {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .95rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-chip svg { color: var(--yellow); flex: none; }

/* tarjeta flotante del hero */
.hero__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.hero__card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0e0e12;
}
.hero__card-media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* la ficha va debajo del flyer para no tapar la información impresa */
.hero__card-veil {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.hero__card-tag {
  display: inline-block;
  padding: .3rem .75rem;
  border-radius: var(--r-pill);
  background: var(--grad);
  color: #14060c;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.hero__card-title { font-size: 1.4rem; }
.hero__card-meta {
  margin-top: .5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .3rem .9rem;
  color: var(--text-muted);
  font-size: .9rem;
}
.hero__card-price { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--yellow); }

/* ---------- 9. Franja de métricas ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 860px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg-elev); padding: 1.6rem 1.35rem; text-align: center; }
.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { margin-top: .5rem; font-size: .85rem; color: var(--text-muted); }

/* ---------- 10. Tarjetas de viaje ---------- */
.tours-grid {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.tour {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.tour:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, .4);
  box-shadow: var(--shadow-md);
}
/* Los flyers traen texto y precios impresos, así que se muestran completos
   (object-fit: contain) y el espacio sobrante se rellena con una copia
   desenfocada del mismo flyer en lugar de dejar bandas vacías. */
.tour__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0e0e12;
  border-bottom: 1px solid var(--line);
}
.media-fill {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.35);
  filter: blur(30px) saturate(1.35) brightness(.5);
  opacity: .9;
}
.tour__media img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease);
}
.tour:hover .tour__media img { transform: scale(1.03); }

.tour__badges {
  position: absolute;
  top: .8rem; left: .8rem; right: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  pointer-events: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .32rem .7rem;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
  background: rgba(9,9,11,.78);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.badge--date  { background: rgba(9,9,11,.82); color: var(--yellow); }
.badge--promo { background: var(--grad); color: #14060c; border-color: transparent; }
.badge--soon  { background: rgba(126,217,87,.92); color: #05270f; border-color: transparent; }

.tour__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.3rem 1.4rem;
  gap: .85rem;
}
.tour__name { font-size: 1.16rem; }
.tour__tagline {
  font-size: .89rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour__chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .28rem .62rem;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-muted);
}
.tour__price-row {
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.tour__price-label { font-size: .74rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; }
.tour__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--text);
}
.tour__price small { font-size: .72rem; font-weight: 600; color: var(--text-dim); margin-left: .2rem; }
.tour__price-old {
  font-size: .82rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: .45rem;
}
.tour__deposit { text-align: right; font-size: .78rem; color: var(--text-muted); }
.tour__deposit b { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--green); }
.tour__actions { display: grid; gap: .5rem; grid-template-columns: 1fr auto; }

/* ---------- 11. Rejilla de características ---------- */
.features {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
}
.feature {
  padding: 1.7rem 1.5rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--surface-2); }
.feature__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--grad-soft);
  border: 1px solid var(--line-strong);
  color: var(--yellow);
  margin-bottom: 1.1rem;
}
.feature h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.feature p { font-size: .93rem; color: var(--text-muted); }

/* ---------- 12. Pasos ---------- */
.steps {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.9rem 1.4rem 1.5rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -.6rem; left: 1.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: .95;
}
.step h3 { margin-top: 1.6rem; font-size: 1.05rem; margin-bottom: .45rem; }
.step p { font-size: .92rem; color: var(--text-muted); }

/* ---------- 13. Destinos ---------- */
.dest-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr));
}
.dest {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.dest:hover { transform: translateY(-4px); border-color: rgba(0,188,212,.4); }
.dest img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; opacity: .82; transition: opacity .3s var(--ease), transform .6s var(--ease); }
.dest:hover img { opacity: 1; transform: scale(1.06); }
.dest__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem .9rem .85rem;
  background: linear-gradient(to top, rgba(9,9,11,.95), transparent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
}
.dest__label span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .78rem; color: var(--yellow); margin-top: .15rem; }

/* ---------- 14. Puntos de salida ---------- */
.departures {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr));
}
.departure {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
}
.departure svg { color: var(--pink); flex: none; margin-top: .15rem; }
.departure b { display: block; font-family: var(--font-head); font-size: 1rem; }
.departure span { font-size: .84rem; color: var(--text-muted); }

/* ---------- 15. Servicios (media + texto) ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split__list { margin-top: 1.6rem; display: grid; gap: .8rem; }
.split__list li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; color: var(--text-muted); }
.split__list svg { color: var(--green); flex: none; margin-top: .28rem; }
.split__list b { color: var(--text); font-weight: 600; }

/* ---------- 16. FAQ ---------- */
.faq { display: grid; gap: .7rem; max-width: 860px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq__item[open] { border-color: var(--line-strong); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translateY(-2px); }
.faq__a { padding: 0 1.3rem 1.3rem; color: var(--text-muted); font-size: .96rem; }
.faq__a p + p { margin-top: .7rem; }

/* ---------- 17. CTA final ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(70% 130% at 8% 0%,  rgba(255,0,127,.3), transparent 62%),
    radial-gradient(60% 120% at 92% 100%, rgba(0,188,212,.24), transparent 60%),
    var(--surface);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.75rem, 4.2vw, 2.85rem); margin-inline: auto; max-width: 22ch; }
.cta-band p { margin: 1rem auto 0; color: var(--text-muted); max-width: 56ch; }
.cta-band__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* ---------- 18. Contacto ---------- */
.contact-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.contact-card {
  padding: 1.7rem 1.5rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.contact-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(37,211,102,.13);
  border: 1px solid rgba(37,211,102,.28);
  color: var(--wa);
  margin-bottom: .55rem;
}
.contact-card h3 { font-size: 1.05rem; }
.contact-card p { font-size: .9rem; color: var(--text-muted); }
.contact-card__value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.01em;
}
.contact-card .btn { margin-top: auto; }

/* ---------- 19. Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
  padding-block: clamp(2.75rem, 5vw, 4rem) 2rem;
}
.footer__grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}
.footer__brand img { height: 40px; margin-bottom: 1rem; }
.footer__brand p { font-size: .9rem; color: var(--text-muted); max-width: 34ch; }
.footer h4 {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer__links { display: grid; gap: .6rem; }
.footer__links a, .footer__links li { font-size: .92rem; color: var(--text-muted); transition: color .2s var(--ease); }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
  color: var(--text-dim);
}

/* ---------- 20. Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: #05270f;
  box-shadow: 0 12px 34px rgba(37,211,102,.42);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 18px 44px rgba(37,211,102,.55); }

/* ---------- 21. Filtros (página de viajes) ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter {
  padding: .55rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .25s var(--ease);
}
.filter:hover { border-color: var(--line-strong); color: var(--text); }
.filter.is-active {
  background: var(--grad);
  color: #14060c;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(255,0,127,.24);
}
.filter-empty {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-muted);
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
}
.page-hero {
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 65% at 15% 0%, rgba(255,0,127,.22), transparent 62%),
    radial-gradient(45% 60% at 85% 10%, rgba(138,43,226,.18), transparent 62%);
}
.breadcrumb { font-size: .85rem; color: var(--text-dim); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--yellow); }

/* ---------- 22. Animación de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 23. Impresión ---------- */
@media print {
  .header, .topbar, .wa-float, .mobile-nav, .cta-band__actions, .tour__actions { display: none !important; }
  body { background: #fff; color: #000; }
}
