@font-face {
  font-family: "RSTreactorSans";
  src:
    url("./fonts/RSTreactorSans.woff2") format("woff2"),
    url("./fonts/RSTreactorSans.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "RSTreactorSans";
  src:
    url("./fonts/RSTreactorSans-Medium.woff2") format("woff2"),
    url("./fonts/RSTreactorSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

/* ── TOKENS ──────────────────────────── */
:root {
  --base: #0d0b0a;
  --surface-1: #141110;
  --surface-2: #1c1916;
  --surface-3: #26211d;
  --accent: #ffff00;
  --accent-hover: color-mix(in srgb, var(--accent) 80%, transparent);
  --detail: #ff4e2d;
  --text-1: #f5f0eb;
  --text-2: #a09590;
  --text-3: #5c5450;
  --border: rgba(255, 255, 255, 0.07);
  --font-display: "RSTreactorSans", "Impact", "Arial Black", sans-serif;
  --font-titles: "RSTreactorSans-ExpBlack", "Impact", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --r-sm: 4px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-pill: 100px;
}

/* Paleta Mochileros. La modalidad la declara la página en el <body>:
   fija en mochileros.html, y en paquete.html la setea paquete.js según
   el paquete que se esté viendo. Todo lo demás se hereda de :root. */
body[data-modalidad="mochileros"] {
  --accent: #71cd9f;
  --detail: #ebc064;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--base);
  color: var(--text-1);
  font-family: var(--font-body);
  overflow-x: hidden;
}
h1,
h2,
h3 {
  color: #efe2c3;
}

/* ── PAGE WRAPPER ────────────────────── */
.page-wrapper {
  margin-top: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-wrapper.mobile-view {
  max-width: 390px;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px #333,
    0 0 80px rgba(0, 0, 0, 0.8);
  border-radius: 0 0 40px 40px;
}

/* ── GRAIN OVERLAY ───────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.06;
}

/* ── NAVIGATION ──────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    backdrop-filter 0.4s ease;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.15em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo .tt {
  color: var(--accent);
}
.nav-logo .asia {
  color: var(--text-2);
  font-size: 0.9em;
  margin-left: 0.3em;
}
/* ── HERO ────────────────────────────── */
/* ── HERO ANIMATIONS ─────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes kenBurns {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* ── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5rem;
  padding-top: 64px;
  overflow: hidden;
}
/* extendido verticalmente para que el parallax no deje gaps */
.hero-bg {
  position: absolute;
  top: -35%;
  left: 0;
  right: 0;
  height: 140%;
  overflow: hidden;
  will-change: transform;
  background: linear-gradient(
    148deg,
    #221308 0%,
    #381e08 18%,
    #241c06 42%,
    #0e1408 68%,
    #080e0c 100%
  );
}
/* .hero-photo es la variante estática de la portada (home.html).
   Comparte todo con el video, incluido el Ken Burns: la foto entra con el
   mismo movimiento que tenía el video. */
.hero-video,
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(13, 11, 10, 0.08) 0%,
      rgba(13, 11, 10, 0.92) 100%
    ),
    radial-gradient(
      ellipse at 18% 32%,
      rgba(255, 137, 4, 0.32) 0%,
      transparent 52%
    ),
    radial-gradient(
      ellipse at 80% 68%,
      rgba(180, 100, 15, 0.14) 0%,
      transparent 44%
    );
}
.hero-bg::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(
    ellipse,
    rgba(255, 137, 4, 0.2) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero-line-1 {
  display: inline-block;
  animation: fadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.28s both;
}
.hero-line-2 {
  display: inline-block;
  animation: fadeUp 0.75s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}
.hero-kv {
  width: 50vw;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.78s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-line-1,
  .hero-line-2,
  .hero-sub,
  .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-video {
    animation: none;
    transform: scale(1);
  }
  .marquee-track {
    animation: none;
  }
}
.btn-primary {
  background: var(--accent);
  color: var(--base);
  border: none;
  padding: 0.85rem 4rem;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
}
.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.85rem 6rem;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 400;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
  width: fit-content;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── SECTION BASE ────────────────────── */
.section {
  padding: 6rem 3rem;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 3.5rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text-1);
  text-transform: uppercase;
}
.section-sub {
  margin: 1rem 0 2rem 0;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
}

/* ── MANIFIESTO ──────────────────────── */
.manifiesto {
  background: var(--base);
}
.manifiesto-text {
  max-width: 950px;
}
.manifiesto-title {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-1);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.manifiesto-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.75rem;
}
.brand-signature {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

/* Marquee — full-width breakout */
.marquee-outer {
  width: calc(100% + 6rem);
  overflow: hidden;
  margin-top: 3rem;
}
.marquee-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marqueeScroll 65s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-photo {
  height: 300px;
  width: 450px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: var(--r-md);
  display: block;
  filter: brightness(0.82) saturate(0.88) sepia(0.08);
  transition: filter 0.4s;
}
.marquee-track:hover .marquee-photo {
  filter: brightness(0.9) saturate(0.95) sepia(0.04);
}

/* ── DESTINATION CARDS ───────────────── */
.destinations {
  background: var(--surface-1);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
}
.dest-card:hover {
  transform: translateY(-6px);
}
.dest-card:hover .dest-bg {
  transform: scale(1.06);
}
.dest-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 11, 10, 0.96) 0%,
    rgba(13, 11, 10, 0.4) 50%,
    transparent 100%
  );
}
.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
}
.dest-chips {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.dest-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}
.chip-sm {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-pill);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}
.dest-name {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2rem);
  line-height: 1;
  color: var(--text-1);
  margin-bottom: 0.4rem;
}
.dest-precio {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.dest-meta {
  font-size: 0.75rem;
  color: var(--text-2);
}
.dest-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--detail);
  color: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-card:hover .dest-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Destination backgrounds */
.g-india {
  background-image: url("/assets/img/india.jpg");
}
.g-indonesia {
  background-image: url("/assets/img/fili.webp");
}
.g-indonesia_vietnam {
  background-image: url("/assets/img/tai.webp");
}
.g-vietnam {
  background-image: url("/assets/img/viet4.jpeg");
}
.g-japon {
  background-image: url("/assets/img/jap.webp");
}
.g-srilanka_maldivas_vietnam {
  background-image: url("/assets/img/sri.webp");
}
.g-srilanka_maldivas {
  background-image: url("/assets/img/maldivas.jpg");
}
.g-china {
  background-image: url("/assets/img/china.webp");
}
.g-vietnam_china {
  background-image: url("/assets/img/viet_china.webp");
}
.g-china_japon {
  background-image: url("/assets/img/chi-jap.webp");
}
.g-tailandia_camboya_malasia {
  background-image: url("/assets/img/camboya.webp");
}

/* ── QUÉ HAY EN ASIA ─────────────────── */
.asia-section {
  background: var(--surface-2);
}

/* ── ASIA SLIDER ─────────────────────── */
.asia-slider-wrap {
  position: relative;
  margin-bottom: 100px;
}
.asia-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}
.asia-slider::-webkit-scrollbar {
  display: none;
}
.asia-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.asia-card {
  position: relative;
  flex: 0 0 540px;
  min-width: 540px;
  height: 560px;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
}

/* Full-bleed photo background */
.card-photo {
  position: absolute;
  inset: 0;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.68) saturate(0.85) sepia(0.14);
  transition:
    transform 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.5s;
}
.asia-card:hover .card-photo img {
  transform: scale(1.05);
  filter: brightness(0.78) saturate(0.95) sepia(0.08);
}

/* Cinematic amber overlay — dark top for text, light in middle, anchored at bottom */
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(13, 11, 10, 0.85) 0%,
      rgba(13, 11, 10, 0.08) 52%,
      rgba(13, 11, 10, 0.55) 100%
    ),
    radial-gradient(
      ellipse at 22% 8%,
      rgba(255, 137, 4, 0.22) 0%,
      transparent 50%
    );
}

/* Text at top, on top of overlay */
.card-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.25rem 1.5rem;
  z-index: 2;
}
.card-headline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 0.9rem;
}
.card-blurb {
  font-size: 0.82rem;
  color: rgba(245, 240, 235, 0.8);
  line-height: 1.75;
  max-width: 90%;
}

/* Slider arrow controls */
.slider-controls {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.slider-btn:hover {
  background: var(--accent);
  color: var(--base);
  border-color: var(--accent);
}
.slider-btn:disabled {
  opacity: 0.25;
  cursor: default;
}
.slider-btn:disabled:hover {
  background: var(--surface-2);
  color: var(--text-1);
  border-color: var(--border);
}

/* ── LA RUTA ─────────────────────────── */
.ruta-section {
  background: var(--base);
}

/* desktop map container */
.ruta-map {
  position: relative;
  width: 100%;
  height: 440px;
  margin-top: 1.5rem;
  overflow: visible;
}
.ruta-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* animated flow lines */
@keyframes flowDash {
  from {
    stroke-dashoffset: 40;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.ruta-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 8 5;
  opacity: 0.55;
  animation: flowDash 1.2s linear infinite;
}
.ruta-path.bottom {
  animation-delay: -0.7s;
}
.ruta-path.shared {
  animation-delay: -0.4s;
}
.ruta-glow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  stroke-dasharray: 8 5;
  opacity: 0.07;
  animation: flowDash 1.2s linear infinite;
  filter: url(#routeGlow);
}
.ruta-glow.bottom {
  animation-delay: -0.7s;
}
.ruta-glow.shared {
  animation-delay: -0.4s;
}

/* convergence marker */
.conv-ring {
  fill: rgba(255, 137, 4, 0.1);
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.7;
}
.conv-dot {
  fill: var(--accent);
  opacity: 0.85;
}

/* nodes */
.ruta-nodo {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: default;
}
.nodo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.46rem;
}
.nodo-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 137, 4, 0.3);
  background: var(--surface-3);
  transition:
    border-color 0.3s,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s;
}
.nodo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.82);
  transition: filter 0.35s;
  pointer-events: none;
}
.nodo-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
  letter-spacing: 0.07em;
  white-space: nowrap;
  transition: color 0.25s;
}
.ruta-nodo:hover .nodo-img {
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(255, 137, 4, 0.28);
}
.ruta-nodo:hover .nodo-img img {
  filter: brightness(1) saturate(1);
}
.ruta-nodo:hover .nodo-label {
  color: var(--accent);
}
.ruta-nodo.is-shared .nodo-img {
  width: 96px;
  height: 96px;
  border-color: rgba(255, 137, 4, 0.5);
}

/* tooltip */
.nodo-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  z-index: 30;
  transition:
    opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--surface-2);
  border: 1px solid var(--accent);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
  min-width: 148px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
/* top-route nodes: tooltip below to avoid clipping */
.ruta-nodo.tip-below .nodo-tooltip {
  bottom: auto;
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(-8px);
}
.ruta-nodo.tip-below:hover .nodo-tooltip {
  transform: translateX(-50%) translateY(0);
}
.ruta-nodo:hover .nodo-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.tip-pais {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-1);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.tip-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--text-2);
  margin-bottom: 0.15rem;
  line-height: 1.4;
}
.tip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* mobile scroll */
.ruta-mobile {
  display: none;
  margin-top: 1.5rem;
}

/* ── Vertical timeline ── */
.rmv-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Grid: 2 cols, 10 rows alternando nodo/conector */
.rmv-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto 18px);
  width: 100%;
}
.rmv-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  align-self: center;
  gap: 0.38rem;
}
.rmv-node .nodo-img {
  width: 100px;
  height: 100px;
}
.rmv-node .nodo-label {
  font-size: 14px;
}
.rmv-line {
  width: 1.5px;
  min-height: 18px;
  height: auto;
  justify-self: center;
  align-self: stretch;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 137, 4, 0.45) 0px,
    rgba(255, 137, 4, 0.45) 4px,
    transparent 4px,
    transparent 8px
  );
}
.rmv-merge {
  width: 100%;
  overflow: visible;
  display: block;
}
.rmv-shared {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-view .ruta-map {
  display: none;
}
.mobile-view .ruta-mobile {
  display: block;
}

/* ── QUÉ INCLUYE ─────────────────────── */
.includes-section {
  background: var(--base);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "uno uno dos"
    "uno uno tres"
    "cuatro cinco seis";
  gap: 0.75rem;
}

.bento-item {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s;
}
.bento-item:hover {
  background: var(--surface-2);
  border-color: rgba(255, 137, 4, 0.28);
  transform: scale(1.018);
  box-shadow: 0 0 40px rgba(255, 137, 4, 0.06);
}
.bento-item.large {
  grid-area: uno;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: url(.assets/img/viet_china.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bento-item.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(255, 137, 4, 0.09) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.bento-item.large:hover::after {
  opacity: 1;
}

.bento-num {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s;
}
.bento-item:hover .bento-num {
  opacity: 0.13;
}
.bento-item.large .bento-num {
  font-size: clamp(7rem, 11vw, 13rem);
  bottom: -0.5rem;
  right: 0.75rem;
}
.bento-item:not(.large) .bento-num {
  font-size: 3.2rem;
  top: 1.25rem;
  right: 1.5rem;
}

.bento-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-1);
  position: relative;
  z-index: 1;
}
.bento-item.large .bento-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}
.bento-item:not(.large) .bento-title {
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.bento-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.bento-item.large .bento-desc {
  font-size: 0.9rem;
  max-width: 360px;
}

/* ── TESTIMONIOS ─────────────────────── */
.testimonios-section {
  background: var(--surface-2);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testi-card {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.testi-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testi-text {
  font-size: 0.88rem;
  color: var(--text-1);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-3);
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-name {
  font-size: 0.8rem;
  color: var(--text-1);
  font-weight: 500;
}
.testi-dest {
  font-size: 0.7rem;
  color: var(--text-3);
}

/* ── CTA FINAL ───────────────────────── */
.cta-section {
  background: var(--base);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 85vh;
  display: flex;
  align-items: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    color-mix(in srgb, var(--accent) 10%, transparent) 0%,
    transparent 65%
  )
  ;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text-1);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.cta-title span {
  color: var(--accent);
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 300;
}
.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────── */
.site-footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer-brand .nav-logo {
  font-size: 1.1rem;
  display: inline-flex;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.68rem;
  color: var(--text-3);
  align-self: end;
  text-align: right;
}

/* ── FEATURE CHIPS ───────────────────── */
/* container — full-bleed, fixed height */
.paq-incluye {
  background: var(--surface-2);
}

.fc-wrap {
  position: relative;
  width: 100%;
  height: 760px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 4rem;
}

/* media fills 100% of container */
.fc-right {
  position: absolute;
  inset: 0;
}
.fc-media-slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.fc-media-slot.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.fc-media-slot.is-exiting {
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.25s cubic-bezier(0, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0, 0, 0.2, 1);
}
.fc-media-slot img,
.fc-media-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* chips column — vertically auto-recenters as content grows */
.fc-left {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

/* each chip is one unified visual block */
.fc-chip {
  display: flex;
  flex-direction: column;
  border-radius: 36px;
  background: rgba(14, 12, 11, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  width: 270px;
  box-shadow: 2px 4px 5px 0px rgba(0, 0, 0, 0.5);
  /* fase 1: width con spring sutil (10% overshoot) */
  transition:
    width 0.38s cubic-bezier(0.34, 1.1, 0.64, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-chip.is-active {
  width: 420px;
}
/* microinteracción hover: desplazamiento direccional */
.fc-chip:not(.is-active) {
  cursor: pointer;
}
.fc-chip:not(.is-active):hover {
  transform: translateX(4px);
}
.fc-chip-btn {
  display: flex;
  align-items: center;
  padding: 20px 32px 20px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  /* fase 2: padding con spring, 60ms después del width */
  transition:
    background 0.2s,
    padding 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 60ms;
}
.fc-chip.is-active .fc-chip-btn {
  padding: 20px 32px 20px 50px;
  white-space: normal;
}
.fc-chip-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* circled + icon collapses when active */
.fc-icon {
  width: 20px;
  max-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-right: 12px;
  line-height: 1;
  font-weight: 300;
  overflow: hidden;
  transition:
    opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    margin-right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-chip.is-active .fc-icon {
  opacity: 0;
  transform: scale(0.3);
  max-width: 0;
  margin-right: 0;
}

/* expand — apertura escalonada */
.fc-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1) 200ms,
    opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1) 250ms;
}
.fc-chip.is-active .fc-expand {
  max-height: 260px;
  opacity: 1;
}

/* cierre: ease-out limpio sin spring ni delays */
.fc-chip.is-closing {
  transition:
    width 0.28s cubic-bezier(0, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-chip.is-closing .fc-chip-btn {
  transition:
    background 0.2s,
    padding 0.25s cubic-bezier(0, 0, 0.2, 1);
}
.fc-chip.is-closing .fc-expand {
  transition:
    max-height 0.22s cubic-bezier(0, 0, 0.2, 1),
    opacity 0.15s cubic-bezier(0, 0, 0.2, 1);
}
@keyframes fcJiggle {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
.fc-chip.is-jiggling {
  animation: fcJiggle 0.22s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
.fc-desc {
  padding: 0 32px 20px 50px;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(245, 240, 235, 0.78);
  line-height: 1.72;
}

/* ── FULLSCREEN OVERLAY (MOBILE) ─────── */
.fc-fullscreen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--base);
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-fullscreen.is-open {
  display: flex;
}
.fc-fullscreen.is-visible {
  opacity: 1;
}
.fc-fs-media {
  position: relative;
  flex: 1;
  overflow: hidden;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-fs-media.is-fading {
  opacity: 0;
}
.fc-fs-media img,
.fc-fs-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fc-fs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 11, 10, 0.96) 0%,
    rgba(13, 11, 10, 0.1) 55%,
    transparent 100%
  );
  pointer-events: none;
}
.fc-fs-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 6rem;
  z-index: 2;
}
.fc-fs-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.fc-fs-desc {
  font-size: 0.85rem;
  color: rgba(245, 240, 235, 0.82);
  line-height: 1.75;
}
.fc-fs-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(13, 11, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-1);
  font-size: 1rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.fc-fs-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
}
.fc-fs-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 11, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-1);
  font-size: 1.05rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.fc-fs-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--base);
}
.fc-fs-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ── MOBILE OVERRIDES ────────────────── */
.mobile-view .site-nav {
  padding: 0 1.25rem;
}
.mobile-view .nav-links {
  display: none;
}
.hamburger {
  display: none;
}
.mobile-view .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  display: block;
}
.mobile-view .hero {
  padding: 0 1.25rem 4rem;
  min-height: 92vh;
}
.mobile-view .hero-title {
  font-size: clamp(3.5rem, 15vw, 5rem);
}
.mobile-view .hero-sub {
  font-size: 0.9rem;
}
.mobile-view .hero-scroll-hint {
  right: 1.25rem;
  bottom: 1.5rem;
}
.mobile-view .section {
  padding: 4rem 1.25rem;
}
.mobile-view .dest-grid {
  grid-template-columns: 1fr;
}
.mobile-view .dest-card {
  aspect-ratio: 5/3;
}
.mobile-view .asia-slider {
  cursor: default;
}
.mobile-view .asia-card {
  flex: 0 0 300px;
  min-width: 300px;
  height: 460px;
}
.mobile-view .bento-grid {
  grid-template-columns: 1fr;
  grid-template-areas: "uno" "dos" "tres" "cuatro" "cinco" "seis";
}
.mobile-view .bento-item {
  transform: none !important;
}
.mobile-view .bento-item.large {
  min-height: 220px;
}
.mobile-view .testi-grid {
  grid-template-columns: 1fr;
}
.mobile-view .site-footer {
  grid-template-columns: 1fr;
}
.mobile-view .footer-copy {
  text-align: left;
}
.mobile-view .cta-section {
  padding: 5rem 1.25rem;
}
.mobile-view .cta-row {
  flex-direction: column;
  align-items: center;
}
.mobile-view .anim-panel {
  width: calc(100% - 3rem);
}
.mobile-view .fc-wrap {
  height: auto;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface-3);
  background-image: var(--fc-mobile-bg, none);
  background-size: cover;
  background-position: center;
  margin-top: 2rem;
  margin-left: -1.25rem;
  width: calc(100% + 2.5rem);
  padding: 1.25rem 0 1.25rem 1.25rem;
}
.mobile-view .fc-right {
  display: none;
}
.mobile-view .fc-left {
  position: static;
  transform: none;
  top: auto;
  left: auto;
  width: 100%;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 0.5rem;
  padding: 12px 1.25rem;
}
.mobile-view .fc-left::-webkit-scrollbar {
  display: none;
}
.mobile-view .fc-chip {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: auto;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.mobile-view .fc-chip.is-active {
  width: auto;
  background: rgba(255, 137, 4, 0.12);
  border: 1px solid rgba(255, 137, 4, 0.35);
}
.mobile-view .fc-chip:not(.is-active):hover {
  transform: none;
}
.mobile-view .fc-chip-btn {
  padding: 12px 18px;
  white-space: nowrap;
}
.mobile-view .fc-chip.is-active .fc-chip-btn {
  padding: 12px 18px;
  white-space: nowrap;
}
.mobile-view .fc-expand {
  display: none;
}
.mobile-view .fc-icon {
  display: inline-flex;
}
/* En mobile el ícono permanece visible aunque la chip sea activa */
.mobile-view .fc-chip.is-active .fc-icon {
  opacity: 1;
  transform: none;
  max-width: 20px;
  margin-right: 12px;
}
/* Fullscreen scoped al frame mobile */
.mobile-view .fc-fullscreen.is-open {
  position: fixed;
  inset: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 390px;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
/* Flechas a los extremos en mobile */
.mobile-view .fc-fs-nav {
  justify-content: space-between;
  padding: 0 1.5rem;
}

/* ── Back to top ── */
.btt {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  color: var(--accent);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.2s,
    color 0.2s,
    scale 0.2s;
}
.btt.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.btt:hover {
  background: var(--accent);
  color: var(--base);
  scale: 1.06;
}

/* ── PAQUETES DINÁMICOS ─────────────────── */
.paquetes-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  color: var(--text-2);
  font-size: 0.9rem;
}

/* Slider de galería en cada card */
.dest-slider {
  position: absolute;
  inset: 0;
}

.dest-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.dest-slide.is-active {
  opacity: 1;
}

.dest-bg-empty {
  position: absolute;
  inset: 0;
  background: var(--surface-2);
}

/* Botones prev / next */
.dest-sl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  color: var(--text-1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
}

.dest-card:hover .dest-sl-btn {
  opacity: 1;
}
.dest-sl-prev {
  left: 10px;
}
.dest-sl-next {
  right: 10px;
}

/* Dots */
.dest-sl-dots {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.sl-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition:
    background 0.25s,
    transform 0.25s;
  cursor: pointer;
}

.sl-dot.is-active {
  background: var(--text-1);
  transform: scale(1.4);
}

/* ════════════════════════════════════════════════════════════════════
         PAQUETE PAGE
         ════════════════════════════════════════════════════════════════════ */

/* Nav override: no mockup bar on production pages */
.paq-body .site-nav {
  top: 0;
}

/* ── HERO ─────────────────────────────────────────── */
.paq-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.paq-hero-bg {
  position: absolute;
  /*top: -35%;*/
  left: 0;
  right: 0;
  height: 100vh;
  background-color: var(--surface-2);
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.paq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 11, 10, 0.98) 0%,
    rgba(13, 11, 10, 0.7) 22%,
    rgba(13, 11, 10, 0.1) 45%,
    transparent 62%
  );
}

/* 3-column bottom layout */
.paq-hero-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
  width: 1280px;
  padding: 3rem 0;
  margin: 0 auto;
}
.paq-hero-hairline {
  width: 100%;
  height: 1px;
  /*background: var(--accent);*/
  opacity: 0.45;
  transform-origin: left center;
  margin-bottom: 1rem;
}
.paq-hero-title {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--text-1);
  max-width: 14ch;
  text-transform: uppercase;
}

/* ── BARRA RESUMEN ───────────────────────────────────── */
.paq-barra-resumen {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(130%);
  width: min(700px, calc(100% - 2rem));
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.35s ease;
}
.paq-barra-resumen.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.pbr-inner {
  width: 100%;
  height: 62px;
  background: rgba(15, 12, 10, 0.92);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 0 0 1px rgba(255, 137, 4, 0.06),
    0 -4px 60px rgba(0, 0, 0, 0.5),
    0 8px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 0;
}
.pbr-items {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  margin-left: 16px;
}
.pbr-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.pbr-item {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0 12px;
  flex-shrink: 0;
}
.pbr-item:first-child {
  padding-left: 0;
}
.pbr-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pbr-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
}
.pbr-price {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  flex-shrink: 0;
}
.pbr-price-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pbr-price-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}
.pbr-currency {
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: super;
  margin-right: 0.1em;
}
.pbr-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--base);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0 1.6em;
  height: 44px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  transition:
    background 0.2s,
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s;
  white-space: nowrap;
}
.pbr-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px) scale(1.02);
}
@media (max-width: 640px) {
  .paq-barra-resumen {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateY(110%);
  }
  .paq-barra-resumen.is-visible {
    transform: translateY(0);
  }
}

/* ── SECTIONS (shared) ────────────────────────────── */
.paq-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  margin-left: auto;
  margin-right: auto;
}
.paq-section + .paq-section {
  border-top: 1px solid var(--border);
}
.paq-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── OVERVIEW ─────────────────────────────────────── */
.paq-overview-title {
  font-family: var(--font-titles);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.paq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.paq-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 137, 4, 0.1);
  border: 1px solid rgba(255, 137, 4, 0.25);
  padding: 0.38em 1em;
  border-radius: var(--r-pill);
}
.paq-intro {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-1);
  line-height: 1.4;
  max-width: 720px;
  white-space: pre-line;
  font-weight: 100;
  margin-top: 32px;
}

.paq-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  margin-top: 1.5rem;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  color: var(--text-2);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.paq-hero-sep {
  color: var(--accent);
  opacity: 0.5;
  margin: 0 0.75rem;
  font-weight: 300;
}

.paq-hero-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85em;
  color: var(--accent);
}

.paq-hero-data {
  font-size: 1rem;
  color: var(--text-1);
  border: 1px solid var(--text-2);
  border-radius: 16px;
  padding: 4px 16px;
}

.paq-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: var(--accent);
  color: var(--base);
  font-weight: 700;
  width: fit-content;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.85em 6.5em;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s;
}
.paq-hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.paq-hero-cta span {
  transition: transform 0.2s;
}
.paq-hero-cta:hover span {
  transform: translateX(3px);
}

/* ── OVERVIEW PÁRRAFO ────────────────────────────── */
.paq-intro-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 0;
}
.paq-intro-text {
  font-size: clamp(1rem, 1.4vw, 2.15rem);
  line-height: 1.4;
  font-weight: 400;
}

.intro {
  margin-top: 34px;
  line-height: 26px;
}
/* ── MOMENTOS — banda horizontal full-bleed ───────── */
/* ── MOMENTOS ICÓNICOS (carousel centrado) ─────────── */
.paq-momentos {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 0 3.5rem;
}
.paq-m-eyebrow {
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.paq-m-title {
  text-align: left;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 2.5rem;
  line-height: 1.1;
  font-family: var(--font-display, "Helvetica Neue", Arial, sans-serif);
}
.paq-m-outer {
  position: relative;
  width: 100%;
  height: clamp(360px, 58vh, 640px);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.paq-m-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.paq-m-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58vw;
  /*max-width: 860px;*/
  height: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  transform-origin: center center;
  transition:
    transform 560ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 520ms ease,
    filter 520ms ease;
  pointer-events: none;
  will-change: transform, opacity, filter;
}
.paq-m-card.is-active {
  pointer-events: auto;
}
.paq-m-card-bg {
  position: absolute;
  inset: 0;
  background: var(--surface-1);
  background-size: cover;
  background-position: center;
}
.paq-m-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 1.8rem;
  background: linear-gradient(
    to top,
    rgba(13, 11, 10, 0.95) 0%,
    rgba(13, 11, 10, 0.55) 45%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 380ms ease 80ms,
    transform 380ms ease 80ms;
}
.paq-m-card.is-active .paq-m-overlay {
  opacity: 1;
  transform: translateY(0);
}
.paq-m-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.paq-m-name {
  font-size: clamp(1.1rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--text-1);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.paq-m-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 11, 10, 0.55);
  backdrop-filter: blur(8px);
  color: var(--text-1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 250ms ease,
    background 200ms ease,
    border-color 200ms ease;
}
.paq-momentos:hover .paq-m-arrow {
  opacity: 1;
}
.paq-m-arrow:hover {
  background: #ff4c2c3a;
  border-color: var(--detail);
}
.paq-m-arrow svg {
  width: 18px;
  height: 18px;
}
.paq-m-arrow-prev {
  left: calc(50% - 29vw - 60px);
}
.paq-m-arrow-next {
  right: calc(50% - 29vw - 60px);
}
.paq-m-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.8rem;
}
.paq-m-dot {
  width: 16px;
  height: 8px;
  border-radius: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 300ms ease,
    width 300ms ease;
}
.paq-m-dot.is-active {
  width: 24px;
  background: rgba(255, 78, 45, 0.7);
}
.paq-m-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.55;
}

/* ── SIDE NAV ─────────────────────────────────────── */
.paq-sidenav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 80;
}
.paq-sn-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.paq-sn-dot.is-active {
  background: var(--accent);
  transform: scale(1.45);
}
.paq-sn-dot::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 11, 10, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.3em 0.8em;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.paq-sn-dot:hover::before {
  opacity: 1;
}

/* ── HERO SCROLL INDICATOR ───────────────────────── */
.paq-hero-scroll {
  display: inline-flex;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.55);
  animation: heroScrollBounce 2s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.paq-hero-scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@keyframes heroScrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* ── ITINERARIO INTRO LINE ────────────────────────── */
.piq-intro-line {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  max-width: 60ch;
  font-style: italic;
}

/* Marcadores personalizados en el mapa */
.map-pin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 137, 4, 0.18);
  border: 2px solid rgba(255, 137, 4, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1),
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.map-pin span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--accent);
  line-height: 1;
  transition: color 0.3s;
}
.map-pin.is-visited {
  background: rgba(255, 137, 4, 0.35);
  border-color: var(--accent);
}
.map-pin.is-visited span {
  color: var(--text-1);
}
.map-pin.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.35);
  box-shadow:
    0 0 0 4px rgba(255, 137, 4, 0.25),
    0 4px 12px rgba(255, 137, 4, 0.4);
}
.map-pin.is-active span {
  color: var(--base);
}

/* ── GALERÍA (peekaboo filmstrip) ─────────────────── */
.paq-galeria {
  position: relative;
  width: 100%;
  background: var(--base);
  margin-bottom: 10rem;
}

.paq-galeria-wrap {
  position: relative;
  height: clamp(50vh, 78vh, 720px);
}
.paq-galeria-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 140px;
  background: linear-gradient(
    to left,
    rgba(13, 11, 10, 0.72) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

.paq-gal-track-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.paq-gal-track-wrap:active {
  cursor: grabbing;
}

.paq-gal-track {
  display: flex;
  column-gap: 12px;
  height: 100%;
  will-change: transform;
  transition: transform 380ms ease-out;
}
.paq-gal-track.is-dragging {
  transition: none;
}

.paq-gal-slide {
  flex: 0 0 calc(100% - 80px);
  height: 100%;
  overflow: hidden;
}
.paq-gal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Arrows */
.paq-gal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(13, 11, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-1);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.2s,
    background 0.2s;
}
.paq-galeria:hover .paq-gal-nav {
  opacity: 1;
}
.paq-gal-nav:hover {
  background: rgba(255, 78, 45, 0.13);
}
.paq-gal-prev {
  left: 3rem;
}
.paq-gal-next {
  right: 3rem;
}

/* Dots */
.paq-gal-dots {
  /*position: absolute;*/
  bottom: 1.25rem;
  left: 50%;
  /*transform: translateX(-50%);*/
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  margin: 16px 0 48px 0;
}
.paq-gal-dot {
  width: 16px;
  height: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.paq-gal-dot.is-active {
  background: rgba(255, 78, 45, 0.7);
  /*transform: scale(1.35);*/
  width: 24px;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .paq-gal-slide {
    flex: 0 0 calc(100% - 40px);
  }
  .paq-gal-nav {
    display: none;
  }
}

/* ── VIDEO ────────────────────────────────────────── */
.paq-video-wrap {
  margin-top: 3rem;
}
.paq-video-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-2);
}
.paq-video-iframe {
  position: absolute;
  width: 100%;
  inset: 0;
  height: 100%;
}

/* ── CTA FINAL ────────────────────────────────────── */
.paq-cta-final {
  background: var(--base);
  border-top: 1px solid var(--border) !important;
}
.paq-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 7rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: radial-gradient(
    ellipse at 50% 50%,
    color-mix(in srgb, var(--accent) 10%, transparent) 0%,
    transparent 65%
  );
}
.paq-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text-1);
}
.paq-cta-title em {
  font-style: italic;
  color: var(--accent);
}
.paq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--base);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  padding: 1.1em 2.8em;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.18s,
    box-shadow 0.2s;
}
.paq-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ── HUBSPOT MODAL ────────────────────────────────── */
.hs-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 11, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hs-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.hs-modal {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34, 1.05, 0.64, 1);
}
.hs-overlay.is-open .hs-modal {
  transform: translateY(0) scale(1);
}
.hs-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-2);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.hs-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-1);
}
.hs-modal-header {
  margin-bottom: 1.5rem;
}
.hs-modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-top: 0.4rem;
}

/* ── TT FORM (MODAL DE CONTACTO) ───────────────────
   Va dentro de .hs-modal, que ya define la caja, el cierre y el header.
   Único cambio respecto del original: el foco usaba var(--amber), que no
   existe en este proyecto — se usa var(--accent). */
.tt-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.tt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tt-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tt-field label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 600;
}
.tt-form input,
.tt-form select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.tt-form input::placeholder {
  color: var(--text-3);
}
.tt-form input:focus,
.tt-form select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-3);
}
.tt-phone-group {
  display: flex;
  gap: 0.6rem;
}
.tt-country-select {
  flex: 0 0 92px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23a09590'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 1.8rem;
}
.tt-phone-input {
  flex: 1;
}
.tt-legal {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-3);
}
.tt-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 2rem;
}
.tt-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.tt-msg {
  min-height: 1.1em;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}
/* El original pintaba el error con un hex suelto desde el JS; acá el
   color sale del token del proyecto y el JS sólo pone la clase. */
.tt-msg--error {
  color: var(--detail);
}
@media (max-width: 480px) {
  .tt-row {
    grid-template-columns: 1fr;
  }
}

/* ── SCROLL REVEAL ────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  /* Ciudades: ocultar mapa, accordion full width */
  .paq-scrolly-wrap {
    grid-template-columns: 1fr;
  }
  .paq-scrolly-map-wrap {
    display: none;
  }
}

@media (max-width: 768px) {
  .paq-sidenav {
    display: none;
  }

  .paq-intro-wrap {
    padding: 4rem 1.5rem;
  }
  .pbr-inner {
    flex-direction: column;
    height: auto;
    padding: 1rem 1.5rem;
    gap: 1rem;
    align-items: flex-start;
  }
  .pbr-items {
    flex-wrap: wrap;
    gap: 0.5rem 0;
  }
  .pbr-sep {
    margin: 0 1.25rem;
  }
  .pbr-cta {
    width: 100%;
    justify-content: center;
  }

  .paq-section {
    padding: 5rem 0;
  }

  .paq-galeria {
    margin-bottom: 5rem;
  }
}

/* ── STICKY BAR — mobile grid layout (≤640px) ──────────────────── */
@media (max-width: 640px) {
  .pbr-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 10px 16px 14px;
    gap: 1rem 0.75rem;
    align-items: start;
    border-radius: 20px 20px 0 0;
    box-shadow:
      0 -8px 40px rgba(0, 0, 0, 0.7),
      0 0 0 1px rgba(255, 137, 4, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }
  .pbr-price {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }
  .pbr-price-value {
    font-size: 1.4rem;
  }
  .pbr-items {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    flex-direction: row;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: nowrap;
    font-size: 0; /* ocultar text-node separador " . " */
    margin: 0;
  }
  .pbr-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    font-size: 1rem;
  }
  .pbr-sep {
    display: none;
  }
  .pbr-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 44px;
    padding: 0;
    margin: 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .paq-hero-bottom {
    padding: 0 1.5rem clamp(1.5rem, 4vh, 2.5rem);
  }

  .paq-m-card {
    width: 80vw;
  }
  .paq-m-eyebrow,
  .paq-m-title {
    padding-left: calc(50% - 40vw);
  }
  .paq-m-arrow-prev {
    left: calc(50% - 40vw - 52px);
  }
  .paq-m-arrow-next {
    right: calc(50% - 40vw - 52px);
  }
  .paq-accord-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .paq-m-card {
    width: 86vw;
    height: 58vh;
  }
  .paq-m-eyebrow,
  .paq-m-title {
    padding-left: calc(50% - 43vw);
  }
  .paq-m-arrow-prev {
    left: calc(50% - 43vw - 52px);
  }
  .paq-m-arrow-next {
    right: calc(50% - 43vw - 52px);
  }
  .paq-m-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
  }
  .fc-chip-btn {
    font-size: 0.9rem;
  }
}

/* ── HERO SKELETON ───────────────────────────────── */
.paq-hero-skeleton {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: opacity 0.22s ease-out;
}
.paq-hero-skeleton.is-exiting {
  opacity: 0;
}

.skel-bone {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 25%,
    rgba(255, 255, 255, 0.13) 50%,
    rgba(255, 255, 255, 0.06) 75%
  );
  background-size: 200% 100%;
  animation: skel-shimmer 1.6s ease-in-out infinite;
  border-radius: 6px;
}
@keyframes skel-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.skel-title {
  height: 54px;
  width: 78%;
  border-radius: 8px;
}
.skel-title-short {
  width: 50%;
  margin-top: 0.5rem;
}

/* ── HERO ENTRANCE STAGGER ───────────────────────── */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
}
.hero-anim.hero-anim-enter {
  animation: heroSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hairline variant: grows from left instead of sliding up */
.hero-anim.hero-anim-line {
  transform: scaleX(0);
  opacity: 1;
  transform-origin: left center;
}
.hero-anim.hero-anim-line.hero-anim-enter {
  animation: hairlineGrow 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes hairlineGrow {
  to {
    transform: scaleX(1);
  }
}

.skel-hairline {
  width: 100%;
  height: 1px;
  border-radius: 0;
  margin-bottom: 1rem;
}

/* ── ITINERARIO FUSIONADO — 2 columnas ──────────────── */
.paq-itinerario {
  padding: 0 !important;
}

/* ── Sticky scroll scene ─────────────────────────────── */
.paq-itinerario {
  padding: 0 !important;
}
.piq-scroll-sticky {
  position: sticky;
  top: 64px; /* 64px nav */
  height: calc(100vh - 64px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.piq-progress {
  flex-shrink: 0;
  height: 2px;
  background: var(--border);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
.piq-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 2px;
}

.piq-recorrido {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: start;
  flex: 1;
  min-height: 0;
  max-width: 1280px;
  margin: auto;
  overflow: hidden;
  width: 100%;
  gap: 1rem;
}
.piq-col-left {
  overflow-y: auto;
  height: 100%;
}
.piq-col-inner {
  padding: 0rem 1.5rem 3rem 0;
}
.piq-col-right {
  overflow: hidden;
  border-radius: 16px;
  margin: auto 0;
}
#piqItinMap {
  width: 100%;
  height: 100%;
}

/* Badge sobre el mapa */
.piq-map-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(13, 11, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.3rem 0.85rem 0.3rem 0.55rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
  pointer-events: none;
}
.piq-map-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(255, 137, 4, 0.9);
  flex-shrink: 0;
}

/* Grid calendario */
.piq-cal {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 4px;
}
.piq-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem 0.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.piq-cell.is-hover {
  background: rgba(255, 78, 45, 0.07);
  border-color: rgba(255, 78, 45, 0.2);
}
.piq-cell.is-active {
  background: var(--surface-1);
  border-color: rgba(255, 78, 45, 0.45);
}
.piq-num {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1;
  letter-spacing: -0.02em;
}
.piq-cell.is-active .piq-num {
  color: var(--accent);
}
.piq-name {
  font-size: clamp(0.52rem, 0.9vw, 0.98rem);
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.2;
  word-break: break-word;
}
.piq-cell.is-active .piq-name {
  color: var(--text-1);
}

.piq-day-num {
  font-size: 14px;
  color: var(--text-2);
  line-height: 2.2;
  word-break: break-word;
}

.piq-transit-pill {
  position: absolute;
  left: calc(100% + 2px);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #181512;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a09590;
  pointer-events: none;
}
.piq-transit-pill svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* Celdas de vuelo (Ida / Vuelta) */
.piq-cell-flight {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.6rem 0.25rem;
  background: color-mix(in srgb, var(--accent) 4%, transparent);
  border-radius: var(--r-md);
  text-align: center;
  cursor: default;
  user-select: none;
}
.piq-cell-flight svg {
  width: 32px;
  height: 32px;
  color: var(--text-2);
  opacity: 0.85;
}
.piq-flight-label {
  font-size: clamp(0.48rem, 0.7vw, 0.58rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  opacity: 0.7;
  line-height: 1.2;
}

@keyframes piqCardEnter {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.piq-city-card.is-entering {
  animation: piqCardEnter 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* City card */
.piq-city-card {
  background: var(--surface-1);
  border: 1px solid rgba(255, 78, 45, 0.45);
  border-radius: var(--r-md);
  overflow: hidden;
}
.piq-cc-body {
  padding: 1.2rem 1.4rem 1.1rem;
}
.piq-cc-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.piq-cc-chip {
  background: var(--accent);
  color: var(--base);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.piq-cc-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-1);
  flex: 1;
}
.piq-cc-days {
  font-size: 0.72rem;
  color: var(--text-2);
  white-space: nowrap;
}
.piq-cc-act-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  /*color: var(--text-2);*/
  margin-bottom: 0.55rem;
}
.piq-cc-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  margin: 1.5rem 0;
  line-height: 1.5;
}
.piq-cc-acts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.piq-cc-acts li {
  font-size: 0.82rem;
  color: var(--text-1);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.piq-cc-acts li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.piq-cc-photo {
  height: 285px;
  background-size: cover;
  background-position: center;
}

/* Mobile */
@media (max-width: 768px) {
  .piq-scroll-sticky {
    position: static;
    height: auto;
    overflow: visible;
    display: block;
  }
  .piq-recorrido {
    grid-template-columns: minmax(0, 1fr);
    flex: none;
    min-height: 0;
    overflow: visible;
    height: auto;
  }
  .piq-col-left {
    height: auto;
    overflow: visible;
  }
  .piq-col-right {
    display: block;
    position: static;
    margin: 0;
    padding: 0 1.25rem 0;
    border-radius: 0;
  }
  .piq-city-card {
    margin-top: 0;
  }
  .piq-cc-desc {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0.75rem 0;
  }
  .piq-col-inner {
    padding: 1.5rem 1.25rem 0.75rem;
  }
  .piq-num {
    font-size: 1rem;
  }
  .piq-cal {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
    padding-bottom: 0.5rem;
  }
  .piq-cal::-webkit-scrollbar {
    display: none;
  }
  .piq-cell {
    flex: 0 0 70px;
  }
  .piq-cell-flight {
    flex: 0 0 70px;
  }
  .piq-progress {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════
         CUSTOM NAVBAR
         ══════════════════════════════════════════════════════════════════════ */
.custom-navbar {
  margin: 4px auto;
  max-width: 1280px;
  border-radius: 16px;
  display: block;
  padding: 0;
  height: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
}
.custom-navbar.is-scrolled {
  background: transparent;
  border-bottom: 1px solid var(--border);
}
/* ::before carries the blur — this way position:fixed children
         keep the viewport as their containing block (not the navbar) */
.custom-navbar.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 10, 0.82);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-radius: inherit;
  z-index: -1;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem;
}
.custom-navbar .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.custom-navbar .nav-logo img {
  height: 28px;
  width: auto;
}
.custom-navbar .nav-logo svg {
  height: 32px;
  width: auto;
  display: block;
  overflow: hidden;
  flex-shrink: 0;
}

/* Nav list */
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.1rem;
  height: 64px;
  color: var(--text-1);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  background: none;
}
.nav-link:hover {
  opacity: 0.75;
}
.nav-arrow {
  font-size: 0.55rem;
  transition: transform 0.22s;
  display: inline-block;
  opacity: 0.6;
}
.header-dropdown.is-open > .nav-link {
  opacity: 1;
}
.header-dropdown.is-open .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown panels */
.dropdown-menu {
  position: fixed;
  top: var(--nav-panel-top, 64px);
  left: 0;
  right: 0;
  background: rgba(13, 11, 10, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.2rem clamp(1.5rem, 4vw, 3rem) 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 99;
}
.dropdown-menu.menu-right {
  left: auto;
  right: clamp(1.5rem, 4vw, 3rem);
  width: 280px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  padding: 1.75rem;
}
.header-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dropdown columns */
.dropdown-columns {
  display: flex;
  gap: 3rem;
}
.dropdown-columns.cols-4 {
  gap: 2.5rem;
}
.dropdown-column {
  flex: 1;
  min-width: 0;
}

.column-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
  cursor: default;
}
.column-title.pointer {
  cursor: pointer;
}
.column-title .mochi {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-3);
  font-size: 0.82em;
  font-family: var(--font-body);
}
.dropdown-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.dropdown-column ul li a {
  display: block;
  padding: 0.22rem 0;
  color: var(--text-2);
  font-size: 0.78rem;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.16s;
}
.dropdown-column ul li a:hover {
  color: var(--accent);
}
.dropdown-column hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.55rem 0;
}

/* Mobile elements — hidden on desktop */
.mobile-nav-header {
  display: none;
}

/* Hamburger */
#hamburgerBtn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  flex-shrink: 0;
}
#hamburgerBtn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  transition:
    transform 0.28s,
    opacity 0.28s;
}
#hamburgerBtn.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
#hamburgerBtn.is-active span:nth-child(2) {
  opacity: 0;
}
#hamburgerBtn.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.45);
}
.menu-overlay.is-visible {
  display: block;
}

/* ── Mobile ────────────────────────────────────────────---------------------------------------------------------------------──── */
@media (max-width: 640px) {

  .custom-navbar {
    margin-top: 0;
    border-radius: 0 0 16px 16px ;
  }
}

@media (max-width: 900px) {
  #hamburgerBtn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(13, 11, 10, 0.98);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-left: none;
    transform: translateY(-100%);
    transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 2rem;
  }
  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1.5rem;
  }
  .nav-link {
    height: auto;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    justify-content: space-between;
  }

  /* Mobile dropdowns — accordion */
  .dropdown-menu {
    position: static;
    width: auto;
    opacity: 1;
    pointer-events: none;
    transform: none;
    background: transparent;
    border: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .dropdown-menu.menu-right {
    left: auto;
    right: auto;
    width: auto;
    border-radius: 0;
    padding: 0;
  }
  .header-dropdown.is-open .dropdown-menu {
    pointer-events: auto;
    max-height: 1200px;
    padding: 0.75rem 0 1rem;
  }

  .dropdown-columns {
    flex-direction: column;
    gap: 1.25rem;
  }
  .dropdown-columns.cols-4 {
    gap: 1.25rem;
  }
  .dropdown-column {
    flex: none;
  }
}
/* end @media 900px */

/* ── Mobile close button ─────────────────────────────── */
.mobile-nav-close-wrap {
  display: none;
}

/* ── Mega panel ────────────────────────────────────────── */
.mega-panel {
  padding: 0;
}
.mega-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* X close button — desktop only */
.mega-close {
  position: absolute;
  top: 0.9rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition:
    color 0.18s,
    background 0.18s;
  line-height: 1;
}
.mega-close:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.07);
}

.mega-tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mega-tab {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  padding: 1.1rem 1.5rem 1rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 0.18s,
    border-color 0.18s;
  white-space: nowrap;
}
.mega-tab:hover {
  color: var(--text-1);
}
.mega-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.mega-tab-sub {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text-3);
}
.mega-tab.is-active .mega-tab-sub {
  color: color-mix(in srgb, var(--accent) 55%, transparent);
}

.mega-pane {
  display: none;
  padding: 1.5rem 0 2rem;
}
.mega-pane.is-active {
  display: block;
}

/* Destination cards */
.mega-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.25rem;
}
.mega-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.mega-card:hover {
  transform: translateY(-3px);
}
.mega-card.is-placeholder {
  opacity: 0.4;
  pointer-events: none;
}
.mega-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: center/cover no-repeat;
  border-radius: 6px;
  overflow: hidden;
}
.mega-card-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.35;
  transition: color 0.16s;
}
.mega-card:hover .mega-card-label {
  color: var(--text-1);
}

/* Gradient fallbacks */
.ndg-vietnam {
  background: linear-gradient(135deg, #0d3b2e 0%, #2d6a4f 60%, #1a472a 100%);
}
.ndg-thailand {
  background: linear-gradient(135deg, #4a2800 0%, #c77b37 60%, #8b4513 100%);
}
.ndg-indonesia {
  background: linear-gradient(135deg, #0d0d4d 0%, #1a1a8e 60%, #00356b 100%);
}
.ndg-japan {
  background: linear-gradient(135deg, #3b0000 0%, #8b0000 60%, #4b0000 100%);
}
.ndg-filipinas {
  background: linear-gradient(135deg, #001a66 0%, #003399 60%, #004fa3 100%);
}
.ndg-china {
  background: linear-gradient(135deg, #4d0000 0%, #990000 60%, #cc0000 100%);
}
.ndg-africa {
  background: linear-gradient(135deg, #3d2000 0%, #8b5e3c 60%, #5c3a10 100%);
}
.ndg-viet-thai {
  background: linear-gradient(135deg, #0d3b2e 0%, #4a2800 100%);
}
.ndg-thai-indo {
  background: linear-gradient(135deg, #4a2800 0%, #0d0d4d 100%);
}
.ndg-indo-jap {
  background: linear-gradient(135deg, #0d0d4d 0%, #3b0000 100%);
}
.ndg-jap-fili {
  background: linear-gradient(135deg, #3b0000 0%, #001a66 100%);
}
.ndg-thai-cambo {
  background: linear-gradient(135deg, #4a2800 0%, #1a3300 60%, #0d3b2e 100%);
}
.ndg-viet-china {
  background: linear-gradient(135deg, #0d3b2e 0%, #4d0000 100%);
}
.ndg-china-jap {
  background: linear-gradient(135deg, #4d0000 0%, #3b0000 100%);
}

/* CTA button */
.nav-cta-item {
  margin-left: 0.5rem;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  color: #0d0b0a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 100px;
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  opacity: 0.82;
  transform: translateX(2px);
}

/* ── Mobile overrides @900px ─────────────────────────── */
@media (max-width: 900px) {
  .mobile-nav-close-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem 0.75rem;
    position: sticky;
    top: 0;
    background: rgba(13, 11, 10, 0.96);
    backdrop-filter: blur(12px);
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-1);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.4rem 0.5rem;
    line-height: 1;
    opacity: 0.65;
    transition: opacity 0.2s;
  }
  .mobile-nav-close:hover {
    opacity: 1;
  }

  .mega-close {
    display: none;
  }

  /* Mega panel tabs on mobile */
  .mega-tabs-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mega-tabs-bar::-webkit-scrollbar {
    display: none;
  }
  .mega-tab {
    padding: 0.8rem 1rem 0.7rem;
    font-size: 0.65rem;
  }

  .mega-pane {
    padding: 0.75rem 0 0.5rem;
  }
  .mega-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .nav-cta-item {
    margin: 1rem 1.5rem 0;
  }
  .nav-cta {
    display: flex;
    justify-content: center;
    padding: 0.75rem 1.1rem;
  }
}

/* ── PAQ RUTA MAPA ─────────────────────────────────── */
.paq-ruta-mapa {
  background: var(--surface-1);
}

.paq-ruta-map {
  position: relative;
  width: 100%;
  height: 440px;
  margin-top: 1.5rem;
  overflow: visible;
}
.paq-ruta-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.paq-ruta-mobile {
  display: none;
  margin-top: 1.5rem;
}

.prm-path-dim {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
  stroke-dasharray: 8 5;
}
.prm-path-active {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 8 5;
  opacity: 0.65;
  animation: flowDash 1.2s linear infinite;
}
.prm-glow-active {
  fill: none;
  stroke: var(--accent);
  stroke-width: 7;
  opacity: 0.07;
  animation: flowDash 1.2s linear infinite;
  filter: url(#paqRouteGlow);
}
.prm-pulse {
  fill: rgba(255, 137, 4, 0.06);
  stroke: rgba(255, 137, 4, 0.4);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: prmPulse 2.4s ease-out infinite;
}
@keyframes prmPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}
.prm-nodo-active .nodo-img {
  border-color: var(--accent);
  box-shadow:
    0 0 22px rgba(255, 137, 4, 0.32),
    0 0 0 3px rgba(255, 137, 4, 0.1);
}
.prm-nodo-active .nodo-img img {
  filter: brightness(1) saturate(1.1);
}
.prm-nodo-active .nodo-label {
  color: var(--accent);
  font-weight: 700;
}

.paq-ruta-mobile .rmv-line {
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 4px,
    transparent 4px,
    transparent 8px
  );
}
.paq-ruta-mobile .rmv-line.prm-line-active {
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 137, 4, 0.7) 0px,
    rgba(255, 137, 4, 0.7) 4px,
    transparent 4px,
    transparent 8px
  );
}
@media (max-width: 900px) {
  .paq-ruta-map {
    display: none;
  }
  .paq-ruta-mobile {
    display: block;
  }
}

/* ── INFO PRÁCTICA DEL DESTINO ──────────────────────────────────────── */

.qf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.675rem;
  align-items: start;
  margin-top: 2.5rem;
}

.qf-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.4rem;
  display: flex;
  flex-direction: column;
  height: 460px;
}

.qf-card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: var(--detail);
  flex-shrink: 0;
}

.qf-card-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-1);
}

/* Multi-country rows (Clima, Moneda, Idioma) */
.qf-multi {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.qf-multi-item {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.qf-cpill {
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.qf-val {
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.3;
}

.qf-mono-info,
.qf-idioma-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.qf-row-uyu {
  font-size: 0.63rem;
  color: var(--text-2);
}

.qf-nota {
  font-size: 0.7rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* List-style cards (Actividades, Platos) */
.qf-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.qf-list-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid rgb(255 77 44 / 30%);
  min-height: 0;
  padding: 0.4rem 0;
}

.qf-list-item:last-child {
  border-bottom: none;
}

.qf-bullet {
  font-size: 0.65rem;
  color: var(--detail);
  flex-shrink: 0;
  opacity: 0.75;
}

.qf-list-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.qf-list-name {
  font-size: 0.82rem;
  color: var(--text-1);
  font-weight: 500;
  line-height: 1.3;
}

.qf-list-sub {
  font-size: 0.68rem;
  color: var(--text-2);
}

/* Tip at card bottom */
.qf-tip {
  padding-top: 1rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgb(255 77 44 / 30%);
  flex-shrink: 0;
}

.qf-tip-text {
  font-size: 0.72rem;
  color: var(--text-2);
  line-height: 1.6;
}

.qf-empty {
  font-size: 0.78rem;
  color: var(--text-3);
  font-style: italic;
  flex: 1;
}

/* Responsive */
@media (max-width: 1100px) {
  .qf-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .qf-card {
    height: auto;
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .qf-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 460px) {
  .qf-grid {
    grid-template-columns: 1fr;
  }
}

/* ── REVIEWS ─────────────────────────────────────────────────────────── */

.rev-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
}

.rev-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.rev-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  flex-shrink: 0;
}
.rev-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.rev-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.rev-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rev-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    width 0.2s;
  flex-shrink: 0;
}
.rev-dot.is-active {
  background: var(--accent);
  width: 18px;
  border-radius: 3px;
}

.rev-card {
  width: calc((100% - 2 * 1.25rem) / 3);
  flex-shrink: 0;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rev-avatar-wrap {
  flex-shrink: 0;
}

.rev-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--surface-3);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}

.rev-avatar-initial {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.rev-text {
  font-size: 0.9rem;
  color: var(--text-1);
  line-height: 1.65;
  flex: 1;
}

.rev-name {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.rev-grid {
  display: flex;
  justify-content: space-between;
  overflow-x: scroll;
}

@media (max-width: 800px) {
  .rev-card {
    width: calc(100% - 2rem);
    margin: 0 0.4rem;
  }
  .rev-track {
    gap: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE FIXES — paquete.html (375–390 px)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Global .paq-inner horizontal breathing room ──────────────────────────── */
@media (max-width: 767px) {
  .paq-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ── #paqGaleria — right-fade gradient size ───────────────────────────────── */
@media (max-width: 767px) {
  .paq-galeria-wrap::after {
    width: 60px;
  }
  .paq-galeria-wrap {
    height: 60vh;
  }
}

/* ── #paqIncluye — feature chips: real viewport MQ (replaces .mobile-view) ── */
@media (max-width: 767px) {
  .fc-wrap {
    height: auto;
    border-radius: 0;
    overflow: hidden;
    background: var(--surface-3);
    margin-top: 2rem;
    margin-left: -1.25rem;
    width: calc(100% + 2.5rem);
  }
  .fc-right {
    display: none;
  }
  .fc-left {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
  }
  .fc-left::-webkit-scrollbar {
    display: none;
  }
  /* Kill fixed chip widths so nothing overflows the viewport */
  .fc-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: auto;
  }
  .fc-chip.is-active {
    width: auto;
    background: rgba(255, 137, 4, 0.12);
    border-color: rgba(255, 137, 4, 0.35);
  }
  .fc-chip:not(.is-active):hover {
    transform: none;
  }
  .fc-chip-btn {
    padding: 12px 18px;
    white-space: nowrap;
  }
  .fc-chip.is-active .fc-chip-btn {
    padding: 12px 18px;
  }
  .fc-expand {
    display: none;
  }
  /* Icon stays visible — chip no longer expands on mobile */
  .fc-chip .fc-icon {
    display: inline-flex;
  }
  .fc-chip.is-active .fc-icon {
    opacity: 1;
    transform: none;
    max-width: 20px;
    margin-right: 12px;
  }
}

/* ── #paqMomentos — arrows visible on touch devices ──────────────────────── */
@media (max-width: 767px) {
  .paq-m-arrow {
    opacity: 0.6;
  }
  /* Recalculated positions avoid negative left/right values at narrow widths */
  .paq-m-arrow-prev {
    left: 0.75rem;
  }
  .paq-m-arrow-next {
    right: 0.75rem;
  }
}

/* ── #paqRelacionados — related-packages grid ────────────────────────────── */
@media (max-width: 700px) {
  /* .paq-relacionados .dest-grid {
    grid-template-columns: 1fr 1fr;
  }*/
}
@media (max-width: 480px) {
  .paq-relacionados .dest-grid {
    grid-template-columns: 1fr;
  }
}

/* ── #paqInfoPractica — horizontal swipe rail on mobile ─────────────────── */
@media (max-width: 767px) {
  .qf-grid {
    display: flex;
    align-items: stretch;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    padding-bottom: 4px;
  }
  .qf-grid::-webkit-scrollbar {
    display: none;
  }
  .qf-card {
    flex: 0 0 65%;
    scroll-snap-align: start;
    height: auto;
    align-self: stretch;
  }
  /* Fade overlay positioned on the inner so it only covers card area */
  .paq-info-practica .paq-inner {
    position: relative;
  }
  .paq-info-practica .paq-inner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 56px;
    background: linear-gradient(to left, var(--base) 8%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    opacity: var(--qf-fade-op, 1);
    transition: opacity 0.3s;
  }
}

/* ── ACTIVIDADES (dos rows) ──────────────────────────────────────────────── */

/* Filter chips */
.act-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.act-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
  user-select: none;
}
.act-filter-chip:hover:not(.is-active) {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-1);
}
.act-filter-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0b0a;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.act-card {
  position: relative;
  height: 267px;
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.act-card.is-out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
@keyframes actCardIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.act-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.act-card:hover .act-img {
  transform: scale(1.06);
}

.act-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.1) 45%,
    transparent 70%
  );
}

.act-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 0.22rem 0.6rem;
  backdrop-filter: blur(8px);
}
.act-badge-inc {
  background: #0d0b0a;
  color: var(--accent);
}
.act-badge-sug {
  background: rgba(80, 84, 80, 0.5);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.act-info {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
}

.act-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.act-city {
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 767px) {
  .act-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .act-card {
    height: 200px;
  }
}

/* ── site-footer mobile — manejado por el bloque de footer al final del CSS ── */

/* ═══════════════════════════════════════════════════════════════
   NAV OVERLAY — nuevo sistema de menú
   ═══════════════════════════════════════════════════════════════ */

/* Nav right: hamburger + CTA (siempre visibles) */
.nav-right {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 601;
}

/* Links del desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop li {
  display: flex;
}
.nav-link.is-open {
  opacity: 1;
}
.nav-link.is-open .nav-arrow {
  transform: rotate(180deg);
}

/* Hamburger — siempre visible en el nuevo nav */
#hamburgerBtn {
  display: none;
  margin: 0 0.5rem;
}

/* CTA dentro de nav-right */
.nav-right .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid #f5f0eb;
  color: #f5f0eb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition:
    opacity 0.2s,
    transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-right .nav-cta:hover {
  opacity: 0.82;
  transform: translateX(2px);
}

/* Mobile: ocultar links de desktop */
@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  #hamburgerBtn {
    margin: 0 0.25rem;
    display: flex !important;
  }
  .nav-right .nav-cta {
    display: none;
  }
}

/* ── Overlay ────────────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.nav-overlay.is-open {
  transform: translateY(0);
}

/* Panel izquierdo */
.ov-left {
  flex: 0 0 56%;
  background: var(--base);
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid var(--border);
  overflow-y: auto;
  overflow-x: hidden;
}
.ov-topbar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(2rem, 7vw, 5.5rem);
  height: 64px;
  border-bottom: 1px solid var(--border);
  background: var(--base);
  flex-shrink: 0;
  z-index: 2;
}
.ov-topbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.ov-topbar-logo svg {
  height: 28px;
  width: auto;
  display: block;
}
.ov-close {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.18s,
    background 0.18s;
}
.ov-close:hover {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
}

/* Lista de ítems */
.ov-nav {
  list-style: none;
  width: 100%;
  padding: 1rem 0 6rem;
}
.ov-item {
  border-bottom: 1px solid var(--border);
}
.ov-item:first-child {
  border-top: 1px solid var(--border);
}

.ov-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem clamp(2rem, 7vw, 5.5rem);
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  text-align: left;
  font-family: var(--font-body);
}
.ov-label-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.06rem;
}
.ov-label {
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-1);
  line-height: 1.05;
  transform: translateY(32px);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    color 0.2s ease;
}
.ov-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  transform: translateY(32px);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.04s,
    opacity 0.4s ease 0.04s,
    color 0.2s ease;
}
.ov-indicator {
  font-size: 1.1rem;
  color: var(--text-3);
  transform: translateY(32px);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    color 0.2s ease,
    rotate 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}

/* Hover */
.ov-link:hover .ov-label {
  color: var(--accent);
}
.ov-link:hover .ov-sub {
  color: color-mix(in srgb, var(--accent) 45%, transparent);
}
.ov-item--direct .ov-link:hover .ov-indicator {
  color: var(--accent);
  transform: translateX(6px) !important;
  opacity: 1 !important;
}
.ov-item--accordion .ov-link:hover .ov-indicator {
  color: var(--accent);
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Estado abierto */
.ov-item--accordion.is-open .ov-label {
  color: var(--accent);
}
.ov-item--accordion.is-open .ov-indicator {
  rotate: 45deg;
  color: var(--accent);
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger de entrada */
.nav-overlay.is-open .ov-label,
.nav-overlay.is-open .ov-sub,
.nav-overlay.is-open .ov-indicator {
  transform: translateY(0);
  opacity: 1;
}

.nav-overlay.is-open .ov-item:nth-child(1) .ov-label {
  transition-delay: 0.14s;
}
.nav-overlay.is-open .ov-item:nth-child(1) .ov-sub {
  transition-delay: 0.17s;
}
.nav-overlay.is-open .ov-item:nth-child(1) .ov-indicator {
  transition-delay: 0.16s;
}
.nav-overlay.is-open .ov-item:nth-child(2) .ov-label {
  transition-delay: 0.21s;
}
.nav-overlay.is-open .ov-item:nth-child(2) .ov-sub {
  transition-delay: 0.24s;
}
.nav-overlay.is-open .ov-item:nth-child(2) .ov-indicator {
  transition-delay: 0.23s;
}
.nav-overlay.is-open .ov-item:nth-child(3) .ov-label {
  transition-delay: 0.28s;
}
.nav-overlay.is-open .ov-item:nth-child(3) .ov-indicator {
  transition-delay: 0.3s;
}
.nav-overlay.is-open .ov-item:nth-child(4) .ov-label {
  transition-delay: 0.35s;
}
.nav-overlay.is-open .ov-item:nth-child(4) .ov-indicator {
  transition-delay: 0.37s;
}
.nav-overlay.is-open .ov-item:nth-child(5) .ov-label {
  transition-delay: 0.42s;
}
.nav-overlay.is-open .ov-item:nth-child(5) .ov-sub {
  transition-delay: 0.45s;
}
.nav-overlay.is-open .ov-item:nth-child(5) .ov-indicator {
  transition-delay: 0.44s;
}

/* Acordeón */
/* grid 0fr→1fr en vez de max-height: anima a la altura real. Con
   max-height:900px el panel de Grupos (3 columnas, 28 destinos) se
   recortaba, y en mobile las columnas se apilan y es todavía más alto. */
.ov-accordion {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.ov-item--accordion.is-open .ov-accordion {
  grid-template-rows: 1fr;
}

/* --cols lo fija el markup con el número real de columnas, así la
   divisoria cae siempre entre ellas y no donde decida un auto-fit. */
.ov-accordion-inner {
  overflow: hidden;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(var(--cols, 1), minmax(0, 1fr));
  gap: 1.25rem 2rem;
  padding: 0 clamp(2rem, 7vw, 5.5rem);
}
.ov-item--accordion.is-open .ov-accordion-inner {
  padding-block: 0.5rem 1.25rem;
}

/* Divisoria entre columnas. Va sobre la columna siguiente, así con una
   sola columna (Individuales, Universitarios) no queda una línea suelta. */
.acc-col + .acc-col {
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}
.acc-section-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
}
.acc-links {
  display: flex;
  flex-direction: column;
}
/* Divisoria entre bloques de una misma columna: en África separa los
   destinos sueltos de las combinaciones. */
.acc-links + .acc-links {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.acc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    color 0.18s,
    padding-left 0.18s;
}
.acc-link:last-child {
  border-bottom: none;
}
/* Sólo los que son enlace de verdad reaccionan al hover: .acc-link
   también lo usan los <span> de los destinos que todavía no tienen
   página. */
a.acc-link:hover {
  color: var(--text-1);
  padding-left: 0.4rem;
}
.acc-link--inerte {
  color: var(--text-3);
  cursor: default;
}
.acc-link-arrow {
  font-size: 0.7rem;
  color: var(--text-3);
  transition: color 0.18s;
}
a.acc-link:hover .acc-link-arrow {
  color: var(--text-2);
}
.acc-coming {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  width: fit-content;
}

/* Franja inferior */
.ov-bottom {
  position: sticky;
  bottom: 0;
  padding: 1.1rem clamp(2rem, 7vw, 5.5rem);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--base);
  flex-shrink: 0;
  z-index: 2;
}
.ov-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.ov-socials {
  display: flex;
  gap: 1.5rem;
}
.ov-socials a {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.18s;
}
.ov-socials a:hover {
  color: var(--text-1);
}

/* Panel derecho — foto */
.ov-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.ov-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.ov-photo.is-active {
  opacity: 1;
}
.ov-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(to right, var(--base), transparent);
  z-index: 2;
  pointer-events: none;
}
/* Una foto por entrada del menú. Las de asia/africa/tutoque/trekking se
   fueron con esas entradas. */
.ov-photo-grupos,
.ov-photo-individuales,
.ov-photo-universitarios,
.ov-photo-contacto {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ov-photo-grupos {
  background-image: url("../assets/img/chi-jap.webp");
}
.ov-photo-individuales {
  background-image: url("../assets/img/tai.webp");
}
.ov-photo-universitarios {
  background-image: url("../assets/img/nepal.webp");
}
.ov-photo-contacto {
  background-image: url("../assets/img/india.jpg");
}
.ov-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 11, 10, 0.2) 0%,
    transparent 50%,
    rgba(13, 11, 10, 0.5) 100%
  );
  pointer-events: none;
}
.ov-photo-lbl {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease 0.15s,
    transform 0.3s ease 0.15s;
  z-index: 3;
}
.ov-photo.is-active .ov-photo-lbl {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px) {
  .ov-right {
    display: none;
  }
  .ov-left {
    flex: 0 0 100%;
    width: 100%;
    border-right: none;
  }
  .ov-label {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .ov-bottom {
    display: none;
  }
  /* Las columnas del acordeón se apilan y la divisoria pasa a horizontal. */
  .ov-accordion-inner {
    grid-template-columns: 1fr;
  }
  .acc-col + .acc-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
  }
}

/* ── FAQs ──────────────────────────────────────────────────────────────────── */
.faq-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
.faq-subtitle {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 400px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  list-style: none;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-1);
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--accent);
}
.faq-question:hover .faq-icon {
  border-color: var(--accent);
  color: var(--accent);
}
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--base);
}
.faq-item.is-open .faq-icon svg {
  transform: rotate(45deg);
}
.faq-item.is-open .faq-question {
  color: var(--accent);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-body {
  grid-template-rows: 1fr;
}
.faq-body-inner {
  overflow: hidden;
}
.faq-answer {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  padding-bottom: 1.75rem;
  max-width: 780px;
}
.faq-answer strong {
  color: var(--text-1);
  font-weight: 500;
}
.faq-cta-strip {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.faq-cta-strip-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.faq-cta-strip-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-1);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.faq-cta-strip-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--base);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-pill);
  padding: 0.75em 1.75em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.faq-cta-strip-btn:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .faq-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .faq-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══ FOOTER ══════════════════════════════════════════ */
/* reset estilos del footer viejo */
.site-footer {
  background: var(--base);
  display: block;
  padding: 0;
  border-top: none;
  gap: unset;
  grid-template-columns: unset;
}

.ft-link {
  display: block;
  font-size: 0.75rem;
  color: var(--text-2);
  text-decoration: none;
  padding: 0.18rem 0;
  line-height: 1.5;
  transition: color 0.15s;
}
.ft-link:hover {
  color: var(--text-1);
}

.ft-sec-title {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-1);
}

.ft-logo-img {
  height: 36px;
  display: block;
}
.ft-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 0.5rem;
}

/* top */
.ft-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 0 0 0;
  width: 1280px;
  margin: 0 auto;
}
.ft-top-actions {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}
.ft-top-actions a {
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}
.ft-top-actions a:hover {
  color: var(--accent);
}
.ft-top-actions .wa {
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  padding: 0.38rem 0.85rem;
  border-radius: 100px;
  color: var(--accent);
  font-weight: 600;
}
.ft-top-actions .wa:hover {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

/* main grid — grupos=2x, individuales=1.5x, trekking=1x, universitarios=1x */
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 0 2.5rem;
  padding: 2.5rem 0rem;
  align-items: start;
  margin: 0 auto;
  width: 1280px;
}
.ft-sec {
  border-top: 1px solid var(--text-3);
  padding-top: 1rem;
}

.ft-sec-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  cursor: default;
  pointer-events: none;
}
.acc-icon {
  display: none;
  font-size: 1.1rem;
  color: var(--text-3);
  transition:
    transform 0.25s,
    color 0.2s;
}

/* grupos internal 2-col grid */
.gr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
}
.gr-full {
  grid-column: 1 / -1;
}
.gr-region {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-1);
  margin: 0.25rem 0 0.55rem;
}
.gr-sublabel {
  font-size: 0.54rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 0.35rem;
  display: block;
}
.gr-col--left {
  padding-right: 1.25rem;
}
.gr-col--right {
  padding-left: 1.25rem;
}
.gr-mobile {
  display: none;
}
.gm-region-title {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}
.gm-sep {
  height: 1px;
  background: var(--border);
  margin: 0.85rem 0;
}

/* bottom strip */
.ft-strip {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.1rem 3rem;
}
.ft-strip-legal {
  font-size: 0.61rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.ft-strip-legal a {
  color: inherit;
  text-decoration: none;
}
.ft-strip-legal a:hover {
  color: var(--text-2);
}
.ft-strip-social {
  display: flex;
  gap: 1.1rem;
}
.ft-strip-social a {
  font-size: 0.61rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}
.ft-strip-social a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .ft-top {
    padding: 2rem 1.25rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .ft-rule {
    margin: 0 1.25rem;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 1.25rem 1rem;
    width: 100%;
  }
  .ft-strip {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .ft-sec {
    padding: 0;
    overflow: hidden;
  }
  .ft-sec-hd {
    padding: 0.8rem 0;
    cursor: pointer;
    pointer-events: auto;
  }
  .acc-icon {
    display: block;
  }
  .ft-sec.open .acc-icon {
    transform: rotate(45deg);
    color: var(--accent);
  }

  .acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .ft-sec.open .acc-body {
    grid-template-rows: 1fr;
  }
  .acc-inner {
    overflow: hidden;
  }
  .ft-sec.open .acc-inner {
    padding-bottom: 1rem;
  }

  .gr-grid {
    display: none;
  }
  .gr-mobile {
    display: block;
  }

  .ft-sec--direct .ft-sec-hd {
    pointer-events: none;
    cursor: default;
  }
  .ft-sec--direct .acc-icon {
    display: none;
  }
  .ft-sec--direct .acc-body {
    display: block !important;
    grid-template-rows: unset !important;
  }
  .ft-sec--direct .acc-inner {
    padding-bottom: 1rem;
  }
}

/* ══ MOBILE MEDIA QUERIES (max-width: 768px) ══════════════════════════════
   Espejo de los overrides que antes requerían la clase .mobile-view.
   Estos estilos se aplican en dispositivos reales; .mobile-view queda
   como fallback para el simulador de escritorio.
═════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Ruta: ocultar SVG desktop, mostrar versión mobile */
  .ruta-map {
    display: none;
  }
  .ruta-mobile {
    display: block;
  }

  /* Nav */
  .site-nav {
    padding: 0 1.25rem;
  }
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  /* Hero */
  .hero {
    padding: 0 1.25rem 4rem;
    min-height: 92vh;
  }
  .hero-title {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }
  .hero-sub {
    font-size: 0.9rem;
  }
  .hero-scroll-hint {
    right: 1.25rem;
    bottom: 1.5rem;
  }

  /* Secciones genéricas */
  .section {
    padding: 6rem 1.25rem;
  }

  /* Destinos */
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .dest-card {
    aspect-ratio: 5/3;
  }

  /* Asia slider */
  .asia-slider {
    cursor: default;
  }
  .asia-card {
    flex: 0 0 300px;
    min-width: 300px;
    height: 460px;
  }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "uno" "dos" "tres" "cuatro" "cinco" "seis";
  }
  .bento-item {
    transform: none !important;
  }
  .bento-item.large {
    min-height: 220px;
  }

  /* CTA */
  .cta-section {
    padding: 5rem 1.25rem;
  }
  .cta-row {
    flex-direction: column;
    align-items: center;
  }

  /* Feature chips */
  .fc-wrap {
    height: auto;
    border-radius: 0;
    overflow: hidden;
    background: var(--surface-3);
    background-image: var(--fc-mobile-bg, none);
    background-size: cover;
    background-position: center;
    margin-top: 2rem;
    margin-left: -1.25rem;
    width: calc(100% + 2.5rem);
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
  .fc-right {
    display: none;
  }
  .fc-left {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 0.5rem;
    padding: 12px 1.25rem;
  }
  .fc-left::-webkit-scrollbar {
    display: none;
  }
  .fc-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
    width: auto;
    transition:
      background 0.2s,
      border-color 0.2s;
  }
  .fc-chip.is-active {
    width: auto;
    background: rgba(255, 137, 4, 0.12);
    border: 1px solid rgba(255, 137, 4, 0.35);
  }
  .fc-chip:not(.is-active):hover {
    transform: none;
  }
  .fc-chip-btn {
    padding: 12px 18px;
    white-space: nowrap;
  }
  .fc-chip.is-active .fc-chip-btn {
    padding: 12px 18px;
    white-space: nowrap;
  }
  .fc-expand {
    display: none;
  }
  .fc-icon {
    display: inline-flex;
  }
  .fc-chip.is-active .fc-icon {
    opacity: 1;
    transform: none;
    max-width: 20px;
    margin-right: 12px;
  }
  /* Nav — quitar doble padding horizontal en mobile */
  .nav-container {
    padding: 0;
  }

  /* Hero KV — más grande en mobile para que se lea bien */
  .hero-kv {
    width: 80vw;
    max-width: 320px;
  }

  /* Marquee — reduce top margin on mobile */
  .marquee-outer {
    margin-top: 1.5rem;
  }

  /* Fullscreen ocupa toda la pantalla en móvil real */
  .fc-fullscreen.is-open {
    position: fixed;
    inset: 0;
    width: 100%;
    left: 0;
    transform: none;
    top: 0;
    bottom: 0;
    overflow: hidden;
  }
  .fc-fs-nav {
    justify-content: space-between;
    padding: 0 1.5rem;
  }
}

/* ══ ROUTE MAP ═══════════════════════════════════════════════════════ */
.rm-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
#rmSvg { display: block; width: 100%; height: auto; min-width: 540px; }

@keyframes rm-march { to { stroke-dashoffset: -22; } }
.rm-seg  { transition: stroke .36s ease; }
.rm-seg.marching { animation: rm-march 1s linear infinite; }
.rm-junc { transition: fill .36s ease, stroke .36s ease; }
.rm-img  { transition: opacity .36s ease; }
.rm-ring { transition: stroke .36s ease, stroke-width .36s ease; }
.rm-lbl  { transition: fill .36s ease; }
.rm-sub  { transition: fill .36s ease; }

@media (max-width: 640px) {
  #rmSvg { min-width: unset; }
}
@media (prefers-reduced-motion: reduce) {
  .rm-seg { animation: none !important; }
}
