/* ============================================
   sections.css
   Las secciones específicas (hero, timeline,
   mapa, bento, faq, contacto, footer) se
   construirán en los pasos 2–8.
   Aquí: solo padding base y el contenedor
   demo para el paso 1 (Foundation showcase).
   ============================================ */

.section {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0;
}
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }

.section__head {
  margin-bottom: var(--sp-7);
  max-width: 720px;
}
.section__title {
  font-size: var(--fs-2xl);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  margin-bottom: var(--sp-3);
}
.section__sub {
  font-size: var(--fs-md);
  color: var(--c-ink-70);
  line-height: var(--lh-loose);
}

/* ---- DEMO foundation (paso 1) ---- */
.demo {
  display: grid;
  gap: var(--sp-7);
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-6);
  align-items: start;
}
.demo-tile {
  background: var(--c-bone);
  border: 1.4px solid var(--c-blue);
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  position: relative;
  box-shadow: var(--sh-hard);
}
.demo-tile h3 {
  font-size: var(--fs-md);
  margin-bottom: 6px;
}
.demo-tile p {
  font-size: var(--fs-sm);
  color: var(--c-ink-70);
  line-height: 1.55;
}
.demo-tile__num {
  position: absolute;
  top: -14px; left: 14px;
  background: var(--c-cream);
  padding: 2px 8px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--c-mustard);
}

/* Tag mostaza */
.demo-tag {
  display: inline-block;
  padding: 2px 8px;
  background: var(--c-mustard-25);
  color: var(--c-blue);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

/* =====================================================
   HERO — collage editorial (paso 2)
   Grid 12 cols desktop · stack móvil
   ===================================================== */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero__kicker {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--c-mustard);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--c-mustard);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.hero__left  { grid-column: 1 / span 7; padding-top: clamp(8px, 2vw, 22px); }
.hero__right { grid-column: 8 / span 5; position: relative; min-height: 540px; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__left, .hero__right { grid-column: auto; }
  .hero__right { min-height: 0; }
}

/* -------- Titular tres líneas con pesos / rotaciones -------- */
.hero-title {
  display: block;
  font-family: var(--ff-display);
  letter-spacing: -0.022em;
  margin-bottom: var(--sp-5);
}
.hero-title__line {
  display: block;
  line-height: 0.96;
  perspective: 800px;
}
/* Línea 1 — Fraunces 400, ~45px */
.hero-title__line--1 {
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 400;
  font-size: clamp(1.8rem, 1.05rem + 2.4vw, 2.85rem);
  color: var(--c-blue);
  margin-bottom: 6px;
}
/* Línea 2 — Fraunces 700, ~75px, rot -1° */
.hero-title__line--2 {
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-size: clamp(2.8rem, 1.6rem + 4.5vw, 4.75rem);
  color: var(--c-blue);
  transform: rotate(-1deg);
  transform-origin: left center;
  margin-bottom: 4px;
}
/* Línea 3 — Fraunces 900 italic terracota, ~75px + handline mostaza */
.hero-title__l3 {
  position: relative;
  display: inline-block;
}
.hero-title__line--3 {
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  font-size: clamp(2.8rem, 1.6rem + 4.5vw, 4.75rem);
  font-style: italic;
  color: var(--c-terracotta);
  line-height: 0.96;
}
.hero-title__underline {
  position: absolute;
  left: 1.65em;
  right: -0.05em;
  bottom: -0.08em;
  height: 0.22em;
  background: url("../assets/svg/handdrawn-underline.svg") center/100% 100% no-repeat;
  pointer-events: none;
  transform-origin: left center;
}
@media (max-width: 480px) {
  .hero-title__underline { left: 1.55em; }
}

/* Animación Splitting/GSAP estado inicial */
.hero-title .word {
  display: inline-block;
  will-change: transform, opacity;
}

/* -------- Párrafo descriptivo -------- */
.hero__desc {
  max-width: 52ch;
  font-size: var(--fs-md);
  color: var(--c-ink-70);
  line-height: var(--lh-loose);
  margin-top: var(--sp-2);
}
.hero__desc strong { color: var(--c-blue); font-weight: 600; }

/* -------- CTAs hero -------- */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

/* Strip chips inferior */
.hero__strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

/* -------- Polaroids superpuestas (desktop) -------- */
.hero-polaroids {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
}
.hero-polaroid {
  position: absolute;
  width: clamp(180px, 22vw, 270px);
  padding: 12px 12px 44px;
  background: var(--c-bone);
  box-shadow: var(--sh-hard);
  border: 1px solid var(--c-blue-12);
  transition: transform 480ms var(--ease-out),
              box-shadow 480ms var(--ease-out),
              z-index 0ms 480ms;
  cursor: none;
}
.hero-polaroid__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.93) contrast(0.95);
}
.hero-polaroid__caption {
  position: absolute;
  left: 0; right: 0;
  bottom: 10px;
  text-align: center;
  font-family: var(--ff-hand);
  color: var(--c-blue);
  font-size: 1.3rem;
  line-height: 1;
}
.hero-polaroid__tape {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 124px; height: 30px;
  background: url("../assets/svg/washi-tape.svg") center/100% 100% no-repeat;
  filter: drop-shadow(1px 2px 0 rgba(14, 42, 71, 0.18));
}

/* Posiciones distintas para crear collage */
.hero-polaroid--1 {
  top: 28px;
  left: -8%;
  transform: rotate(-6deg);
  z-index: 1;
}
.hero-polaroid--1 .hero-polaroid__tape { transform: translateX(-50%) rotate(-8deg); }

.hero-polaroid--2 {
  top: 80px;
  left: 32%;
  transform: rotate(3deg);
  z-index: 3;
}
.hero-polaroid--2 .hero-polaroid__tape { transform: translateX(-50%) rotate(4deg); }

.hero-polaroid--3 {
  top: 260px;
  left: 6%;
  transform: rotate(-2deg);
  z-index: 2;
}
.hero-polaroid--3 .hero-polaroid__tape { transform: translateX(-50%) rotate(-2deg); }

/* Hover: levanta y endereza */
@media (hover: hover) {
  .hero-polaroid:hover {
    transform: translateY(-10px) rotate(0deg) !important;
    box-shadow: 12px 12px 0 var(--c-blue);
    z-index: 10;
    transition-delay: 0ms;
  }
}

/* Móvil: carrusel horizontal scroll-snap */
@media (max-width: 980px) {
  .hero-polaroids {
    display: flex;
    flex-direction: row;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 36px 12px 28px;
    margin: 0 -16px;
    min-height: 0;
    height: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-polaroids::-webkit-scrollbar { display: none; }
  .hero-polaroid {
    position: relative;
    top: auto !important;
    left: auto !important;
    flex: 0 0 64%;
    max-width: 280px;
    scroll-snap-align: center;
  }
  .hero-polaroid--1 { transform: rotate(-3deg); }
  .hero-polaroid--2 { transform: rotate(2deg); }
  .hero-polaroid--3 { transform: rotate(-2deg); }
}

/* =====================================================
   Mobile fixes específicos del hero (<= 480px)
   - Titular más chico para que no fuerce scroll horizontal
   - Lead constreñido al viewport
   - CTAs y chips en columna full-width
   - 3 polaroids visibles apiladas (sin carrusel horizontal)
   ===================================================== */
@media (max-width: 480px) {
  /* Que nada del hero se desborde lateralmente */
  .hero { overflow-x: hidden; }
  .hero__left { min-width: 0; max-width: 100%; }

  /* Titular: bajar 1-2 tamaños para que "Guadalajara" y "con plan de pagos" quepan */
  .hero-title { margin-bottom: var(--sp-4); }
  .hero-title__line--1 {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
  }
  .hero-title__line--2,
  .hero-title__line--3 {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
    line-height: 1;
  }

  /* Lead corto, sin overflow */
  .hero__desc {
    font-size: 0.95rem;
    max-width: 100%;
    line-height: 1.5;
  }

  /* CTAs en columna, ancho completo */
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Chips de garantías: en columna también, no scroll lateral */
  .hero__strip {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .hero__strip > * {
    justify-content: flex-start;
    width: 100%;
  }

  /* Las 3 polaroids visibles al mismo tiempo: se apilan vertical */
  .hero-polaroids {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    overflow: visible;
    padding: 28px 0 16px;
    margin: 0;
    scroll-snap-type: none;
  }
  .hero-polaroid {
    position: relative;
    top: auto !important;
    left: auto !important;
    flex: none;
    width: 78%;
    max-width: 280px;
  }
  /* Conservar la asimetría editorial entre ellas */
  .hero-polaroid--1 { transform: rotate(-2.5deg); align-self: flex-start; margin-left: 6%; }
  .hero-polaroid--2 { transform: rotate(1.8deg);  align-self: flex-end;   margin-right: 6%; }
  .hero-polaroid--3 { transform: rotate(-1.5deg); align-self: center; }
}

/* Marca decorativa de fondo en hero (papel rasgado mostaza) */
.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 360px; height: 360px;
  background: var(--c-mustard);
  opacity: 0.18;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }


/* =====================================================
   01 — ITINERARIO 2026 · timeline horizontal (paso 3)
   ===================================================== */
.timeline {
  position: relative;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
}
.timeline__sub em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  color: var(--c-terracotta);
}

/* ---- Eje de meses ---- */
.timeline__axis-wrap {
  position: relative;
  margin: var(--sp-6) 0 var(--sp-7);
  padding: 0 12px;
}
.timeline__axis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  position: relative;
  z-index: 2;
}
.timeline__month {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--c-blue);
  background: var(--c-cream);
  padding: 4px 10px;
  display: inline-block;
  justify-self: center;
  border: 1.2px solid var(--c-blue);
}
.timeline__rail {
  position: absolute;
  left: 5%; right: 5%;
  top: 50%;
  height: 1px;
  border-top: 1.4px dashed var(--c-blue-30);
  z-index: 1;
}
.timeline__rail::before,
.timeline__rail::after {
  content: "";
  position: absolute;
  width: 9px; height: 9px;
  background: var(--c-terracotta);
  border-radius: 50%;
  top: -5px;
  border: 1.4px solid var(--c-blue);
}
.timeline__rail::before { left: -4px; }
.timeline__rail::after  { right: -4px; }

@media (max-width: 720px) {
  .timeline__month { font-size: 0.68rem; padding: 3px 6px; letter-spacing: 0.14em; }
}

/* ---- Track de tickets (scroll horizontal) ---- */
.timeline__track-wrap {
  position: relative;
  margin: 0 calc(-1 * clamp(20px, 4vw, 48px)); /* full-bleed dentro del container */
  padding: 16px 0 28px;
}
.timeline__track {
  display: flex;
  gap: clamp(22px, 3vw, 38px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 28px clamp(20px, 4vw, 48px);
  scroll-padding-left: clamp(20px, 4vw, 48px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.timeline__track::-webkit-scrollbar { display: none; }
.timeline__track.is-dragging { cursor: grabbing; user-select: none; }

/* ---- Ticket de transporte ---- */
.ticket {
  flex: 0 0 clamp(280px, 38vw, 440px);
  scroll-snap-align: start;
  position: relative;
  perspective: 1200px;
  cursor: none;
}
.ticket__body {
  position: relative;
  background: var(--c-bone);
  border: 1.5px solid var(--c-blue);
  box-shadow: var(--sh-hard);
  display: grid;
  grid-template-columns: 1fr auto 0.7fr;
  min-height: 320px;
  transform-origin: center;
  transition: transform 520ms var(--ease-out),
              box-shadow 520ms var(--ease-out);
  will-change: transform;
}

/* Muescas laterales (perforaciones) */
.ticket__body::before,
.ticket__body::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-blue);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.ticket__body::before { left: -14px; }
.ticket__body::after  { right: -14px; }

/* Hover desktop: rotación 3D sutil + levanta */
@media (hover: hover) and (min-width: 981px) {
  .ticket:hover .ticket__body {
    transform: translateY(-6px) rotateY(4deg) rotateX(-1.5deg);
    box-shadow: 12px 12px 0 var(--c-blue);
  }
  .ticket:hover .ticket__calc {
    opacity: 1;
    transform: translate(0, 0) rotate(-3deg) scale(1);
  }
}

/* ---- Lado info (izquierda) ---- */
.ticket__info {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.ticket__date {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--c-terracotta);
  text-transform: uppercase;
}
.ticket__title {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.45rem);
  line-height: 1.05;
  color: var(--c-blue);
  margin: 2px 0 4px;
}
.ticket__title em {
  font-style: italic;
  color: var(--c-terracotta);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 900;
}
.ticket__meta {
  font-size: 0.78rem;
  color: var(--c-ink-70);
  margin-top: -2px;
}
.ticket__list {
  margin-top: 6px;
  display: grid;
  gap: 6px;
}
.ticket__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.82rem;
  color: var(--c-ink);
  line-height: 1.35;
}
.ticket__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 16px; height: 16px;
  background: url("../assets/svg/plane.svg") center/contain no-repeat;
  transform: rotate(-14deg);
}

/* Bottom row info (cupos + badge) */
.ticket__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.ticket__cupos {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  color: var(--c-blue);
  letter-spacing: 0.06em;
  border: 1.2px dashed var(--c-blue);
  padding: 4px 9px;
  background: var(--c-cream);
}
@keyframes pulseCupos {
  0%, 100% { opacity: 1; transform: scale(1); border-color: var(--c-terracotta); color: var(--c-terracotta); }
  50%      { opacity: 0.55; transform: scale(1.04); }
}
.ticket__cupos--low {
  animation: pulseCupos 2s ease-in-out infinite;
  color: var(--c-terracotta);
  border-color: var(--c-terracotta);
}

/* ---- Divider dashed ---- */
.ticket__divider {
  width: 0;
  border-left: 1.6px dashed var(--c-blue-60);
  margin: 14px 0;
}

/* ---- Lado precio + CTA (derecha) ---- */
.ticket__price-side {
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
  text-align: right;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 18px,
      var(--c-blue-06) 18px 19px
    );
}
.ticket__price-label {
  font-family: var(--ff-body);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--c-ink-70);
  text-transform: uppercase;
}
.ticket__price-main {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
  color: var(--c-blue);
  line-height: 1;
  margin-top: 2px;
}
.ticket__price-main small {
  display: block;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--c-ink-70);
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-variation-settings: normal;
}
.ticket__menores {
  font-size: 0.7rem;
  color: var(--c-ink-70);
  line-height: 1.3;
}
.ticket__menores strong { color: var(--c-sage); }

.ticket__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  background: var(--c-terracotta);
  color: var(--c-cream);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border: 1.4px solid var(--c-blue);
  box-shadow: 3px 3px 0 var(--c-blue);
  text-align: center;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.ticket__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--c-blue);
}
.ticket__cta--ghost {
  background: transparent;
  color: var(--c-blue);
  border: 1.4px dashed var(--c-blue);
  box-shadow: none;
}

/* ---- Badge tipo de viaje (arriba izquierda) ---- */
.ticket__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--c-blue);
  color: var(--c-cream);
  padding: 4px 12px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  z-index: 4;
}
.ticket__badge--terra   { background: var(--c-terracotta); }
.ticket__badge--mustard { background: var(--c-mustard); color: var(--c-blue); }

/* ---- Sello diagonal ---- */
.ticket__stamp {
  position: absolute;
  top: 16px;
  right: 60px;
  width: 110px;
  height: auto;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(2px 2px 0 rgba(14,42,71,0.15));
  opacity: 0.85;
}

/* ---- Mini calculadora (aparece al hover) ---- */
.ticket__calc {
  position: absolute;
  left: 18px;
  bottom: -26px;
  z-index: 6;
  background: var(--c-mustard);
  color: var(--c-blue);
  border: 1.5px solid var(--c-blue);
  box-shadow: 4px 4px 0 var(--c-blue);
  padding: 10px 14px;
  min-width: 220px;
  opacity: 0;
  transform: translate(0, 12px) rotate(-3deg) scale(0.94);
  transition: opacity .35s var(--ease-out),
              transform .45s var(--ease-out);
  pointer-events: none;
}
.ticket__calc-label {
  font-family: var(--ff-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.ticket__calc-amount {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 900;
  font-size: 1.05rem;
  line-height: 1;
  margin: 2px 0;
}
.ticket__calc-amount em {
  color: var(--c-terracotta);
  font-style: italic;
}
.ticket__calc-note {
  font-family: var(--ff-hand);
  font-size: 1rem;
  color: var(--c-blue);
  line-height: 1;
  display: block;
  margin-top: 2px;
}

/* ---- Estado AGOTADO ---- */
.ticket--agotado .ticket__body {
  background: var(--c-bone);
  opacity: 0.78;
}
.ticket--agotado .ticket__cta {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: var(--c-mustard);
}
.ticket--agotado .ticket__price-main { color: var(--c-ink-50); text-decoration: line-through; text-decoration-color: var(--c-terracotta); text-decoration-thickness: 2px; }
.ticket--agotado .ticket__calc { display: none; }

/* ---- Móvil: simplificar layout ticket ---- */
@media (max-width: 720px) {
  .ticket {
    flex: 0 0 86%;
  }
  .ticket__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }
  .ticket__divider {
    width: 100%;
    height: 0;
    margin: 0 18px;
    border-left: none;
    border-top: 1.6px dashed var(--c-blue-60);
  }
  .ticket__price-side {
    flex-direction: row;
    align-items: center;
    text-align: left;
    background: var(--c-cream);
    padding: 14px 22px;
  }
  .ticket__price-block { flex: 1; }
  .ticket__cta { flex: 0 0 auto; }
  .ticket__stamp { width: 80px; right: 30px; top: 8px; }
  .ticket__calc {
    position: relative;
    left: auto; bottom: auto;
    margin: 14px 22px 0;
    opacity: 1;
    transform: rotate(-2deg);
  }
}

/* ---- Navegación timeline (flechas + hint) ---- */
.timeline__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: var(--sp-6);
  padding: 0 4px;
}
.timeline__hint {
  font-family: var(--ff-hand);
  font-size: 1.15rem;
  color: var(--c-ink-70);
  transform: rotate(-2deg);
}
.timeline__arrows {
  display: flex;
  gap: 10px;
}
.timeline__btn {
  width: 46px; height: 46px;
  background: var(--c-bone);
  border: 1.5px solid var(--c-blue);
  color: var(--c-blue);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--c-blue);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out);
}
.timeline__btn:hover {
  background: var(--c-terracotta);
  color: var(--c-cream);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--c-blue);
}
.timeline__btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}


/* =====================================================
   02 — DESTINOS · mapa interactivo (paso 4)
   ===================================================== */
.destinos {
  position: relative;
  padding-bottom: clamp(60px, 8vw, 100px);
}

/* ---- Tabs tipo pestañas de carpeta ---- */
.map-tabs {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  padding-left: 12px;
  margin-bottom: -1px; /* se monta sobre el borde del lienzo */
  position: relative;
  z-index: 3;
}
.map-tab {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--c-blue);
  padding: 10px 18px 12px;
  background: var(--c-bone);
  border: 1.5px solid var(--c-blue);
  border-bottom: none;
  position: relative;
  margin-right: -1px;
  /* Forma trapezoide tipo pestaña carpeta */
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  padding-left: 26px;
  padding-right: 26px;
  cursor: pointer;
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
  user-select: none;
}
.map-tab:hover { background: var(--c-cream); }
.map-tab.is-active {
  background: var(--c-cream);
  color: var(--c-terracotta);
  transform: translateY(-2px);
  font-weight: 700;
  z-index: 4;
}
.map-tab small {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.72rem;
  margin-left: 6px;
  opacity: 0.7;
}

/* ---- Canvas del mapa ---- */
.map-canvas {
  position: relative;
  background: var(--c-cream);
  border: 1.5px solid var(--c-blue);
  box-shadow: var(--sh-hard);
  padding: clamp(20px, 3vw, 40px);
  min-height: 480px;
  isolation: isolate;
}
.map-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/svg/grain.svg") center/180px 180px;
  opacity: 0.06;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* Sello editorial esquina */
.map-canvas__seal {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--c-mustard);
  border: 1.2px solid var(--c-mustard);
  padding: 4px 10px;
  z-index: 4;
  text-transform: uppercase;
  background: var(--c-cream);
}

/* World map y Mexico inset */
.map-world {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  max-height: 560px;
  transition: opacity 400ms var(--ease-out), filter 400ms var(--ease-out);
}
.map-world__svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.map-mexico {
  position: absolute;
  left: 1.5%;
  bottom: 2%;
  /* Tamaño base = "todos": discreto, no estorba Sudamérica */
  width: clamp(190px, 22vw, 290px);
  aspect-ratio: 600/360;
  background: var(--c-bone);
  border: 1.4px solid var(--c-blue);
  box-shadow: 5px 5px 0 var(--c-blue);
  transition: opacity 400ms var(--ease-out),
              filter 400ms var(--ease-out),
              transform 400ms var(--ease-out),
              width 500ms var(--ease-out);
  z-index: 3;
}
/* En pestaña "Nacionales" se vuelve protagonista */
.destinos.filter-nac .map-mexico {
  width: clamp(280px, 36vw, 460px);
  box-shadow: 6px 6px 0 var(--c-blue);
}
.map-mexico__svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  padding: 6px;
}
.map-mexico__label {
  position: absolute;
  top: -12px; left: 12px;
  background: var(--c-cream);
  padding: 2px 8px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--c-terracotta);
  letter-spacing: 0.04em;
}

/* Estado "filtrado" - atenuar el lienzo opuesto */
.destinos.filter-nac .map-world { opacity: 0.25; filter: saturate(0.4); }
.destinos.filter-int .map-mexico { opacity: 0.25; filter: saturate(0.4); transform: scale(0.96); }

/* ---- Pines ---- */
.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  /* Tap target grande (44x44) con visual de 12x12 dentro */
  width: 44px; height: 44px;
  background: transparent;
  padding: 0;
  border: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  transition: opacity 350ms var(--ease-out), transform 350ms var(--ease-out);
}
.pin::before,
.pin::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--c-terracotta);
  top: 50%; left: 50%;
}
.pin::before {
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
  border: 1.6px solid var(--c-blue);
  z-index: 2;
}
.pin::after {
  /* halo pulso */
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: 1;
  animation: pinPulse 2s ease-out infinite;
}
@keyframes pinPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.6; }
  80%  { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}
.pin:hover,
.pin:focus-visible,
.pin.is-active {
  z-index: 8;
}
.pin:hover::before,
.pin:focus-visible::before,
.pin.is-active::before {
  background: var(--c-mustard);
  width: 18px; height: 18px;
}

/* Filtrado: atenuar pines del grupo opuesto */
.destinos.filter-nac .pin--int { opacity: 0.18; pointer-events: none; }
.destinos.filter-nac .pin--int::after { animation: none; }
.destinos.filter-int .pin--nac { opacity: 0.18; pointer-events: none; }
.destinos.filter-int .pin--nac::after { animation: none; }

/* ---- Popover ---- */
.map-popover {
  position: absolute;
  z-index: 30;
  width: 240px;
  background: var(--c-bone);
  border: 1.5px solid var(--c-blue);
  box-shadow: 6px 6px 0 var(--c-blue);
  padding: 10px;
  transform: translate(-50%, calc(-100% - 22px));
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms var(--ease-out),
              transform 250ms var(--ease-out);
  pointer-events: none;
}
.map-popover.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, calc(-100% - 30px));
}
.map-popover::after {
  /* Pico que apunta al pin */
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--c-blue);
}
.map-popover__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96);
  margin-bottom: 8px;
}
.map-popover__region {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--c-mustard);
  text-transform: uppercase;
}
.map-popover__name {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: 1.1rem;
  color: var(--c-blue);
  line-height: 1;
  margin: 2px 0 4px;
}
.map-popover__desc {
  font-size: 0.78rem;
  color: var(--c-ink-70);
  line-height: 1.35;
  margin-bottom: 8px;
}
.map-popover__price {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--c-terracotta);
  display: block;
  margin-bottom: 8px;
}
.map-popover__price strong {
  font-style: normal;
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 900;
  color: var(--c-blue);
  margin-left: 2px;
}
.map-popover__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--c-terracotta);
  color: var(--c-cream);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  border: 1.4px solid var(--c-blue);
  box-shadow: 2px 2px 0 var(--c-blue);
}
.map-popover__cta:hover {
  background: var(--c-blue);
  color: var(--c-mustard);
}

/* ---- Listado fallback (móvil ≤ 720, accesibilidad) ---- */
.dest-list {
  margin-top: var(--sp-6);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-4);
}
.dest-list__item {
  background: var(--c-bone);
  border: 1px dashed var(--c-blue-30);
  padding: 14px 16px;
  position: relative;
  transition: transform 220ms var(--ease-out),
              border-color 220ms var(--ease-out);
}
.dest-list__item:hover {
  border-color: var(--c-blue);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--c-blue);
}
.dest-list__item--off { opacity: 0.25; pointer-events: none; }
.dest-list__region {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--c-mustard);
  text-transform: uppercase;
}
.dest-list__name {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: 1.05rem;
  color: var(--c-blue);
  line-height: 1;
  margin: 4px 0 6px;
}
.dest-list__name a:hover { color: var(--c-terracotta); }
.dest-list__price {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--c-ink-70);
}
.dest-list__price strong {
  color: var(--c-blue);
  font-weight: 700;
}

/* ---- Marquee infinito ---- */
.dest-marquee {
  margin-top: var(--sp-8);
  overflow: hidden;
  position: relative;
  padding: 18px 0;
  border-top: 1.2px dashed var(--c-blue-30);
  border-bottom: 1.2px dashed var(--c-blue-30);
}
.dest-marquee::before,
.dest-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.dest-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--c-cream), transparent);
}
.dest-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--c-cream), transparent);
}
.dest-marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scrollMarquee 50s linear infinite;
  will-change: transform;
}
.dest-marquee:hover .dest-marquee__track { animation-play-state: paused; }
.dest-marquee__item {
  font-family: var(--ff-display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
  color: var(--c-blue);
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.dest-marquee__item::after {
  content: "✱";
  font-style: normal;
  color: var(--c-terracotta);
  font-size: 0.6em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 600;
}
.dest-marquee__item:nth-child(3n) { color: var(--c-terracotta); }
.dest-marquee__item:nth-child(5n) { color: var(--c-mustard); }
@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Tarjeta de cierre ---- */
.dest-cta {
  margin-top: var(--sp-8);
  background: var(--c-blue);
  color: var(--c-cream);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  position: relative;
  box-shadow: var(--sh-hard-terra);
  border: 1.5px solid var(--c-blue);
}
.dest-cta::before {
  content: "+20";
  position: absolute;
  top: -28px;
  left: -28px;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  font-size: 4rem;
  color: var(--c-mustard);
  line-height: 1;
  transform: rotate(-8deg);
  text-shadow: 4px 4px 0 var(--c-terracotta);
}
.dest-cta h3 {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.2rem);
  color: var(--c-cream);
  line-height: 1.05;
}
.dest-cta h3 em {
  font-style: italic;
  color: var(--c-mustard);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
}
.dest-cta p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(245,239,227,0.78);
  max-width: 48ch;
}
.dest-cta__action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.dest-cta__note {
  font-family: var(--ff-hand);
  font-size: 1.15rem;
  color: var(--c-mustard);
  transform: rotate(-2deg);
}

/* ---- Toggle "Ver lista de destinos" (solo móvil) ---- */
.dest-list-toggle {
  display: none;            /* Oculto en desktop por default */
  width: 100%;
  margin-top: var(--sp-5);
  padding: 14px 18px;
  background: var(--c-bone);
  color: var(--c-blue);
  border: 1.4px solid var(--c-blue);
  box-shadow: 4px 4px 0 var(--c-mustard);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out);
}
.dest-list-toggle:hover {
  background: var(--c-cream);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c-mustard);
}
.dest-list-toggle__chev {
  transition: transform 280ms var(--ease-out);
  flex: none;
}
.dest-list-toggle[aria-expanded="true"] .dest-list-toggle__chev {
  transform: rotate(180deg);
}

/* ---- Responsive map ---- */
@media (max-width: 720px) {
  .map-canvas { min-height: 380px; padding: 14px; }
  .map-mexico { bottom: 3%; left: 2%; width: 36%; }
  .destinos.filter-nac .map-mexico { width: 56%; }
  .map-canvas__seal { display: none; }
  .map-popover { width: 220px; }
  .dest-cta { grid-template-columns: 1fr; }
  .dest-cta::before { font-size: 3rem; top: -22px; left: -10px; }

  /* En móvil, la lista arranca OCULTA. El usuario la despliega tappeando
     el botón "Ver lista de destinos". La lista respeta el filtro activo
     de las pestañas (Todos / Nacionales / Internacionales). */
  .dest-list { display: none; }
  .dest-list.is-open { display: grid; margin-top: var(--sp-4); }

  /* Mostrar el toggle solo en móvil */
  .dest-list-toggle { display: flex; }

  /* Pines un poco más prominentes para que tapear sea fácil */
  .pin::before { width: 14px; height: 14px; }
}

@media (max-width: 480px) {
  .map-tab { font-size: 0.7rem; padding: 8px 14px; }
}


/* =====================================================
   03 — POR QUÉ TDV · Bento grid (paso 5)
   ===================================================== */
.bento-section {
  padding-bottom: clamp(80px, 10vw, 130px);
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: clamp(14px, 1.6vw, 22px);
}

.bento-cell {
  background: var(--c-bone);
  border: 1px dashed var(--c-blue);
  padding: clamp(20px, 2.5vw, 30px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bento-cell__kicker {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--c-mustard);
}
.bento-cell__title {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: clamp(1.05rem, 0.9rem + 0.4vw, 1.25rem);
  color: var(--c-blue);
  line-height: 1.1;
}

/* Posicionamiento de celdas */
.bento-counter { grid-column: 1 / span 6;  grid-row: 1 / span 2; }
.bento-calc    { grid-column: 7 / span 3;  grid-row: 1 / span 2; background: var(--c-cream); border-style: solid; }
.bento-wa      { grid-column: 10 / span 3; grid-row: 1 / span 2; background: #0E2A47; color: var(--c-cream); border: none; }
.bento-ig      { grid-column: 1 / span 4;  grid-row: 3 / span 1; padding: 0; overflow: hidden; }
.bento-horario { grid-column: 5 / span 3;  grid-row: 3 / span 1; }
.bento-chips   { grid-column: 8 / span 5;  grid-row: 3 / span 1; background: var(--c-cream); border-style: solid; }

/* ---- Counter XL ---- */
.bento-counter {
  background: var(--c-cream);
  border: 1.6px solid var(--c-blue);
  box-shadow: var(--sh-hard);
  overflow: hidden;
}
.bento-counter::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 220px; height: 220px;
  background: var(--c-mustard);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
}
.bento-counter__num {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  font-size: clamp(3.6rem, 2rem + 6vw, 6.5rem);
  color: var(--c-blue);
  line-height: 0.9;
  letter-spacing: -0.04em;
  position: relative;
}
.bento-counter__num em {
  color: var(--c-terracotta);
  font-style: italic;
}
.bento-counter__label {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.3rem);
  color: var(--c-ink-70);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 500;
}
.bento-counter__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.avatars {
  display: flex;
  align-items: center;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--c-cream);
  object-fit: cover;
  margin-left: -14px;
  box-shadow: 2px 2px 0 var(--c-blue-12);
  filter: saturate(0.92);
}
.avatar:first-child { margin-left: 0; }
.avatar--plus {
  background: var(--c-terracotta);
  color: var(--c-cream);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.bento-counter__note {
  font-family: var(--ff-hand);
  color: var(--c-blue);
  font-size: 1.2rem;
  transform: rotate(-3deg);
  display: inline-block;
}

/* ---- Calculadora ---- */
.bento-calc {
  box-shadow: var(--sh-hard);
}
.bento-calc__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bento-calc__field label {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.bento-calc__select,
.bento-calc__slider {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 10px 12px;
  border: 1.4px solid var(--c-blue);
  background: var(--c-bone);
  color: var(--c-blue);
  cursor: pointer;
}
.bento-calc__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--c-blue) 50%), linear-gradient(135deg, var(--c-blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.bento-calc__slider {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  padding: 0;
  background: var(--c-blue-12);
  border: 1.4px solid var(--c-blue);
  cursor: pointer;
}
.bento-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--c-terracotta);
  border: 1.6px solid var(--c-blue);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 2px 2px 0 var(--c-blue);
}
.bento-calc__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--c-terracotta);
  border: 1.6px solid var(--c-blue);
  border-radius: 50%;
  cursor: grab;
}
.bento-calc__months {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  color: var(--c-ink-70);
  letter-spacing: 0.04em;
}
.bento-calc__out {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1.2px dashed var(--c-blue);
}
.bento-calc__amount {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
  color: var(--c-blue);
  line-height: 1;
}
.bento-calc__amount em {
  font-style: italic;
  color: var(--c-terracotta);
}
.bento-calc__currency {
  font-family: var(--ff-body);
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: 0.55em;
  color: var(--c-mustard);
  margin-left: 2px;
  font-variation-settings: normal;
}
.bento-calc__sub {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--c-ink-70);
  margin-top: 4px;
}
.bento-calc__sub strong {
  color: var(--c-sage);
  font-weight: 700;
}

/* ---- WhatsApp card ---- */
.bento-wa {
  box-shadow: var(--sh-hard-terra);
  gap: 16px;
}
.bento-wa__kicker {
  color: var(--c-mustard);
}

/* Header: icono + título + estado en línea */
.bento-wa__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bento-wa__head-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bento-wa__title {
  color: var(--c-cream);
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.5rem);
  margin: 0;
  line-height: 1.1;
}
.bento-wa__title em { font-style: italic; color: var(--c-mustard); }

.bento-wa__status {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-wa-green);
  display: inline-flex;
  align-items: center;
}

.bento-wa__desc {
  font-size: 0.86rem;
  color: rgba(245,239,227,0.78);
  line-height: 1.55;
  margin: 0;
}

/* Icono WhatsApp grande con punto pulsante */
.bento-wa__icon {
  position: relative;
  width: 60px; height: 60px;
  background: var(--c-wa-green);
  border: 1.4px solid var(--c-cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0E2A47;
  box-shadow: 3px 3px 0 var(--c-mustard);
  flex: none;
}
.bento-wa__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.bento-wa__dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px; height: 12px;
  background: #25D366;
  border: 2px solid var(--c-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
  animation: bentoWaPulse 1.8s ease-out infinite;
}
@keyframes bentoWaPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(37, 211, 102, 0);   }
}
@media (prefers-reduced-motion: reduce) {
  .bento-wa__dot { animation: none; }
}

/* Bloque del teléfono: ahora con label y separador */
.bento-wa__phone-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1.2px dashed rgba(245, 239, 227, 0.22);
}
.bento-wa__phone-label {
  font-family: var(--ff-hand);
  font-size: 0.95rem;
  color: var(--c-cream);
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.bento-wa__phone-label::before {
  content: "↘ ";
  color: var(--c-mustard);
}
.bento-wa__phone {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 800;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem);
  color: var(--c-mustard);
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  transition: color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.bento-wa__phone:hover {
  color: var(--c-cream);
  transform: translateX(2px);
}

.bento-wa__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--c-wa-green);
  color: var(--c-blue);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid var(--c-cream);
  box-shadow: 4px 4px 0 var(--c-mustard);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.bento-wa__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c-mustard);
}

/* ---- Mosaico IG ---- */
.bento-ig {
  border: 1.4px solid var(--c-blue);
}
.ig-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  position: relative;
}
.ig-cell {
  position: relative;
  overflow: hidden;
  border-right: 1.4px solid var(--c-blue);
  border-bottom: 1.4px solid var(--c-blue);
  isolation: isolate;
}
.ig-cell:nth-child(2n) { border-right: none; }
.ig-cell:nth-child(n+3) { border-bottom: none; }
.ig-cell img,
.ig-cell .ig-cell__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.95);
  opacity: 0;
  transition: opacity 700ms var(--ease-out),
              transform .55s var(--ease-out),
              filter .35s;
  z-index: 1;
}
.ig-cell .ig-cell__img.is-active {
  opacity: 1;
  z-index: 2;
}
.ig-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/svg/grain.svg") center/180px 180px;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.ig-cell:hover .ig-cell__img.is-active { transform: scale(1.05); filter: saturate(1); }
.ig-mosaic__badge {
  position: absolute;
  z-index: 4;
  top: 12px; left: 12px;
  background: var(--c-cream);
  color: var(--c-blue);
  padding: 5px 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  border: 1.4px solid var(--c-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ig-mosaic__handle {
  position: absolute;
  z-index: 4;
  bottom: 12px; right: 12px;
  background: var(--c-blue);
  color: var(--c-cream);
  padding: 6px 12px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--c-terracotta);
}

/* ---- Horario / oficina ---- */
.bento-horario { gap: 10px; }
.bento-horario__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--c-blue-30);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--c-blue);
}
.bento-horario__row:last-of-type { border-bottom: none; }
.bento-horario__row strong { letter-spacing: 0.06em; }
.bento-horario__row em {
  font-style: italic;
  color: var(--c-terracotta);
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 600;
  font-size: 0.9rem;
}
.bento-horario__map {
  margin-top: 12px;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: url("../assets/svg/mini-map.svg") center/cover no-repeat;
  border: 1.2px solid var(--c-blue);
  position: relative;
}
.bento-horario__addr {
  font-family: var(--ff-hand);
  color: var(--c-blue);
  font-size: 1.05rem;
  text-align: right;
  margin-top: 4px;
}
.bento-horario__ref {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  text-align: right;
  margin-top: 2px;
  opacity: 0.9;
}
.bento-horario__ref::before {
  content: "↗ ";
  font-weight: 700;
}

/* ---- Chips de valores ---- */
.bento-chips {
  box-shadow: var(--sh-hard);
}
.bento-chips__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-bone);
  border: 1.2px solid var(--c-blue);
  padding: 8px 12px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-blue);
  letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.value-chip svg {
  width: 14px; height: 14px;
  flex: none;
  color: var(--c-terracotta);
}
.value-chip:hover {
  background: var(--c-blue);
  color: var(--c-cream);
  transform: translate(-1px, -1px);
}
.value-chip:hover svg { color: var(--c-mustard); }
.value-chip--mustard { background: var(--c-mustard); border-color: var(--c-blue); }
.value-chip--sage    { background: var(--c-sage-15); }

/* Notas / detalles editoriales */
.bento-cell .corner-note {
  position: absolute;
  top: -10px; right: 14px;
  background: var(--c-cream);
  padding: 2px 8px;
  font-family: var(--ff-hand);
  font-size: 1rem;
  color: var(--c-terracotta);
  transform: rotate(2deg);
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: auto; }
  .bento-counter { grid-column: 1 / span 6; grid-row: auto; }
  .bento-calc    { grid-column: 1 / span 3; grid-row: auto; }
  .bento-wa      { grid-column: 4 / span 3; grid-row: auto; }
  .bento-ig      { grid-column: 1 / span 6; grid-row: auto; aspect-ratio: 2/1; }
  .bento-horario { grid-column: 1 / span 3; grid-row: auto; }
  .bento-chips   { grid-column: 4 / span 3; grid-row: auto; }
}
@media (max-width: 680px) {
  .bento { grid-template-columns: 1fr; }
  .bento-counter, .bento-calc, .bento-wa, .bento-ig, .bento-horario, .bento-chips {
    grid-column: 1; grid-row: auto;
  }
  .bento-ig { aspect-ratio: 1/1; min-height: 320px; }
}


/* =====================================================
   04 — FAQ · WhatsApp simulado (paso 6)
   ===================================================== */
.faq-chat {
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
}
.faq-chat__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
@media (min-width: 980px) {
  .faq-chat__layout {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
  }
}
.faq-chat__intro {
  position: relative;
}
.faq-chat__intro .section-num { margin-bottom: 12px; }
.faq-chat__intro h2 {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-size: var(--fs-2xl);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: var(--sp-3);
}
.faq-chat__intro h2 em {
  font-style: italic;
  color: var(--c-terracotta);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
}
.faq-chat__lead {
  font-size: var(--fs-md);
  color: var(--c-ink-70);
  line-height: var(--lh-loose);
  max-width: 48ch;
}
.faq-chat__note {
  font-family: var(--ff-hand);
  color: var(--c-blue);
  font-size: 1.3rem;
  margin-top: var(--sp-5);
  transform: rotate(-2deg);
  display: inline-block;
}
.faq-chat__hint {
  margin-top: var(--sp-5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--c-bone);
  border: 1.4px dotted var(--c-blue);
  font-size: 0.82rem;
  color: var(--c-blue);
}
.faq-chat__hint svg { color: var(--c-terracotta); }

/* ---- Frame del teléfono ---- */
.phone-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  background: #0E2A47;
  border-radius: 38px;
  padding: 14px;
  box-shadow: 12px 12px 0 var(--c-terracotta),
              0 14px 30px rgba(14, 42, 71, 0.18);
  transform: rotate(-1.2deg);
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #0E2A47;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-frame__screen {
  background: #E5DDD5;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 620px;
  position: relative;
}

/* ---- Header verde WA ---- */
.wa-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #075E54;
  color: #fff;
  padding: 38px 14px 12px;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}
.wa-header__back {
  background: transparent;
  color: #fff;
  padding: 0 2px;
  font-size: 18px;
  line-height: 1;
}
.wa-header__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-mustard);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  flex: none;
  border: 2px solid #fff;
}
.wa-header__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-header__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.wa-header__info strong {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}
.wa-header__info em {
  font-style: normal;
  font-size: 0.72rem;
  opacity: 0.78;
  letter-spacing: 0.02em;
}
.wa-header__icons {
  display: flex;
  gap: 14px;
  opacity: 0.92;
}
.wa-header__icons svg { width: 18px; height: 18px; }

/* ---- Chat scroll area ---- */
.wa-chat {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px 18px;
  background:
    url("../assets/svg/wa-pattern.svg") center/280px repeat,
    #E5DDD5;
  position: relative;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}
.wa-chat::-webkit-scrollbar { width: 4px; }
.wa-chat::-webkit-scrollbar-thumb { background: rgba(14, 42, 71, 0.2); }

/* Día */
.wa-date {
  align-self: center;
  background: rgba(255,255,255,0.85);
  color: var(--c-blue);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  border-radius: 6px;
  margin: 0 auto 14px;
  display: table;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* Burbujas */
.wa-msg {
  max-width: 86%;
  padding: 8px 12px 18px;
  position: relative;
  font-family: var(--ff-body);
  font-size: 0.86rem;
  line-height: 1.4;
  color: #303030;
  border-radius: 8px;
  margin-bottom: 6px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  word-wrap: break-word;
  animation: msgIn 320ms var(--ease-out) both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-msg strong { color: var(--c-blue); font-weight: 700; }

.wa-msg__time {
  position: absolute;
  bottom: 4px;
  right: 10px;
  font-size: 0.62rem;
  color: rgba(0,0,0,0.42);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.wa-msg__time svg { color: #34B7F1; }

/* Incoming (gris) — alineadas a la izquierda */
.wa-msg--in {
  background: #FFFFFF;
  align-self: flex-start;
  margin-right: auto;
  border-top-left-radius: 0;
}
.wa-msg--in::before {
  content: "";
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #FFFFFF;
  border-left: 8px solid transparent;
}

/* Outgoing (verde) — alineadas a la derecha */
.wa-msg--out {
  background: #DCF8C6;
  margin-left: auto;
  align-self: flex-end;
  border-top-right-radius: 0;
}
.wa-msg--out::before {
  content: "";
  position: absolute;
  top: 0; right: -8px;
  width: 0; height: 0;
  border-top: 8px solid #DCF8C6;
  border-right: 8px solid transparent;
}

/* Burbujas de opción tappables */
.wa-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
}
.wa-bubble {
  background: #DCF8C6;
  color: #303030;
  font-family: var(--ff-body);
  font-size: 0.86rem;
  font-weight: 400;
  text-align: left;
  padding: 10px 12px 18px;
  border-radius: 8px;
  border-top-right-radius: 0;
  border: 0;
  max-width: 86%;
  margin-left: auto;
  align-self: flex-end;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 220ms var(--ease-out),
              opacity 320ms var(--ease-out),
              background 220ms var(--ease-out);
}
.wa-bubble:hover { background: #C6F0AC; }
.wa-bubble::before {
  content: "";
  position: absolute;
  top: 0; right: -8px;
  width: 0; height: 0;
  border-top: 8px solid #DCF8C6;
  border-right: 8px solid transparent;
}
.wa-bubble:hover::before { border-top-color: #C6F0AC; }
.wa-bubble .wa-msg__time { color: rgba(0,0,0,0.42); }
.wa-bubble.is-sending {
  transform: translateX(40px);
  opacity: 0;
  pointer-events: none;
}

/* Typing indicator */
.wa-typing {
  background: #FFFFFF;
  align-self: flex-start;
  margin-right: auto;
  border-radius: 8px;
  border-top-left-radius: 0;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  margin-bottom: 6px;
  position: relative;
  animation: msgIn 320ms var(--ease-out) both;
}
.wa-typing::before {
  content: "";
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-top: 8px solid #FFFFFF;
  border-left: 8px solid transparent;
}
.wa-typing span {
  width: 7px; height: 7px;
  background: rgba(14, 42, 71, 0.45);
  border-radius: 50%;
  animation: typingDot 800ms ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 120ms; }
.wa-typing span:nth-child(3) { animation-delay: 240ms; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30%            { transform: translateY(-3px); opacity: 1; }
}

/* Footer del chat */
.wa-footer {
  background: #F0F0F0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wa-footer__input {
  flex: 1;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 10px 16px;
  font-family: var(--ff-body);
  font-size: 0.84rem;
  color: rgba(0,0,0,0.42);
  border: 0;
  cursor: text;
}
.wa-footer__cta {
  width: 42px; height: 42px;
  background: var(--c-wa-green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: transform var(--dur) var(--ease-out);
}
.wa-footer__cta:hover { transform: scale(1.08); }

/* CTA "Hacer otra pregunta" sobre el frame */
.faq-chat__cta {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.faq-chat__cta .btn { transform: rotate(-1deg); }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .phone-frame { transform: rotate(-0.4deg); padding: 10px; box-shadow: 6px 6px 0 var(--c-terracotta); }
  .phone-frame__screen { height: 560px; border-radius: 18px; }
  .phone-frame::before { width: 80px; height: 18px; top: 20px; }
  .wa-header { padding: 30px 12px 10px; }
}


/* =====================================================
   05 — CONTACTO · Boarding Pass interactivo (paso 7)
   ===================================================== */
.boarding-section {
  padding-bottom: clamp(80px, 10vw, 130px);
  position: relative;
}
.boarding-section__head {
  margin-bottom: var(--sp-7);
  max-width: 720px;
}

/* Wrapper inclinado decorativo */
.boarding-wrap {
  position: relative;
  perspective: 1400px;
}
.boarding-wrap::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 12%;
  width: 60%;
  height: 28px;
  background: url("../assets/svg/wave-separator.svg") center/100% 100% no-repeat;
  opacity: 0.4;
}

/* Boarding pass */
.boarding {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.55fr);
  background: var(--c-bone);
  border: 2px solid var(--c-blue);
  box-shadow: var(--sh-hard-lg);
  position: relative;
  font-family: var(--ff-body);
  color: var(--c-blue);
  transform: rotate(-1deg);
  transition: transform 600ms var(--ease-out);
  isolation: isolate;
}
.boarding:hover { transform: rotate(0deg); }

/* Grano sutil sobre el pass */
.boarding::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/svg/grain.svg") center/200px;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

/* ---- Main section (izquierda) ---- */
.boarding__main {
  padding: clamp(22px, 3vw, 38px) clamp(22px, 3vw, 44px);
  display: grid;
  gap: clamp(14px, 1.6vw, 22px);
  position: relative;
}
.boarding__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--c-blue);
}
.boarding__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.boarding__brand img {
  width: 38px; height: 38px;
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--c-blue);
}
.boarding__brand strong {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.boarding__brand strong em {
  font-style: italic;
  color: var(--c-terracotta);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 500;
}
.boarding__brand small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--c-ink-70);
  margin-top: 2px;
}
.boarding__type {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--c-terracotta);
  text-align: right;
}
.boarding__type span {
  display: block;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-blue);
  letter-spacing: -0.01em;
}

/* Ruta FROM → TO */
.boarding__route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  margin-top: 8px;
}
.boarding__point {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.boarding__point--to { align-items: flex-end; text-align: right; }
.boarding__label {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--c-ink-70);
}
.boarding__code {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  font-size: clamp(2.6rem, 1.4rem + 4.8vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--c-blue);
}
.boarding__city {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--c-ink-70);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.boarding__plane {
  width: 46px; height: 46px;
  background: url("../assets/svg/plane.svg") center/contain no-repeat;
  transform: rotate(8deg);
  margin: 0 auto;
  filter: drop-shadow(2px 2px 0 var(--c-blue-30));
}

/* Inputs editables sobre el diseño */
.boarding__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.boarding__field-label {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--c-terracotta);
}
.boarding__input {
  width: 100%;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 700;
  font-size: clamp(1.2rem, 0.9rem + 0.8vw, 1.7rem);
  color: var(--c-blue);
  background: transparent;
  border: 0;
  border-bottom: 1.6px dashed var(--c-blue);
  padding: 6px 0 6px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  outline: none;
  transition: border-color var(--dur) var(--ease-out);
}
.boarding__input::placeholder {
  color: var(--c-blue-30);
  font-style: italic;
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 500;
}
.boarding__input:focus { border-bottom-color: var(--c-terracotta); }

.boarding__input--readonly {
  border-bottom-style: dotted;
  color: var(--c-ink-70);
  pointer-events: none;
}

/* Grid de datos auxiliares (flight / gate / boarding) */
.boarding__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 12px;
  border-top: 1.5px solid var(--c-blue);
}
.boarding__cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.boarding__cell-label {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--c-ink-70);
}
.boarding__cell-val {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: 0.98rem;
  color: var(--c-blue);
  letter-spacing: 0.02em;
}
.boarding__cell-val em {
  font-style: italic;
  color: var(--c-terracotta);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 900;
}

/* Barcode decorativo */
.boarding__barcode {
  display: flex;
  align-items: flex-end;
  gap: 1.4px;
  height: 36px;
  margin-top: 8px;
  filter: contrast(1.15);
}
.boarding__barcode span {
  display: inline-block;
  width: 2px;
  background: var(--c-blue);
  height: 100%;
}
.boarding__barcode span:nth-child(3n) { width: 4px; }
.boarding__barcode span:nth-child(5n) { width: 1px; }
.boarding__barcode span:nth-child(7n) { width: 3px; height: 70%; }
.boarding__barcode span:nth-child(11n) { background: var(--c-terracotta); }

/* CTA principal */
.boarding__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--c-terracotta);
  color: var(--c-cream);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border: 1.8px solid var(--c-blue);
  box-shadow: 6px 6px 0 var(--c-blue);
  text-transform: uppercase;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  margin-top: 6px;
  align-self: start;
  position: relative;
}
.boarding__cta::before {
  content: "→";
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--c-mustard);
}
.boarding__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--c-blue);
}
.boarding__cta:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--c-blue);
}

/* ---- Perforación vertical entre main y stub ---- */
.boarding__perf {
  position: relative;
  width: 0;
  border-left: 2px dashed var(--c-blue);
  align-self: stretch;
}
.boarding__perf::before,
.boarding__perf::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  background: var(--c-cream);
  border: 2px solid var(--c-blue);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.boarding__perf::before { top: -14px; }
.boarding__perf::after  { bottom: -14px; }

/* ---- Stub derecho ---- */
.boarding__stub {
  background: var(--c-cream);
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
}
.boarding__stub-title {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: 0.96rem;
  color: var(--c-blue);
  line-height: 1;
}
.boarding__stub-title em {
  font-style: italic;
  color: var(--c-terracotta);
}
.boarding__qr {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  background: #fff;
  padding: 10px;
  border: 1.5px solid var(--c-blue);
  box-shadow: 4px 4px 0 var(--c-mustard);
  display: flex;
  align-items: center;
  justify-content: center;
}
.boarding__qr canvas,
.boarding__qr img {
  width: 100% !important;
  height: 100% !important;
}
.boarding__stub-note {
  font-family: var(--ff-hand);
  color: var(--c-blue);
  font-size: 1.05rem;
  line-height: 1.15;
  transform: rotate(-2deg);
}
.boarding__stub-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1.4px dashed var(--c-blue-60);
}
.boarding__stub-mini span {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--c-ink-70);
}
.boarding__stub-mini strong {
  display: block;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: 0.86rem;
  color: var(--c-blue);
  letter-spacing: 0.02em;
}

/* ---- Hint manuscrito al lado del pass ---- */
.boarding-hint {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--sp-6);
}
.boarding-hint__note {
  font-family: var(--ff-hand);
  color: var(--c-terracotta);
  font-size: 1.3rem;
  transform: rotate(-2deg);
  display: inline-block;
}
.boarding-hint__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 880px) {
  .boarding {
    grid-template-columns: 1fr;
    transform: rotate(0);
  }
  .boarding__main { padding: 22px; }
  .boarding__perf {
    width: 100%; height: 0;
    border-left: 0;
    border-top: 2px dashed var(--c-blue);
    align-self: stretch;
  }
  .boarding__perf::before,
  .boarding__perf::after {
    top: 50%;
    transform: translateY(-50%);
  }
  .boarding__perf::before { left: -14px; }
  .boarding__perf::after  { right: -14px; left: auto; bottom: auto; top: 50%; }
  .boarding__stub { padding: 22px; }
  .boarding__stub-mini { max-width: 360px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .boarding__meta { grid-template-columns: 1fr 1fr; gap: 12px; }
  .boarding__route { gap: 6px; }
  .boarding__plane { width: 34px; height: 34px; }
}

/* =====================================================
   FOOTER · azul institucional (paso 8 mejorado)
   ===================================================== */
.site-footer {
  background: var(--c-blue);
  color: var(--c-cream);
  padding: clamp(60px, 8vw, 110px) 0 var(--sp-5);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.site-footer a {
  color: var(--c-cream);
  transition: color var(--dur) var(--ease-out);
}
.site-footer a:hover { color: var(--c-mustard); }

/* Decoración de fondo: tipografía gigante outline */
.site-footer::before {
  content: "TOUR DI VIAGGIO";
  position: absolute;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 900;
  font-style: italic;
  font-size: clamp(6rem, 16vw, 18rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 239, 227, 0.1);
  letter-spacing: -0.03em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
/* Grano local más visible */
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/svg/grain.svg") center/220px;
  opacity: 0.06;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

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

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
  margin-bottom: var(--sp-8);
}

/* Brand block */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__logo {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  /* Si el logo es azul oscuro sobre transparente, lo aclaramos para que
     se lea sobre el fondo azul del footer. Si tu logo ya es claro,
     puedes quitar este filter. */
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
/* Mantengo .site-footer__brand-row strong por si en el futuro
   se vuelve a usar el lockup tipográfico al lado del logo */
.site-footer__brand-row strong {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: 1.25rem;
  color: var(--c-cream);
  line-height: 1;
}
.site-footer__brand-row strong em {
  font-style: italic;
  color: var(--c-mustard);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 500;
}
.site-footer__tag {
  font-family: var(--ff-hand);
  font-size: 1.4rem;
  color: var(--c-mustard);
  display: inline-block;
  transform: rotate(-2deg);
  max-width: 260px;
  line-height: 1.15;
}
.site-footer__since {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: rgba(245,239,227,0.55);
  border-top: 1px dashed rgba(245,239,227,0.25);
  padding-top: 10px;
}

/* Column heading */
.site-footer__h {
  font-family: var(--ff-display);
  font-style: italic;
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 500;
  font-size: 0.85rem;
  color: var(--c-mustard);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-3);
  position: relative;
  padding-bottom: 6px;
}
.site-footer__h::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: var(--c-mustard);
}
.site-footer__list {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.92;
}
.site-footer__list a {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}
.site-footer__list a::before {
  content: "→";
  position: absolute;
  left: 0; top: -2px;
  color: var(--c-mustard);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.site-footer__list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contacto destacado */
.site-footer__address {
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.85;
}
/* Leyenda "+30,000 viajeros en redes" — blanco puro sobre el azul */
.site-footer__social-lead {
  color: #FFFFFF;
  opacity: 1;
  font-weight: 600;
}
.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--c-wa-green);
  color: var(--c-blue);
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 3px 3px 0 var(--c-mustard);
  border: 1.4px solid var(--c-cream);
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.site-footer__phone:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--c-mustard);
  color: var(--c-blue);
}

/* Social */
.site-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(245,239,227,0.08);
  border: 1px solid rgba(245,239,227,0.25);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-cream);
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}
.social-pill svg { width: 14px; height: 14px; flex: none; }
.social-pill:hover {
  background: var(--c-mustard);
  color: var(--c-blue);
  border-color: var(--c-mustard);
  transform: translate(-1px, -1px);
}

/* Bottom bar */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(245,239,227,0.15);
  font-size: 0.72rem;
  opacity: 0.62;
  letter-spacing: 0.04em;
}
.site-footer__bottom em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--c-mustard);
  font-variation-settings: "opsz" 120, "SOFT" 100, "wght" 500;
  opacity: 1;
}

/* Back to top */
.site-footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-mustard);
  letter-spacing: 0.01em;
  padding: 6px 14px;
  border: 1px solid rgba(212,162,76,0.5);
}
.site-footer__top-link:hover {
  background: var(--c-mustard);
  color: var(--c-blue);
}

/* Responsive */
@media (max-width: 880px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .site-footer__top { grid-template-columns: 1fr; gap: var(--sp-5); }
  .site-footer::before { font-size: 5rem; }
}
