/* ====================================================================
   JUMPINGJUMP — Design system reference
   --------------------------------------------------------------------
   COLORS
     --bg, --bg-soft, --bg-card   light cream surfaces
     --fg, --fg-mute              dark ink + muted body
     --line, --line-strong        hairline borders
     --zone-1, --zone-2           ACTIVE zone accents (swap per tab)
     --jump-1/--jump-2            Jump palette (orange / hot yellow)
     --kids-1/--kids-2            Kids palette (lime / candy pink)

   TYPE
     --font-display   Bricolage Grotesque (font-stretch 75% for titles)
     --font-body      Space Grotesk (all body + chrome labels)
     --font-mono      JetBrains Mono (ONLY: hours table, .mono utility)

   RADII
     --r-sm   8px   inner items (dropdown rows)
     --r     16px   default cards & frames
     --r-lg  28px   big cards & feature blocks
     --r-btn 14px   ALL interactive buttons (CTAs, triggers, tabs)
     --r-pill 999px ONLY decorative passive labels (badges/stickers)

   SHAPE RULES
     button / action       → --r-btn (14px rounded rect)
     icon-only button      → 50% (circle)
     card / frame          → --r or --r-lg
     prominent badge       → rotated rounded rect, small radius (5-8px)
     micro tag inside card → --r-pill (small, inline)
     foam-block accent     → .jj-block (xs / sm / md / lg / xl)

   SECTION HEAD PATTERN (.zones__head / .rides__head)
     stack vertical, left-aligned:  eyebrow → h2 → intro
     head max-width 820-920px, intro max-width 56ch (~560px)
     intro: 18px, --fg-mute
     margin-bottom: 48-56px

   BREAKPOINTS
     ≤1080  tablet  (hides nav__links + plan-select, shows burger)
     ≤768   mobile  (1-col grids, smaller type, compact nav)
     ≤560   small   (lang-switch compact, no padding waste)
     ≤420   tiny    (extra-tight wrap padding)
   ==================================================================== */

/* ----- Jumpingjump landing — light theme only ----- */

:root {
  /* base: warm cream + ink black */
  --bg: #F4EFE3;
  --bg-soft: #ECE5D2;
  --bg-card: #FBF7EC;
  --fg: #14130F;
  --fg-mute: #6B675D;
  --line: rgba(20, 19, 15, 0.10);
  --line-strong: rgba(20, 19, 15, 0.22);

  /* Jump zone accents */
  --jump-1: #FF5B22;
  --jump-2: #FFE14A;

  /* Kids zone accents */
  --kids-1: #C6FF3A;
  --kids-2: #FF77C7;

  /* active zone (set by JS) */
  --zone-1: var(--jump-1);
  --zone-2: var(--jump-2);

  /* --on-brand: el texto/icono SOBRE el acento. Blanco sobre la marca (look pedido por la
     clienta); si el acento es muy claro (p. ej. la lima de Kids) el blanco no contrasta y se
     usa texto oscuro. Lo fija ThemeSettings por contraste WCAG (global y por zona); este es el
     fallback. El TEXTO-acento (H2 em, enlaces) usa el color de marca tal cual (var(--zone-1)).
     IMPORTANTE: para el texto/borde SECUNDARIO sobre el acento NO se deriva un token de
     --on-brand (un var(--on-brand) anidado en otro custom-property resuelve mal cuando
     --on-brand se redefine por zona → cogía el blanco global). Se usa directamente
     `color: var(--on-brand); opacity: …` (texto) y `color-mix(in srgb, var(--on-brand) …%,
     transparent)` en la propiedad (bordes). */
  --on-brand: #FFFFFF;

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 8px;
  --r: 16px;
  --r-lg: 28px;
  --r-pill: 999px;
  --r-btn: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--zone-1); color: var(--on-brand); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }

/* ---------- type helpers ---------- */
.display { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; letter-spacing: -0.03em; line-height: 0.85; }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--fg-mute);
}

/* ---------- layout ---------- */
.wrap { width: min(1380px, 100% - 80px); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section + .section { border-top: 1px solid var(--line); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(24px, 4vw, 48px);
  background: rgba(244, 239, 227, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.nav__left {
  display: flex; align-items: center; gap: clamp(28px, 4vw, 56px);
  min-width: 0;
}
.nav__brand {
  display: inline-flex; flex-direction: column;
  align-items: flex-start; gap: 1px;
  line-height: 1;
}
.nav__brand-row {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.04em; display: inline-flex; align-items: baseline;
}
.nav__brand-slogan {
  font-family: var(--font-display); font-stretch: 75%; font-weight: 700;
  font-size: 11px; letter-spacing: -0.005em;
  color: var(--fg-mute);
  line-height: 1; margin-top: 2px;
  white-space: nowrap;
}
.nav__period {
  color: var(--zone-1);
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  width: 0.55em; height: 0.95em;
  margin-left: 0.08em;
  margin-bottom: -0.32em;
  transition: color 0.4s ease;
}
.nav__period-dot {
  position: absolute;
  top: 0; left: calc(50% - 0.18em);
  width: 0.36em; height: 0.36em;
  background: currentColor;
  border-radius: 50%;
  transform-origin: 50% 100%;
  animation: jjLogoHop 2.6s cubic-bezier(0.4, 0, 0.5, 1) infinite;
}
.nav__period-block {
  position: absolute;
  bottom: 0; left: calc(50% - 0.25em);
  width: 0.5em; height: 0.5em;
  background: currentColor;
  border-radius: 0.13em;
  transform: rotate(18deg);
}

@keyframes jjLogoHop {
  0%, 22%  { transform: translateY(0)    scale(1,    1   ); }
  34%      { transform: translateY(0)    scale(1.12, 0.76); }   /* squash + anticipation */
  52%      { transform: translateY(-38%) scale(0.92, 1.12); }   /* lift-off stretch */
  64%      { transform: translateY(-48%) scale(1,    1   ); }   /* peak */
  76%      { transform: translateY(-15%) scale(1.04, 0.94); }   /* falling */
  86%      { transform: translateY(0)    scale(1.14, 0.78); }   /* landing squash */
  94%, 100%{ transform: translateY(0)    scale(1,    1   ); }   /* rest */
}
.nav__dot { display: none; }

/* polished nav links */
.nav__links {
  display: flex; gap: 28px; align-items: center;
}
.nav__links a {
  position: relative;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--fg);
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--zone-1);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
.nav__links a:hover { color: var(--zone-1); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 14px; }

/* ---------- mobile burger + drawer ---------- */
.nav__burger {
  display: none;
  width: var(--tap-min); height: var(--tap-min);   /* Lote 9: objetivo táctil 44px */
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--bg-card);
  color: var(--fg);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__burger:hover { background: var(--fg); color: var(--bg); transform: scale(1.08); }

.mob-menu {
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none;
  /* Lote 10: cuando está CERRADO queda fuera del tab-order y del árbol de accesibilidad
     (antes seguía `visibility:visible` con el panel desplazado → sus enlaces eran tabulables
     = foco-fantasma). `visibility:hidden` no es focusable ni accesible; el retardo deja
     terminar la animación de salida del panel (0.45s) antes de ocultarlo. */
  visibility: hidden;
  transition: visibility 0s linear 0.45s;
}
.mob-menu--open { pointer-events: auto; visibility: visible; transition-delay: 0s; }
.mob-menu__backdrop {
  position: absolute; inset: 0;
  background: rgba(20,19,15,0.42);
  opacity: 0; transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mob-menu--open .mob-menu__backdrop { opacity: 1; }

.mob-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--bg);
  padding: 22px 24px 28px;
  display: flex; flex-direction: column; gap: 28px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1);
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(20,19,15,0.18);
}
.mob-menu--open .mob-menu__panel { transform: translateX(0); }

.mob-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 8px;
}
.mob-menu__close {
  width: var(--tap-min); height: var(--tap-min); border-radius: 50%;   /* Lote 9: objetivo táctil 44px */
  display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--bg-card);
  transition: background 0.2s ease, color 0.2s ease;
}
.mob-menu__close:hover { background: var(--fg); color: var(--bg); transform: scale(1.08); }

.mob-menu__primary { list-style: none; padding: 0; margin: 0; }
.mob-menu__primary li { border-top: 1px solid var(--line); }
.mob-menu__primary li:last-child { border-bottom: 1px solid var(--line); }
.mob-menu__primary a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px;
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 32px; letter-spacing: -0.02em; line-height: 1;
  transition: color 0.2s ease, padding-left 0.25s ease;
}
.mob-menu__primary a:hover { color: var(--zone-1); padding-left: 8px; }
.mob-menu__primary .arrow {
  font-family: var(--font-body); font-size: 16px;
  color: var(--fg-mute);
}
.mob-menu__primary a:hover .arrow { color: var(--zone-1); }

.mob-menu__section h4 {
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--fg-mute); margin: 0 0 12px; font-weight: 500;
}
.mob-menu__secondary { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.mob-menu__secondary a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  font-size: 15px; font-weight: 500;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  transition: background 0.2s ease, color 0.2s ease;
}
.mob-menu__secondary a:hover { background: var(--zone-1); }
.mob-menu__secondary .arrow { font-family: var(--font-body); color: var(--fg-mute); }

.mob-menu__foot {
  margin-top: auto;
  padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.mob-menu__foot .btn { flex: 1; justify-content: center; }

/* staggered entrance for items */
.mob-menu__primary li, .mob-menu__secondary li {
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.2,0.8,0.2,1);
}
.mob-menu--open .mob-menu__primary li,
.mob-menu--open .mob-menu__secondary li {
  opacity: 1; transform: translateX(0);
  transition-delay: calc(var(--i, 0) * 40ms + 150ms);
}
/* ---------- plan select (sliding dropdown) ---------- */
.plan-select { position: relative; }
.plan-select__trigger {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  border: 1px solid var(--line); border-radius: var(--r-btn);
  color: var(--fg);
  background: var(--bg-card);
  transition:
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.25s ease;
}
.plan-select__trigger:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--fg); color: var(--fg);
  box-shadow: 0 10px 22px -8px rgba(20,19,15,0.18);
}
.plan-select__trigger .chevron { transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1); }
.plan-select--open .plan-select__trigger {
  background: var(--fg); color: var(--bg); border-color: var(--fg);
}
.plan-select--open .plan-select__trigger .chevron { transform: rotate(180deg); }

.plan-select__panel {
  position: absolute; top: calc(100% + 14px); right: 0;
  width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 0; overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.2,0.8,0.2,1), visibility 0s linear 0.3s;
  box-shadow: 0 22px 60px -10px rgba(20,19,15,0.18), 0 2px 6px rgba(20,19,15,0.06);
  z-index: 60;
}
.plan-select--open .plan-select__panel {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.2,0.8,0.2,1), visibility 0s;
}
.plan-select__panel-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: var(--bg);
  border-bottom: 1px dashed rgba(20,19,15,0.22);
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--fg-mute);
}
.plan-select__panel ul { list-style: none; padding: 0; margin: 0; }
.plan-select__panel li {
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  transition-delay: 0s;
  border-bottom: 1px dashed rgba(20,19,15,0.18);
}
.plan-select__panel li:last-child { border-bottom: none; }
.plan-select--open .plan-select__panel li {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 45ms + 80ms);
}
.plan-select__panel a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.plan-select__panel a:hover { background: var(--zone-1); }
.plan-select__item-num {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  border: 1px dashed rgba(20,19,15,0.32);
  padding: 4px 6px; border-radius: 4px;
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.plan-select__panel a:hover .plan-select__item-num {
  color: var(--fg); border-color: var(--fg);
}
.plan-select__item-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.plan-select__item-t {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 22px; line-height: 1; letter-spacing: -0.02em;
  color: var(--fg);
}
.plan-select__item-s {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-mute);
}
.plan-select__panel a:hover .plan-select__item-s { color: rgba(20,19,15,0.7); }
.plan-select__panel a .arrow {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg); color: var(--fg);
  transition: transform 0.25s ease, background 0.2s ease;
  flex-shrink: 0;
}
.plan-select__panel a:hover .arrow { transform: translateX(4px); background: var(--fg); color: var(--bg); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
/* (nav__links rules moved into the nav block above) */
.nav__links a:not([class]):hover { color: var(--zone-1); } /* fallback safety */

/* (Lote 12) `.lang-switch` (selector de idioma de BOTONES del mockup) ELIMINADO: 0 uso en blades
   — el selector real es `.lang-dd` (footer + móvil, Lote 8). Se podan también sus overrides
   dispersos (:active y los de los media queries). */

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: var(--fg); color: var(--bg);
  border-radius: var(--r-btn);
  font-weight: 600; font-size: 14px;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--zone-1);
  color: var(--fg);
  box-shadow: 0 10px 22px -8px rgba(20,19,15,0.22);
}
.btn svg { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.btn:hover svg { transform: translateX(5px); }
.btn--zone { background: var(--zone-1); color: var(--on-brand); }
.btn--zone:hover { background: var(--fg); color: var(--bg); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--line-strong); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
/* Estado deshabilitado del sistema (antes inexistente: los botones con
   `wire:loading.attr="disabled"` conservaban el hover pleno). Atenúa y congela el
   hover por variante para que el botón "no responda" mientras carga. */
.btn:disabled,
.btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.btn:disabled:hover,
.btn[aria-disabled="true"]:hover { transform: none; box-shadow: none; background: var(--fg); color: var(--bg); }
.btn--zone:disabled:hover,
.btn--zone[aria-disabled="true"]:hover { background: var(--zone-1); color: var(--on-brand); }
.btn--ghost:disabled:hover,
.btn--ghost[aria-disabled="true"]:hover { background: transparent; color: var(--fg); border-color: var(--line-strong); }

/* (Lote 5) `.chip`/`.chip__dot` y `.hero__live*` del mockup ELIMINADOS: nunca se
   portaron a los blades (verificado: 0 render, 0 JS, 0 tests) → eran CSS muerto, y
   `.chip__dot`/`.hero__live-dot` arrastraban un `pulse` en bucle. El keyframe `pulse`
   sigue vivo (lo usa `.map-pin`), que sí se gatea en site.css (reduced-motion). */

/* ---------- hero ---------- */
.hero {
  min-height: auto; padding: 96px 0 32px;
  position: relative;
  display: flex; flex-direction: column;
}

/* ---------- hero video stage (cinematic, full-bleed of the wrap) ---------- */
.hero__stage {
  position: relative;
  width: 100%; aspect-ratio: 21 / 9;
  max-height: calc(100vh - 160px);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #14130F;
  box-shadow: 0 30px 60px -20px rgba(20,19,15,0.20);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
  background: transparent;
}
/* moody placeholder behind video */
.hero__stage-placeholder {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 22% 38%, rgba(255, 91, 34, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 78%, rgba(198, 255, 58, 0.16) 0%, transparent 55%),
    repeating-linear-gradient(135deg, #1A1915 0 22px, #14130F 22px 23px);
}
/* scrim for content legibility — between video and overlay content */
.hero__stage-scrim {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,19,15,0.45) 0%, rgba(20,19,15,0.08) 30%, rgba(20,19,15,0.10) 55%, rgba(20,19,15,0.65) 100%);
}
.hero__stage[data-has-video="true"] .hero__stage-placeholder { display: none; }

/* overlay content layout — chip+tag top, title middle, CTA bottom */
.hero__stage-content {
  position: absolute; inset: 0;
  z-index: 5;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 44px);
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--bg);
  pointer-events: none;
}
.hero__stage-content > *,
.hero__stage-content a,
.hero__stage-content button { pointer-events: auto; }

.hero__stage-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 40px;
}
.hero__tag--onvideo {
  color: rgba(244, 239, 227, 0.82);
  text-align: right;
  max-width: 320px;
  margin: 0;
}

/* on-video title — cream text; blink keeps its zone color */
.hero__title.hero__title--onvideo {
  color: var(--bg);
  font-size: clamp(56px, 10.5vw, 168px);
  margin: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.18);
}

/* on-video bottom row */
.hero__stage-bottom {
  display: flex; align-items: end; justify-content: flex-end;
  gap: 24px; flex-wrap: wrap;
}
.hero__stage-label {
  position: absolute;
  left: clamp(20px, 3vw, 40px); bottom: clamp(16px, 2vw, 28px);
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(244, 239, 227, 0.5);
  pointer-events: none;
  z-index: 6;
}
.hero__stage[data-has-video="true"] .hero__stage-label { display: none; }

.hero__cta-row--onvideo {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 18px 24px; flex-wrap: wrap; margin: 0;
}
.hero__title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(96px, 18vw, 320px);
  line-height: 0.82; letter-spacing: -0.045em; margin: 0;
}
.hero__title .word { display: block; }
.hero__title .blink {
  display: inline-block; background: var(--zone-1); color: var(--on-brand);
  padding: 0 0.12em 0.04em; border-radius: 18px;
  transform: rotate(-2deg);
}
/* hero stats — centered horizontal ticker, below the stage */
.hero__foot {
  display: flex; align-items: baseline; justify-content: center;
  flex-wrap: wrap; gap: 18px 36px;
  border-top: 1px solid var(--line);
  padding-top: 28px; margin-top: 40px;
  text-align: center;
}

/* (Lote 12) `.hero__cta-main` (CTA antiguo del hero) ELIMINADO: 0 uso en blades — el hero usa
   `.cta-prime` (Lote 3). Se poda también su override de móvil. */
.hero__stat { display: inline-flex; align-items: baseline; gap: 10px; }
.hero__stat .num {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 44px; line-height: 1; letter-spacing: -0.03em;
}
.hero__stat .label {
  font-family: var(--font-body); font-size: 11px; color: var(--fg-mute);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.hero__stat .sep {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--zone-1);
  border-radius: 3.5px;
  transform: rotate(22deg);
  align-self: center;
}

.hero__bubble {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg); overflow: hidden; padding: 22px 0;
}
.marquee__track {
  display: flex; gap: 56px;
  animation: scroll 28s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 52px; line-height: 1; letter-spacing: -0.03em;
  display: inline-flex; align-items: center; gap: 48px;
}
/* ---------- foam block accent (rotated rounded squares) ---------- */
.jj-block {
  display: inline-block;
  background: var(--zone-1);
  flex-shrink: 0;
  vertical-align: middle;
}
.jj-block--xs { width: 9px;  height: 9px;  border-radius: 2px;   transform: rotate(22deg); }
.jj-block--sm { width: 14px; height: 14px; border-radius: 3.5px; transform: rotate(22deg); }
.jj-block--md { width: 22px; height: 22px; border-radius: 5px;   transform: rotate(15deg); }
.jj-block--lg { width: 36px; height: 36px; border-radius: 8px;   transform: rotate(14deg); }
.jj-block--xl { width: 42px; height: 42px; border-radius: 9px;  transform: rotate(12deg); }
.jj-block--inv { background: var(--fg); }
.jj-block--zone2 { background: var(--zone-2); }

.marquee__item .mark {
  color: var(--zone-1);
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 56px; line-height: 0.8;
  display: inline-block; transform: translateY(-2px);
}
.marquee__item .outline { color: transparent; -webkit-text-stroke: 1.5px var(--fg); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- zones intro ---------- */
.zones__head {
  display: flex; flex-direction: column;
  gap: 20px; margin-bottom: 56px;
  max-width: 920px;
}
.zones__title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.88; letter-spacing: -0.035em; margin: 0;
}
.zones__title em { font-style: normal; color: var(--zone-1); }
.zones__intro {
  font-size: 18px; line-height: 1.5;
  color: var(--fg-mute); max-width: 56ch;
  margin: 0;
}

/* totals strip — subtle, between head and zone cards */
.zone-stats {
  display: flex; align-items: center; gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.zone-stats__item {
  display: flex; align-items: baseline; gap: 14px;
}
.zone-stats__num {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 38px; letter-spacing: -0.025em; line-height: 1;
  color: var(--fg);
}
.zone-stats__label {
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--fg-mute);
}

.zone-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.zone-intro__card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  min-height: 400px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--line);
}
.zone-intro__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px -16px rgba(20,19,15,0.20);
}
.zone-intro__card--jump { background: var(--jump-1); --on-brand: var(--on-jump); color: var(--on-brand); }
.zone-intro__card--kids { background: var(--kids-1); --on-brand: var(--on-kids); color: var(--on-brand); }
.zone-intro__top { display: flex; justify-content: space-between; align-items: start; }
.zone-intro__tag {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 8px 14px; background: var(--bg); border-radius: 6px;
  color: var(--fg);
  transform: rotate(-2deg);
  box-shadow: 0 8px 18px -6px rgba(20,19,15,0.22), 0 1px 0 rgba(20,19,15,0.08);
}
.zone-intro__name {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(64px, 9.5vw, 152px);
  line-height: 0.82; letter-spacing: -0.045em; margin: 0;
}
.zone-intro__sub {
  font-size: 20px; font-weight: 600; max-width: 280px; margin: 0;
}
.zone-intro__copy { font-size: 15px; line-height: 1.55; max-width: 380px; opacity: 0.85; margin: 12px 0 0; }
.zone-intro__meta {
  display: flex; gap: 28px; flex-wrap: wrap; margin-top: 32px;
  padding-top: 22px; border-top: 1px solid color-mix(in srgb, var(--on-brand) 26%, transparent);
}
.zone-intro__meta .v {
  font-family: var(--font-display); font-stretch: 75%;
  font-size: 28px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; display: block;
}
.zone-intro__meta .l { font-family: var(--font-body); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.7; margin-top: 4px; }
.zone-intro__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  background: var(--fg); color: var(--bg);
  padding: 12px 18px; border-radius: var(--r-btn);
  margin-top: 28px; align-self: flex-start;
}
.zone-intro__cta .arrow { transition: transform 0.3s ease; }
.zone-intro__card:hover .zone-intro__cta .arrow { transform: translateX(4px); }

/* big number watermark inside zone card */
.zone-intro__bg {
  position: absolute; right: -40px; bottom: -100px;
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 480px; line-height: 0.7; letter-spacing: -0.05em;
  color: rgba(20, 19, 15, 0.08); pointer-events: none;
  user-select: none;
}

/* ---------- zona CON foto (patrón «Foto integrada en la tarjeta», mockup
   `design_mockup/Ejemplos Imagenes Secciones.html`) ----------
   Se usa cuando la zona tiene `image`; si no, cae a `.zone-intro__card` (fallback).
   El fondo es el color de la zona (white-label, inline desde ThemeSettings): la foto es
   una banda superior y los datos quedan abajo sobre el color. Vive dentro del mismo grid
   `.zone-intro` → hereda el 1-col en móvil. */
.zone-photo-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  /* Misma altura mínima que el fallback `.zone-intro__card` (400px) → en un grid mixto
     (una zona con foto, otra sin) las cards quedan alineadas (revisión adversarial #230). */
  min-height: 400px;
  color: var(--fg);
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease;
}
.zone-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px -16px rgba(20,19,15,0.20);
}
.zone-photo-card__photo {
  width: 100%; height: 240px; display: block; object-fit: cover;
}
.zone-photo-card__body {
  padding: 26px 30px 30px;
  display: flex; flex-direction: column; flex: 1;
  color: var(--on-brand);
}
.zone-photo-card__tag {
  align-self: flex-start;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 7px 13px; background: var(--bg); border-radius: 6px; color: var(--fg);
  transform: rotate(-2deg);
  box-shadow: 0 8px 18px -6px rgba(20,19,15,0.22);
  margin-bottom: 16px;
}
.zone-photo-card__name {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(48px, 6vw, 92px); line-height: 0.82; letter-spacing: -0.045em; margin: 0;
}
.zone-photo-card__sub { font-size: 18px; font-weight: 600; margin: 10px 0 0; }
.zone-photo-card__meta {
  display: flex; gap: 28px; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(20,19,15,0.18);
}
.zone-photo-card__meta .v {
  font-family: var(--font-display); font-stretch: 75%;
  font-size: 26px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; display: block;
}
.zone-photo-card__meta .l {
  font-family: var(--font-body); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.14em; opacity: 0.7; margin-top: 4px;
}
.zone-photo-card__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  background: var(--fg); color: var(--bg);
  padding: 12px 18px; border-radius: var(--r-btn);
  margin-top: 24px; align-self: flex-start;
}
.zone-photo-card__cta .arrow { transition: transform 0.3s ease; }
.zone-photo-card:hover .zone-photo-card__cta .arrow { transform: translateX(4px); }

/* ---------- atracciones (tabs + slider) ---------- */
.rides__head {
  display: flex; flex-direction: column;
  gap: 20px; margin-bottom: 48px;
  max-width: 920px;
}
.rides__head > p {
  font-size: 18px; line-height: 1.5;
  color: var(--fg-mute); max-width: 56ch;
  margin: 0;
}
.rides__title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(48px, 7vw, 108px); line-height: 0.88; letter-spacing: -0.035em; margin: 0;
}

.rides__controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; gap: 24px; flex-wrap: wrap;
}
.zone-tabs {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  padding: 4px; gap: 4px;
}
.zone-tab {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--fg-mute);
  transition: all 0.25s ease;
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.14em;
}
.zone-tab.active { background: var(--zone-1); color: var(--on-brand); }

.slider-nav { display: flex; gap: 8px; align-items: center; }
.slider-nav__counter {
  font-family: var(--font-body); font-size: 12px; color: var(--fg-mute);
  text-transform: uppercase; letter-spacing: 0.14em; margin-right: 8px;
}
.slider-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: all 0.25s ease;
  color: var(--fg);
}
.slider-arrow:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); transform: scale(1.1); }
.slider-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.slider-arrow:disabled:hover { background: transparent; color: var(--fg); border-color: var(--line-strong); }

.slider {
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 0 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider::-webkit-scrollbar { display: none; }

.ride-card {
  flex: 0 0 calc((100% - 18px * 2) / 3);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 20px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.25s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  min-height: 460px;
  position: relative; overflow: hidden;
}
.ride-card:hover {
  transform: translateY(-6px);
  border-color: var(--zone-1);
  box-shadow: 0 20px 44px -16px rgba(20,19,15,0.20);
}
.ride-card__viz {
  height: 220px; border-radius: var(--r);
  background:
    repeating-linear-gradient(135deg, var(--bg-soft) 0 14px, var(--bg-card) 14px 15px);
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.ride-card__viz::before {
  content: ""; position: absolute;
  inset: auto -10% -40% auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--zone-1); opacity: 0.55;
  transition: transform 0.5s ease;
}
.ride-card:hover .ride-card__viz::before { transform: scale(1.15) translate(-10%, -10%); }
.ride-card__placeholder {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--font-body); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-mute);
}
.ride-card__zone {
  position: absolute; right: 14px; top: 14px;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 6px 12px; border-radius: 5px;
  background: var(--fg); color: var(--bg);
  transform: rotate(5deg);
  box-shadow: 0 6px 14px -4px rgba(20,19,15,0.28);
  z-index: 2;
}
.ride-card__name {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 28px; line-height: 0.95; letter-spacing: -0.02em; margin: 0;
}
.ride-card__age {
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-mute);
  display: inline-flex; align-items: center; gap: 6px;
}
.ride-card__age::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--zone-1);
}
.ride-card__desc {
  font-size: 14px; line-height: 1.55; color: var(--fg-mute);
  margin: 0;
  flex: 1;
}

/* Atracción de pago (#228): precio del complemento + CTA «Comprar» al pie de la card */
.ride-card__buy {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.ride-card__price {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 30px; line-height: 1; letter-spacing: -0.02em; color: var(--fg);
}
.ride-card__price .cents { font-size: 14px; vertical-align: super; }
.ride-card__price .eur { font-size: 16px; margin-left: 3px; vertical-align: top; opacity: 0.6; }
.ride-card__from {
  display: block; font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-mute); margin-bottom: 2px;
}
.ride-card__cta { padding: 12px 20px; font-size: 13px; min-height: 44px; } /* objetivo táctil WCAG */
/* Atracción «Destacada» (#228 + «Cards Destacadas»): el destacado se señala SOLO con el Shine sweep
   sobre la foto — SIN borde de color exterior (mismo criterio que el catálogo: card limpia, el efecto
   es el distintivo). `.ride-card--special` queda como marcador para acotar la animación; el hover es
   el normal de cualquier card (lift + borde de acento del `.ride-card:hover` base).
   Shine sweep (foto): un destello cruza SOLO el marco de la foto (`.ride-card__viz` ya es
   position:relative + overflow:hidden). Translúcido blanco → coherente con cualquier marca (#213). */
.ride-card--special .ride-card__viz::after {
  content: ""; position: absolute; top: -30%; bottom: -30%; left: 0; width: 30%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55) 50%, transparent);
  transform: skewX(-16deg) translateX(-160%);
  animation: jj-shine-sweep 3.2s cubic-bezier(0.6, 0, 0.3, 1) infinite;
  pointer-events: none; z-index: 1;
}
@keyframes jj-shine-sweep {
  0%, 55%   { transform: skewX(-16deg) translateX(-160%); }
  90%, 100% { transform: skewX(-16deg) translateX(480%); }
}

/* progress bar under slider */
.slider-progress {
  height: 2px; background: var(--line);
  position: relative; overflow: hidden; border-radius: 2px;
  margin-top: 8px;
}
.slider-progress__bar {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--zone-1);
  transition: left 0.3s ease, width 0.3s ease;
}

/* ---------- precios ---------- */
.pricing__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 48px;
}
.price {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px;
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 16px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.25s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.price:hover {
  border-color: var(--zone-1);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -16px rgba(20,19,15,0.18);
}
.price--feat { background: var(--zone-1); color: var(--on-brand); border-color: transparent; }
.price--feat .price__mute { color: var(--on-brand); opacity: 0.78; }
/* Contraste en card DESTACADA (fondo = color de zona, #232): los textos atenuados (--fg-mute)
   se leen mal sobre el color → se oscurecen «desde», «Complementos disponibles», los nombres,
   el «+», el precio y el «ver más» de los complementos; el separador punteado también. */
.price--feat .price__from,
.price--feat .addons-mini__label,
.price--feat .addons-mini__name,
.price--feat .addons-mini__plus,
.price--feat .addons-mini__price,
.price--feat .addons-mini__group-label,
.price--feat .addons__moreinfo { color: var(--on-brand); opacity: 0.82; }
.price--feat .addons-mini { border-top-color: color-mix(in srgb, var(--on-brand) 26%, transparent); }
/* CTA de la card de entrada: ancho completo, anclado al fondo de la card (`margin-top:auto`) para
   que todas las cards alineen su botón. En las destacadas (fondo de zona) el botón invierte para
   no fundirse con el color de la card al pasar el ratón. */
.price__cta { width: 100%; justify-content: center; margin-top: auto; }
.price--feat .price__cta { background: var(--fg); color: var(--bg-card); }
.price--feat .price__cta:hover { background: var(--bg-card); color: var(--fg); }
.price__name { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; }
.price__num {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 80px; line-height: 0.85; letter-spacing: -0.04em;
}
.price__num .cents { font-size: 32px; vertical-align: super; }
.price__num .eur { font-size: 28px; margin-left: 4px; vertical-align: top; opacity: 0.6; }
.price__mute { font-size: 12px; color: var(--fg-mute); }
/* SOLO la lista de VENTAJAS de la entrada (hija directa de `.price`). Scopeado con `>` para que
   NO se filtre a la lista de complementos anidada (`.addons-mini__list`), que tiene su propio
   estilo y NO debe llevar el bullet `::before` (revisión #232 — origen de los «puntos»). */
.price > ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 13px; font-weight: 600; }
.price > ul > li { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price > ul > li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.price__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--fg); color: var(--bg);
  padding: 6px 12px; border-radius: 5px;
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  transform: rotate(6deg);
  box-shadow: 0 6px 14px -4px rgba(20,19,15,0.20);
}
/* «Cards Destacadas» — Badge hop: en la card de producto DESTACADA (`.price--feat`) la pegatina da el
   salto del logo (squash+stretch) MANTENIENDO su rotación. La card conserva su color diferenciador
   (fondo --zone-1); solo se anima el badge. Mismo gesto que el catálogo → se lee como sistema. */
.price--feat .price__badge {
  transform-origin: 50% 100%;
  animation: jj-badge-hop-rot 2.8s cubic-bezier(0.5, 0, 0.3, 1) infinite;
}
@keyframes jj-badge-hop-rot {
  0%, 55%   { transform: rotate(6deg)  translateY(0)    scale(1,    1   ); }
  62%       { transform: rotate(6deg)  translateY(0)    scale(1.12, 0.8 ); }
  72%       { transform: rotate(10deg) translateY(-6px) scale(0.94, 1.1 ); }
  79%       { transform: rotate(4deg)  translateY(-7px) scale(1,    1   ); }
  88%       { transform: rotate(6deg)  translateY(0)    scale(1.06, 0.9 ); }
  94%, 100% { transform: rotate(6deg)  translateY(0)    scale(1,    1   ); }
}

/* `prefers-reduced-motion`: las cards destacadas no animan (shine sweep + badge hop). */
@media (prefers-reduced-motion: reduce) {
  .ride-card--special .ride-card__viz::after,
  .price--feat .price__badge { animation: none; }
}

/* ---------- birthday / events ---------- */
.events {
  background: var(--zone-1); color: var(--on-brand);
  border-radius: var(--r-lg);
  padding: 60px; position: relative; overflow: hidden;
}
.events__title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(44px, 6.4vw, 100px); line-height: 0.88; letter-spacing: -0.035em; margin: 0;
}
.events__row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.events__body { font-size: 18px; line-height: 1.5; max-width: 380px; }
.events__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.events__list li {
  display: flex; gap: 14px; align-items: center; font-size: 16px; font-weight: 500;
  padding: 14px 18px; background: rgba(255,255,255,0.4); border-radius: var(--r);
  border: 1px solid rgba(20,19,15,0.12);
}
.events__list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--fg); flex-shrink: 0;
}
.events__shape { position: absolute; pointer-events: none; background: var(--fg); }

/* ---------- birthday RICH layout ---------- */
.events--rich { padding: 56px clamp(28px, 5vw, 72px); }
.events--rich .events__head {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 820px; margin-bottom: 40px;
}
.events--rich .events__head .events__body {
  font-size: 18px; line-height: 1.55; margin: 0;
  max-width: 56ch;
}
.events__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 36px;
  align-items: start;
}

/* polaroid photo (image-slot inside) */
.events__photo {
  position: relative;
  background: #FFFFFF;
  padding: 18px 18px 56px;
  transform: rotate(-2.5deg);
  box-shadow: 0 26px 50px -10px rgba(20,19,15,0.22), 0 4px 12px rgba(20,19,15,0.10);
  transition:
    transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
    box-shadow 0.4s ease;
  align-self: start;
}
.events__photo:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 34px 62px -10px rgba(20,19,15,0.28), 0 6px 16px rgba(20,19,15,0.12);
}
.events__photo-frame {
  width: 100%; aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, #ECE5D2 0 14px, #F4EFE3 14px 15px);
  position: relative; overflow: hidden;
}
.events__photo-frame image-slot {
  width: 100%; height: 100%; display: block;
}
.events__photo-cap {
  position: absolute; left: 0; right: 0; bottom: 18px;
  text-align: center;
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-mute);
}
.events__photo-tape {
  position: absolute; top: -14px; left: 50%;
  width: 130px; height: 28px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(20,19,15,0.25);
  z-index: 2;
}
.events__photo-sticker {
  position: absolute; top: 20px; right: -22px;
  background: var(--fg); color: var(--zone-1);
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 6px 14px;
  transform: rotate(8deg);
  border-radius: var(--r-pill);
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(20,19,15,0.18);
  z-index: 3;
}

/* ticket stub — fills the polaroid's bottom-right empty corner */
.events__ticket {
  position: absolute;
  bottom: -26px; right: -32px;
  background: var(--bg-card);
  padding: 18px 28px 16px;
  border-radius: 10px;
  transform: rotate(5deg);
  box-shadow: 0 18px 38px -10px rgba(20,19,15,0.22), 0 2px 6px rgba(20,19,15,0.10);
  display: flex; flex-direction: column; align-items: center;
  z-index: 4;
  text-align: center;
  min-width: 140px;
}
/* perforation cutouts on left & right (mimic zone-1 bg) */
.events__ticket::before,
.events__ticket::after {
  content: ""; position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--zone-1);
  border-radius: 50%;
}
.events__ticket::before { left: -7px; }
.events__ticket::after  { right: -7px; }
.events__ticket-label {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.16em; font-weight: 700;
  color: var(--fg-mute);
}
.events__ticket-num {
  font-family: var(--font-display); font-stretch: 75%; font-weight: 800;
  font-size: 42px; line-height: 1; letter-spacing: -0.025em;
  color: var(--fg);
  margin-top: 4px;
}
.events__ticket-sub {
  font-size: 11px; font-weight: 600;
  color: var(--fg-mute); margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* pack side */
.events__pack { display: flex; flex-direction: column; gap: 22px; align-items: stretch; }
.events--rich .events__body {
  font-size: 18px; line-height: 1.55; margin: 0;
  max-width: 460px;
}
.events__pack-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 26px 28px 24px;
  box-shadow: 0 12px 30px -10px rgba(20,19,15,0.10);
}
.events__pack-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(20,19,15,0.18);
}
.events__pack-label {
  display: block;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--fg-mute);
}
.events__pack-price {
  display: inline-flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
}
.events__pack-from {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-mute);
}
.events__pack-value {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 28px; line-height: 1; letter-spacing: -0.02em;
  color: var(--fg);
}
.events__pack-per {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--fg-mute);
}
.events__pack-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.events__pack-card li {
  display: flex; align-items: flex-start; gap: 14px;
  color: var(--fg);
  flex-wrap: wrap;
}
.events__feat-text { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.events__feat-t { font-size: 15px; font-weight: 600; line-height: 1.2; }
.events__feat-s { font-size: 12px; color: var(--fg-mute); line-height: 1.35; }
.events__check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--zone-1); color: var(--on-brand);
  display: grid; place-items: center; flex-shrink: 0;
  margin-top: 2px;
}

/* timeline */
.events__timeline {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px dashed rgba(20,19,15,0.28);
  position: relative;
}
.events__timeline-label {
  display: block;
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(20,19,15,0.7);
  margin-bottom: 28px;
}
.events__timeline-steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  position: relative;
}
.events__timeline-steps::before {
  content: "";
  position: absolute;
  top: 11px; left: 10%; right: 10%; height: 2px;
  background: rgba(20,19,15,0.18);
  z-index: 0;
}
.events__timeline-steps li {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 1;
  text-align: center;
}
.events__timeline-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--fg);
  border: 5px solid var(--zone-1);
  box-shadow: 0 0 0 1px rgba(20,19,15,0.18);
}
.events__timeline-time {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 26px; letter-spacing: -0.02em; line-height: 1;
  margin-top: 4px;
}
.events__timeline-name {
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(20,19,15,0.72);
}

/* ---------- horarios + ubicación ---------- */
.info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-card {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px;
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 18px;
}
.info-card h3 {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 44px; letter-spacing: -0.03em; margin: 0; line-height: 0.9;
}
.hours { display: grid; grid-template-columns: 1fr auto; gap: 8px 24px; font-size: 14px; }
.hours .day { color: var(--fg-mute); }
.hours .time { font-family: var(--font-mono); }
.hours .today { color: var(--zone-1); font-weight: 700; }
.hours .today .time { color: var(--zone-1); }

.map-card {
  border-radius: var(--r-lg); overflow: hidden;
  background:
    repeating-linear-gradient(45deg, var(--bg-soft) 0 28px, var(--bg-card) 28px 30px);
  min-height: 360px; position: relative;
  display: flex; align-items: end; padding: 24px; justify-content: flex-end;
  border: 1px solid var(--line);
}
.map-pin {
  position: absolute; left: 50%; top: 40%; transform: translate(-50%,-50%);
  width: 28px; height: 28px; background: var(--zone-1); border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 91, 34, 0.18);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ---------- normas ---------- */
.rules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px;
}
.rule {
  border: 1px solid var(--line); border-radius: var(--r); padding: 24px;
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 10px;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.25s ease,
    box-shadow 0.3s ease;
}
.rule:hover {
  border-color: var(--zone-1);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(20,19,15,0.14);
}
.rule__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--zone-1); color: var(--on-brand);
  display: grid; place-items: center; margin-bottom: 6px;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
}
.rule__name { font-size: 18px; font-weight: 600; line-height: 1.2; }
.rule__desc { font-size: 13px; color: var(--fg-mute); line-height: 1.5; }

/* ---------- galería — polaroid marquee ---------- */
.gallery-marquee {
  margin-top: 40px;
  overflow: hidden;
  padding: 30px 0 40px;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.gallery-marquee__track {
  display: flex; gap: 24px;
  width: max-content;
  animation: galleryScroll 60s linear infinite;
  align-items: center;
}
.gallery-marquee:hover .gallery-marquee__track { animation-play-state: paused; }
@keyframes galleryScroll { to { transform: translateX(-50%); } }

.polaroid {
  flex: 0 0 240px;
  background: #FFFFFF;
  padding: 14px 14px 36px;
  box-shadow: 0 6px 24px rgba(20,19,15,0.10), 0 1px 3px rgba(20,19,15,0.08);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
  cursor: pointer;
}
.polaroid:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow: 0 22px 50px -10px rgba(20,19,15,0.20), 0 4px 12px rgba(20,19,15,0.10);
}
.polaroid:nth-child(odd)  { transform: rotate(-2.2deg); }
.polaroid:nth-child(even) { transform: rotate(1.6deg); }
.polaroid:nth-child(4n)   { transform: rotate(-0.8deg); }
.polaroid:nth-child(4n+1) { transform: rotate(2.4deg); }

.polaroid__img {
  width: 100%; aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg, #ECE5D2 0 14px, #F4EFE3 14px 15px);
  position: relative; overflow: hidden;
}
/* Foto real de la galería (fallback del feed social): rellena el hueco de la polaroid. */
.polaroid__img img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
}
.polaroid__img::before {
  content: ""; position: absolute;
  inset: auto -10% -40% auto;
  width: 60%; aspect-ratio: 1/1; border-radius: 50%;
  background: var(--zone-1); opacity: 0.6;
}
.polaroid__tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--font-body); font-size: 10px;
  padding: 3px 8px; background: #FFFFFF; border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg);
}
.polaroid__caption {
  position: absolute; bottom: 8px; left: 14px; right: 14px;
  font-family: var(--font-body); font-size: 12px;
  color: var(--fg); text-align: center;
}

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-top: 40px; }
.faq__list { display: grid; gap: 0; }
.faq__item { border-top: 1px solid var(--line); padding: 24px 0; }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  /* Lote 6 (a11y): ahora es un <button> (operable por teclado + aria-expanded). El
     reset global de `button` (landing.css §104) ya le quita el chrome; aquí solo
     forzamos lo no-default del botón —ancho completo y alineación a la izquierda—
     para conservar el layout del mockup (botón = fit-content + center por defecto). */
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq__item:hover .faq__q { color: var(--zone-1); }
.faq__item.open .faq__q { color: var(--zone-1); }
.faq__q .ico {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s, color 0.3s, border-color 0.3s;
}
.faq__item.open .faq__q .ico { transform: rotate(45deg); background: var(--zone-1); border-color: transparent; color: var(--on-brand); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: var(--fg-mute); font-size: 15px; line-height: 1.6; max-width: 640px;
}
.faq__item.open .faq__a { max-height: 240px; margin-top: 14px; }

/* ---------- big CTA footer ---------- */
.reserve { text-align: center; padding: 120px 0 80px; }
.reserve h2 {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(72px, 14vw, 200px); line-height: 0.85; letter-spacing: -0.04em; margin: 0;
}
.reserve h2 .stroke { color: transparent; -webkit-text-stroke: 2px var(--fg); }
.reserve h2 .fill {
  background: var(--zone-1); color: var(--on-brand);
  padding: 0 0.08em 0.04em; display: inline-block;
  border-radius: 18px; transform: rotate(-2deg);
}
.reserve p { font-size: 18px; color: var(--fg-mute); max-width: 480px; margin: 28px auto 36px; line-height: 1.5; }
/* Lote 12: fila de CTAs del bloque #reserve (antes `style` inline en home.blade). */
.reserve__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 60px 0 40px; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.foot__brand {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: 56px; letter-spacing: -0.04em; line-height: 0.85; margin-bottom: 16px;
}
.foot__slogan {
  font-family: var(--font-display); font-stretch: 75%; font-weight: 700;
  font-size: 20px; letter-spacing: -0.015em; line-height: 1.2;
  color: var(--fg);
  margin: 0 0 14px;
}
.foot p { color: var(--fg-mute); font-size: 14px; max-width: 280px; line-height: 1.5; }
.foot h4 {
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-mute);
  margin: 0 0 16px; font-weight: 400;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.foot__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line);
  font-family: var(--font-body); font-size: 11px; color: var(--fg-mute);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.foot__bottom a { transition: color 0.2s ease; }
.foot__bottom a:hover { color: var(--fg); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }

/* ====================================================================
   INTERACTION STATES — unified hover / active / focus / touch
   ==================================================================== */

/* keyboard focus — accessibility */
*:focus { outline: none; }
/* Lote 6 (a11y teclado): se añaden casillas/radios — antes quedaban SIN foco visible
   bajo el reset `*:focus` (las legales del registro eran inalcanzables a la vista al
   tabular). El FAQ y las cards de zona pasaron a `<button>`/`<a>` → ya los cubren
   `button`/`a`, por eso dejan de tener selector propio aquí. */
a:focus-visible,
button:focus-visible,
[role="menuitem"]:focus-visible,
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible,
.ride-card:focus-visible {
  /* Anillo de foco unificado en --fg: contrasta siempre (la marca --zone-1 puede
     caer a ~1:1 con la zona Kids activa) y NO redefine el border-radius del elemento
     (antes 6px deformaba el radio 14px de los botones al tabular). El outline ya sigue
     el radio propio de cada elemento. */
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

/* active (pressed) — subtle "press" feedback on all buttons */
.btn:active,
.zone-intro__cta:active,
.plan-select__trigger:active,
.nav__burger:active,
.mob-menu__close:active,
.slider-arrow:active:not(:disabled),
.zone-tab:active {
  transform: translateY(0) scale(0.97);
  transition: transform 0.08s ease;
}

/* card press (smaller scale since cards are bigger) */
.ride-card:active,
.zone-intro__card:active,
.zone-photo-card:active,
.price:active,
.gallery__item:active,
.polaroid:active,
.events__photo:active {
  transform: translateY(-2px) scale(0.995);
  transition: transform 0.08s ease;
}

/* touch devices — disable hover translates so they don't stick after tap */
@media (hover: none) {
  .btn:hover,
  .zone-intro__cta:hover,
  .ride-card:hover,
  .zone-intro__card:hover,
  .zone-photo-card:hover,
  .events__photo:hover,
  .price:hover,
  .gallery__item:hover,
  .polaroid:hover,
  .rule:hover {
    transform: none;
  }
  .zone-feat:hover {
    transform: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .zones__head { grid-template-columns: 1fr; }
  .zone-intro { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .info__grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; gap: 24px; }
  .events__row { grid-template-columns: 1fr; }
  .ride-card { flex: 0 0 calc((100% - 18px) / 2); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .plan-select { display: none; }
  .nav__burger { display: inline-flex; }
}

@media (max-width: 768px) {
  .wrap { width: calc(100% - 40px); }
  .section { padding: 64px 0; }
  .nav { padding: 12px 20px; }
  .nav__brand { font-size: 18px; }
  .nav__reserve { padding: 10px 14px; font-size: 13px; }
  /* hero */
  .hero { padding: 92px 0 40px; min-height: auto; }
  .hero__stage { aspect-ratio: 3 / 4; border-radius: var(--r); }
  .hero__stage-content { padding: 22px 20px 24px; }
  .hero__stage-top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero__tag--onvideo { text-align: left; max-width: none; font-size: 13px; }
  .hero__title--onvideo { font-size: clamp(56px, 18vw, 96px); }
  .hero__stage-label { display: none; }
  .hero__stage-bottom { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__cta-row--onvideo {
    flex-direction: column; align-items: stretch;
    justify-content: flex-start; gap: 12px;
  }
  /* stats */
  .hero__foot { gap: 14px 24px; padding-top: 22px; margin-top: 28px; }
  .hero__stat { gap: 8px; }
  .hero__stat .num { font-size: 26px; }
  .hero__stat .sep { display: none; }
  .hero__stat .label { font-size: 10px; }
  /* marquee */
  .marquee { padding: 14px 0; }
  .marquee__item { font-size: 36px; gap: 32px; }
  .marquee__item .star { font-size: 22px; }
  .marquee__track { gap: 32px; }
  /* zones intro */
  .zones__title { font-size: clamp(44px, 13vw, 80px); }
  .zones__intro { font-size: 16px; }
  .zone-stats { gap: 20px; padding: 18px 0; margin-bottom: 32px; }
  .zone-stats__num { font-size: 28px; }
  .zone-stats__item { gap: 10px; }
  .zones__head, .rides__head { margin-bottom: 36px; gap: 16px; }
  .zones__intro, .rides__head > p { font-size: 16px; }
  .zone-intro__card { padding: 28px 24px; min-height: 360px; }
  /* Zona con foto en móvil: misma altura mínima que el fallback + banda de foto más baja
     (la card pasa a 1-col, no necesita 240px de foto). Revisión adversarial #230. */
  .zone-photo-card { min-height: 360px; }
  .zone-photo-card__photo { height: 200px; }
  .zone-intro__name { font-size: clamp(64px, 18vw, 120px); }
  .zone-intro__sub { font-size: 17px; }
  .zone-intro__copy { font-size: 14px; }
  .zone-intro__bg { font-size: 280px; right: -20px; bottom: -70px; }
  /* rides */
  .rides__title { font-size: clamp(44px, 13vw, 80px); }
  .rides__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rides__controls { flex-direction: column; align-items: stretch; gap: 14px; }
  /* #232: el switcher de zonas `.zone-tabs` a ANCHO COMPLETO en móvil — tanto en Atracciones
     (#rides) como en Entradas (#pricing, donde su contenedor `.ticket-prices__tabs` lo centraba a
     ancho de contenido) — con los 2 botones «Zona Jump/Kids» repartidos 50/50, sin hueco vacío. */
  .zone-tabs { display: flex; width: 100%; }
  .zone-tab { flex: 1; text-align: center; }
  .slider-nav { justify-content: flex-end; }
  .ride-card { flex: 0 0 78%; min-height: 400px; }
  .ride-card__name { font-size: 24px; }
  /* pricing */
  .pricing__grid { grid-template-columns: 1fr; gap: 12px; }
  .price__num { font-size: 64px; }
  /* events */
  .events { padding: 36px 24px; border-radius: var(--r); }
  .events__title { font-size: clamp(44px, 13vw, 80px); }
  .events__body { font-size: 16px; }
  .events--rich { padding: 32px 22px; }
  .events--rich .events__head { margin-bottom: 28px; }
  .events__grid { grid-template-columns: 1fr; gap: 28px; }
  .events__photo { transform: rotate(-1.5deg); align-self: center; max-width: 340px; width: 100%; margin: 0 auto; }
  .events__photo-sticker { right: -10px; top: 12px; }
  .events__ticket { bottom: -20px; right: -12px; min-width: 120px; padding: 14px 22px 12px; }
  .events__ticket-num { font-size: 32px; }
  .events--rich .events__head .events__body { font-size: 16px; }
  .events__pack-card { padding: 22px 22px 20px; }
  .events__timeline { margin-top: 36px; padding-top: 24px; }
  .events__timeline-label { margin-bottom: 20px; }
  .events__timeline-steps { gap: 6px; }
  .events__timeline-dot { width: 16px; height: 16px; border-width: 4px; }
  .events__timeline-steps::before { top: 8px; left: 6%; right: 6%; }
  .events__timeline-time { font-size: 16px; }
  .events__timeline-name { font-size: 9px; letter-spacing: 0.1em; }
  /* info */
  .info-card { padding: 28px 22px; }
  .info-card h3 { font-size: 32px; }
  .map-card { min-height: 280px; padding: 18px; }
  /* rules */
  .rules-grid { grid-template-columns: 1fr; }
  /* gallery */
  .polaroid { flex: 0 0 200px; padding: 10px 10px 30px; }
  /* faq */
  .faq { gap: 18px; }
  .faq__q { font-size: 18px; gap: 16px; }
  /* reserve big CTA */
  .reserve { padding: 100px 0 70px; }
  .reserve h2 { font-size: clamp(72px, 22vw, 140px); }
  .reserve p { font-size: 16px; margin: 20px auto 28px; }
  /* footer */
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
  .foot__brand { font-size: 44px; }
  .foot__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  /* #231 p8: «configuración de cookies» en su PROPIA línea, a ancho completo y en solitario
     (sin los enlaces legales a sus lados). */
  .foot__legal { flex-wrap: wrap; }
  .foot__cookie-config { flex-basis: 100%; text-align: left; margin-top: 4px; }
}

@media (max-width: 560px) {
  .nav { gap: 8px; padding: 12px 16px; }
  .nav__reserve { padding: 9px 12px; font-size: 12px; }
  /* #231 p9: logo MÁS GRANDE en móvil (hay espacio al ocultar «Hola, nombre», p7) + espaciado
     sano entre icono de cuenta · CTA «Reservas aquí» · menú (logo a la izquierda, resto a la
     derecha vía el justify-between del nav). */
  .nav__brand-row { font-size: 20px; }
  .nav__cta { gap: 12px; }
  .nav__brand-slogan { display: none; }
  .nav__burger { width: var(--tap-min); height: var(--tap-min); }   /* Lote 9: no encoger en móvil (44px táctil) */
}

@media (max-width: 420px) {
  .wrap { width: calc(100% - 32px); }
  .nav__brand { font-size: 16px; }
  .nav__brand-row { font-size: 18px; } /* #231 p9: logo grande pero ajustado al ancho mínimo */
  .hero__stage { aspect-ratio: 4 / 5; }
  .hero__title--onvideo { font-size: clamp(48px, 19vw, 80px); }
  .marquee__item { font-size: 28px; gap: 24px; }
  .ride-card { flex: 0 0 86%; }
  .polaroid { flex: 0 0 168px; }
  .price__num { font-size: 56px; }
}

/* ====================================================================
   Sección Cumpleaños (#231) — rediseño en 3 secciones (mockup
   `design_mockup/seccion-cumpleanos.css`). 01 banda pack · 02 invitación ·
   03 proceso. Acento `--bda` = pack activo (lo fija el blade inline). Omitidos
   del mockup: `.bd-day` (decisión clienta), `.bd-toast`/`.bd-main` (demo).
   ==================================================================== */
.bd-page { --bda: var(--jump-1); }

/* ---- 01 · CUMPLEAÑOS — banda ---- */
.bd-sec1 { padding: 64px 0 0; }
/* En /cumpleanos la sección es el primer contenido bajo el nav FIJO → despeje superior
   (mismo que `.page`). En la landing va a mitad de página y conserva los 64px. */
.bd-standalone .bd-sec1 { padding-top: clamp(108px, 14vh, 156px); }
.bd-band {
  background: var(--bda); color: var(--on-brand);
  border-radius: var(--r-lg);
  padding: 56px clamp(28px, 5vw, 72px) clamp(40px, 5vw, 64px);
  position: relative; overflow: hidden;
  transition: background-color 0.45s ease;
}
.bd-shape { position: absolute; pointer-events: none; background: var(--fg); }
.bd-band__head { max-width: 860px; margin-bottom: 44px; position: relative; z-index: 1; }
.bd-band__eyebrow {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--on-brand);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.bd-band__title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(44px, 6.4vw, 100px);
  line-height: 0.88; letter-spacing: -0.035em; margin: 0 0 26px;
}
.bd-tabs { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.bd-tab {
  border: 1px solid color-mix(in srgb, var(--on-brand) 26%, transparent);
  border-radius: var(--r-btn);
  padding: 11px 20px;
  font-size: 13px; font-weight: 600;
  color: var(--on-brand); background: transparent; cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.bd-tab:hover { transform: translateY(-2px); }
.bd-tab.is-active { background: var(--fg); color: var(--bda); border-color: var(--fg); }
.bd-band__body { font-size: 18px; line-height: 1.55; margin: 0; max-width: 56ch; }

.bd-grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 4vw, 64px);
  align-items: start; position: relative; z-index: 1;
}

/* polaroid con la foto de la zona */
.bd-pol {
  position: relative; background: #FFFFFF;
  padding: 18px 18px 56px;
  transform: rotate(-2.5deg);
  box-shadow: 0 26px 50px -10px rgba(20,19,15,0.22), 0 4px 12px rgba(20,19,15,0.10);
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s ease;
  margin-top: 10px;
}
.bd-pol:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 34px 62px -10px rgba(20,19,15,0.28), 0 6px 16px rgba(20,19,15,0.12);
}
.bd-pol__frame {
  width: 100%; aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(135deg, #ECE5D2 0 14px, #F4EFE3 14px 15px);
  position: relative; overflow: hidden;
}
.bd-pol__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bd-pol__cap {
  position: absolute; left: 0; right: 0; bottom: 18px; text-align: center;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-mute);
}
.bd-pol__tape {
  position: absolute; top: -14px; left: 50%;
  width: 130px; height: 28px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(255,255,255,0.55);
  border: 1px dashed rgba(20,19,15,0.25); z-index: 2;
}
.bd-pol__sticker {
  position: absolute; top: 20px; right: -22px;
  background: var(--fg); color: var(--bda);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 6px 14px; transform: rotate(8deg);
  border-radius: 7px;
  box-shadow: 0 6px 18px rgba(20,19,15,0.18); z-index: 3;
}
.bd-pol__ticket {
  position: absolute; bottom: -26px; right: -28px;
  background: var(--bg-card); color: var(--fg);
  padding: 16px 26px 14px; border-radius: 10px;
  transform: rotate(5deg);
  box-shadow: 0 18px 38px -10px rgba(20,19,15,0.22), 0 2px 6px rgba(20,19,15,0.10);
  display: flex; flex-direction: column; align-items: center;
  z-index: 4; text-align: center; min-width: 132px;
}
.bd-pol__ticket::before, .bd-pol__ticket::after {
  content: ""; position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bda); transition: background-color 0.45s ease;
}
.bd-pol__ticket::before { left: -7px; }
.bd-pol__ticket::after { right: -7px; }
.bd-pol__ticket .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; color: var(--fg-mute); }
.bd-pol__ticket .num {
  font-family: var(--font-display); font-stretch: 75%; font-weight: 800;
  font-size: 38px; line-height: 1; letter-spacing: -0.025em; margin-top: 4px;
}
.bd-pol__ticket .sub { font-size: 11px; font-weight: 600; color: var(--fg-mute); }

/* pack card */
.bd-pack {
  background: var(--bg-card); color: var(--fg); border-radius: var(--r-lg);
  padding: 26px 28px 28px;
  box-shadow: 0 24px 54px -18px rgba(20,19,15,0.28);
}
.bd-pack__head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.bd-pack__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--fg-mute); }
.bd-pack__price { display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.bd-pack__price .from { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-mute); }
.bd-pack__price .val { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; font-size: 34px; line-height: 1; letter-spacing: -0.03em; }
.bd-pack__price .per { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-mute); }
.bd-pack__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.bd-pack__list li { display: flex; align-items: flex-start; gap: 12px; }
.bd-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bda); color: var(--fg);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  transition: background-color 0.45s ease;
}
.bd-feat__t { font-size: 14.5px; font-weight: 600; display: block; }
.bd-feat__s { font-size: 12.5px; color: var(--fg-mute); display: block; margin-top: 1px; }

/* Los complementos reales (addons-mini) ya traen su PROPIO separador (borde punteado) y margen.
   NO añadir aquí otro borde: dejaría dos líneas (recta + punteada) → un solo separador (#231 p1). */

.bd-pack__note { font-size: 12.5px; color: var(--fg-mute); margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
.bd-pack__note strong { color: var(--fg); font-weight: 600; }
.bd-pack__cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--fg); color: var(--bg);
  border-radius: var(--r-btn); padding: 16px 22px;
  font-size: 15px; font-weight: 600; margin-top: 20px; cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
}
.bd-pack__cta:hover { transform: translateY(-3px) scale(1.01); background: var(--zone-1); color: var(--on-brand); box-shadow: 0 12px 28px -8px rgba(20,19,15,0.35); }
.bd-pack__cta:active { transform: translateY(0) scale(0.98); transition: transform 0.08s ease; }
.bd-pack__cta svg { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.bd-pack__cta:hover svg { transform: translateX(5px); }

/* enlace sutil a la invitación (solo landing), JUSTO DEBAJO de la card del pack (#231).
   Secundario: no compite con el CTA sólido «Reservar cumpleaños» de la card. */
.bd-invite-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; text-align: center;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--on-brand); opacity: 0.78;
  transition: color 0.2s ease, opacity 0.2s ease, gap 0.2s ease;
}
.bd-invite-cta:hover { color: var(--on-brand); opacity: 1; gap: 12px; }
.bd-invite-cta svg { flex-shrink: 0; transition: transform 0.25s ease; }
.bd-invite-cta:hover svg { transform: translateX(3px); }

/* ---- 02 · INVITACIÓN ---- */
.bd-sec2 { padding: 96px 0; }
.bd-sec2__head { max-width: 860px; margin-bottom: 48px; }
.bd-sec2__head .eyebrow { display: block; margin-bottom: 16px; }
.bd-sec2__title {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(40px, 5.4vw, 84px); line-height: 0.88; letter-spacing: -0.035em; margin: 0 0 18px;
}
.bd-sec2__title em { font-style: normal; color: var(--bda); transition: color 0.45s ease; }
.bd-sec2__intro { font-size: 18px; line-height: 1.55; color: var(--fg-mute); max-width: 56ch; margin: 0; }
.bd-inv { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 28px; align-items: stretch; }
.bd-editor { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.bd-editor__title { font-family: var(--font-mono); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-mute); }
.bd-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bd-field { display: flex; flex-direction: column; gap: 6px; }
.bd-field--full { grid-column: 1 / -1; }
.bd-field label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-mute); }
.bd-field input {
  font: inherit; font-size: 14px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 11px 13px; outline: none; width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bd-field input:focus { border-color: var(--bda); box-shadow: 0 0 0 3px color-mix(in oklab, var(--bda) 25%, transparent); }
.bd-swatches { display: flex; gap: 8px; }
.bd-swatch {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  padding: 8px 16px; font-size: 12px; font-weight: 600; cursor: pointer; background: transparent; color: var(--fg);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.bd-swatch:hover { transform: translateY(-2px); }
.bd-swatch .dot { width: 12px; height: 12px; border-radius: 50%; }
.bd-swatch--jump .dot { background: var(--jump-1); }
.bd-swatch--kids .dot { background: var(--kids-1); }
.bd-swatch.is-active { border-color: var(--fg); background: var(--fg); color: var(--bg); }
.bd-editor__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.bd-btn { display: inline-flex; align-items: center; gap: 9px; border-radius: var(--r-btn); padding: 13px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: transform 0.25s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.bd-btn:hover { transform: translateY(-2px); }
.bd-btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.bd-btn--solid { background: var(--fg); color: var(--bg); }
.bd-btn--solid:hover { background: var(--zone-1); color: var(--on-brand); }
.bd-btn--ghost { border: 1px solid var(--line-strong); color: var(--fg); background: transparent; }
.bd-btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.bd-btn:active:not(:disabled) { transform: translateY(0) scale(0.97); transition: transform 0.08s ease; }
.bd-editor__hint { font-size: 11.5px; color: var(--fg-mute); margin: 0; }
.bd-stage { background: var(--bg-soft); border-radius: var(--r-lg); border: 1px solid var(--line); display: grid; place-items: center; padding: clamp(32px, 4vw, 56px); position: relative; overflow: hidden; }
.bd-stage__shape { position: absolute; pointer-events: none; background: var(--bda); transition: background-color 0.45s ease; }
.bd-card {
  --inv: var(--bda); --inv2: var(--bda);
  width: min(560px, 100%); background: #FFFFFF; border-radius: 18px;
  box-shadow: 0 30px 60px -16px rgba(20,19,15,0.30), 0 6px 16px rgba(20,19,15,0.10);
  transform: rotate(-2deg); position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.bd-card:hover { transform: rotate(0deg); }
/* Estado de CAPTURA (html2canvas, #231 p2): la añade `birthdayInvite._render` al clon antes de
   pintar para que el PNG sea un frame en REPOSO y RECTO — sin rotación de la tarjeta, sin las
   animaciones de banderines/estrella/letras (que saldrían a mitad de animación). Fiel a la vista. */
.bd-card--capturing { transform: none !important; }
/* Mata TODA animación y TRANSICIÓN en el clon de captura → frame en reposo, sin nada a medias
   (la transición de las letras podía dispararse durante el render; revisión #232). */
.bd-card--capturing, .bd-card--capturing * { animation: none !important; transition: none !important; }
.bd-card--capturing .bd-card__star { transform: rotate(10deg) !important; translate: 0 0 !important; }
.bd-card--capturing .bd-card__name .ltr { transform: rotate(var(--lr, 0deg)) !important; }
.bd-card__bunting { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: center; gap: 7px; padding: 0 18px; pointer-events: none; z-index: 2; }
/* Banderines como triángulos de BORDE (no clip-path) → html2canvas los captura fiel (#231 p2). */
.bd-card__bunting .flag {
  width: 0; height: 0; flex-shrink: 0; transform-origin: top center;
  border-left: 15px solid transparent; border-right: 15px solid transparent;
  border-top: 22px solid var(--inv);
}
.bd-card__bunting .flag:nth-child(3n + 1) { border-top-color: var(--inv); }
.bd-card__bunting .flag:nth-child(3n + 2) { border-top-color: var(--fg); }
.bd-card__bunting .flag:nth-child(3n) { border-top-color: var(--inv2); }
.bd-card__bunting .flag:nth-child(even) { border-top-width: 18px; }
@keyframes bdFlagSway { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
@media (prefers-reduced-motion: no-preference) {
  .bd-card__bunting .flag { animation: bdFlagSway 2.6s ease-in-out infinite; }
  .bd-card__bunting .flag:nth-child(even) { animation-delay: -1.3s; }
}
.bd-card__conf { position: absolute; pointer-events: none; z-index: 1; border-radius: 3px; }
.bd-card__conf--1 { width: 12px; height: 12px; top: 64px; left: 26px; background: var(--inv2); transform: rotate(22deg); }
.bd-card__conf--2 { width: 8px; height: 8px; top: 120px; right: 150px; background: var(--inv); transform: rotate(-15deg); }
.bd-card__conf--3 { width: 10px; height: 10px; bottom: 110px; right: 28px; background: var(--fg); transform: rotate(38deg); border-radius: 50%; }
.bd-card__conf--4 { width: 7px; height: 7px; bottom: 56px; left: 40px; background: var(--inv); transform: rotate(-30deg); }
.bd-card__star {
  position: absolute; top: 40px; right: 26px; z-index: 3;
  width: 104px; height: 104px;
  /* La estrella la dibuja un SVG hijo (no clip-path) → captura fiel con html2canvas (#231 p2). */
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(10deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bd-card__star-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bd-card__star-svg polygon { fill: var(--inv); transition: fill 0.45s ease; }
.bd-card__star .num, .bd-card__star .yrs { position: relative; z-index: 1; }
.bd-card:hover .bd-card__star { transform: rotate(-4deg) scale(1.08); }
@keyframes bdStarFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
@media (prefers-reduced-motion: no-preference) { .bd-card__star { animation: bdStarFloat 3.2s ease-in-out infinite; } }
.bd-card__star .num { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; font-size: 38px; line-height: 0.9; letter-spacing: -0.03em; color: var(--fg); }
.bd-card__star .yrs { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg); }
.bd-card__inner { padding: 52px 30px 24px; min-width: 0; position: relative; z-index: 2; }
.bd-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 26px; padding-right: 116px; }
.bd-card__brand { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.04em; }
.bd-card__brand .dot { color: var(--inv); }
.bd-card__eyebrow { font-family: var(--font-mono); font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-mute); }
.bd-card__msg { font-size: 15px; font-weight: 600; color: var(--fg-mute); margin: 0 0 6px; padding-right: 116px; }
.bd-card__name {
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%;
  font-size: clamp(44px, 5vw, 64px); line-height: 0.95; letter-spacing: -0.02em;
  margin: 0 0 24px; overflow-wrap: anywhere; padding-right: 96px;
}
.bd-card__name .ltr { display: inline-block; transform: rotate(var(--lr, 0deg)); transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.bd-card__name .ltr-0 { --lr: -3deg; }
.bd-card__name .ltr-1 { --lr: 2.5deg; color: var(--inv); }
.bd-card__name .ltr-2 { --lr: -1.5deg; }
.bd-card__name .ltr-3 { --lr: 3deg; color: var(--inv2); }
.bd-card:hover .bd-card__name .ltr { transform: translateY(-6px) rotate(var(--lr, 0deg)); }
.bd-card__name .sp { display: inline-block; width: 0.3em; }
.bd-card__details { border-top: 2px dashed var(--line-strong); }
.bd-card__row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 2px dashed var(--line); font-size: 14px; }
.bd-card__row .ico { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--inv); color: var(--fg); display: grid; place-items: center; transition: background-color 0.45s ease; }
.bd-card__row:nth-child(2) .ico { background: var(--inv2); }
.bd-card__row:nth-child(3) .ico { background: var(--fg); color: var(--bg); }
.bd-card__row .lbl { font-family: var(--font-mono); font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-mute); width: 52px; flex-shrink: 0; }
.bd-card__row .val { font-weight: 600; }
.bd-card__ps { font-size: 12.5px; color: var(--fg-mute); margin: 14px 0 0; font-style: italic; }

/* ---- 03 · PROCESO ---- */
.bd-sec3 { padding: 88px 0 96px; }
.bd-sec3__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
.bd-sec3__top .eyebrow { display: block; margin-bottom: 14px; }
.bd-sec3__title { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; font-size: clamp(38px, 4.6vw, 72px); line-height: 0.88; letter-spacing: -0.035em; margin: 0; }
.bd-sec3__title em { font-style: normal; color: var(--bda); transition: color 0.45s ease; }
.bd-proc__count { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; font-size: 30px; letter-spacing: -0.02em; line-height: 1; white-space: nowrap; }
.bd-proc__count .of { color: var(--fg-mute); font-size: 18px; }
.bd-proc { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(24px, 4vw, 56px); align-items: center; padding: 44px 0 40px; border-bottom: 1px solid var(--line); }
@keyframes bdProcIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.bd-proc__num { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; font-size: clamp(110px, 13vw, 210px); line-height: 0.8; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1.5px var(--fg); user-select: none; }
.bd-proc__body { min-width: 0; }
@media (prefers-reduced-motion: no-preference) {
  .bd-proc__num, .bd-proc__body { animation: bdProcIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .bd-proc__body { animation-delay: 0.06s; }
}
.bd-proc__kicker { font-family: var(--font-mono); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em; color: var(--fg-mute); display: block; margin-bottom: 12px; }
.bd-proc__t { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; font-size: clamp(30px, 3.6vw, 54px); line-height: 0.92; letter-spacing: -0.03em; margin: 0 0 12px; text-wrap: balance; }
.bd-proc__s { font-size: 16px; line-height: 1.55; color: var(--fg-mute); margin: 0; max-width: 46ch; }
.bd-proc__arrows { display: flex; gap: 10px; align-self: end; }
.bd-proc__arrow { width: 50px; height: 50px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; color: var(--fg); background: transparent; cursor: pointer; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.25s ease; }
.bd-proc__arrow:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); transform: translateY(-2px); }
.bd-proc__rail { display: flex; align-items: flex-start; padding-top: 36px; }
.bd-proc__stop { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; cursor: pointer; background: transparent; border: 0; }
.bd-proc__cube {
  width: 54px; height: 54px; border: 1.5px solid var(--line-strong); border-radius: 13px;
  transform: rotate(8deg); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-stretch: 75%; font-size: 17px; letter-spacing: -0.02em;
  background: var(--bg-card); color: var(--fg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.bd-proc__stop:nth-child(4n + 3) .bd-proc__cube { transform: rotate(-7deg); }
.bd-proc__stop:hover .bd-proc__cube { transform: rotate(0deg) translateY(-4px); }
.bd-proc__stop.is-active .bd-proc__cube { background: var(--bda); color: var(--on-brand); border-color: transparent; transform: rotate(0deg) scale(1.12); box-shadow: 0 12px 26px -8px rgba(20, 19, 15, 0.3); }
.bd-proc__stop.is-done .bd-proc__cube { background: var(--fg); border-color: transparent; color: var(--bg); }
.bd-proc__lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-mute); transition: color 0.2s ease; }
.bd-proc__stop.is-active .bd-proc__lbl { color: var(--fg); }
.bd-proc__seg { flex: 1; height: 0; border-top: 2px dashed var(--line-strong); margin: 27px 14px 0; position: relative; transition: border-color 0.3s ease; }
.bd-proc__seg.is-filled { border-top-style: solid; border-top-color: var(--fg); }

/* ---- responsive ---- */
@media (max-width: 1080px) { .bd-proc__num { font-size: 96px; } }
@media (max-width: 900px) {
  .bd-grid { grid-template-columns: 1fr; }
  /* `width:100%` IMPRESCINDIBLE: como `.bd-pol` es grid item, el `margin-inline:auto` desactiva el
     stretch y lo dimensiona por contenido; con la foto en position:absolute el contenido aporta 0
     → el marco colapsaba y la FOTO no se veía en móvil. Con ancho definido (100%, tope 420, centrado)
     el `.bd-pol__frame { width:100% }` ya resuelve y la imagen aparece (#232). */
  .bd-pol { width: 100%; max-width: 420px; margin-inline: auto; }
  .bd-inv { grid-template-columns: 1fr; }
  .bd-card__name { font-size: 40px; }
  /* Móvil/tablet (#231 p4 / #232): las formas decorativas (cuadros oscuros) se solapaban con el
     título; la leyenda de la polaroid (`.bd-pol__cap`) y la cinta decorativa (`.bd-pol__tape`)
     quedaban tapadas/sueltas tras el ticket «Pack cumple 8+». Se ocultan en pantallas estrechas
     (la FOTO se mantiene). */
  .bd-shape { display: none; }
  .bd-pol__cap { display: none; }
  .bd-pol__tape { display: none; }
  /* Tabs «Cumpleaños Jump/Kids» a ancho completo en móvil (preferencia de la clienta, #232). */
  .bd-tab { flex: 1; text-align: center; }
}
@media (max-width: 560px) {
  .bd-band { padding: 40px 24px; }
  .bd-proc { grid-template-columns: 1fr; gap: 18px; }
  .bd-proc__num { font-size: 80px; }
  .bd-proc__arrows { align-self: start; }
  .bd-proc__lbl { display: none; }
  .bd-proc__cube { width: 44px; height: 44px; font-size: 14px; border-radius: 11px; }
  .bd-proc__seg { margin: 22px 8px 0; }
  .bd-card { transform: none; }
  .bd-card__star { width: 84px; height: 84px; top: 34px; right: 16px; }
  .bd-card__star .num { font-size: 30px; }
  .bd-card__top, .bd-card__msg { padding-right: 90px; }
  .bd-card__name { padding-right: 70px; }
}
