/* ================================================
   ZONA CERO AIRSOFT — Estilos principales
   Acento: Rojo #D62828 + Naranja #F77F00
   Fondo: #06080A (dark military)
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D62828;
  --red-light: #FF3B3B;
  --red-dark: #9A1A1A;
  --orange: #F77F00;
  --neon: #FF6B00;
  --neon-glow: rgba(255, 107, 0, 0.55);
  --red-glow: rgba(214, 40, 40, 0.35);
  --orange-glow: rgba(255, 107, 0, 0.38);
  --white: #FFFFFF;
  --bg: #1C1C1E;
  --bg-2: #242424;
  --bg-3: #2C2C2E;
  --text: #E8E8E6;
  --text-muted: #7A7A78;
  --border: rgba(214, 40, 40, 0.18);
  --radius: 16px;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(28, 28, 30, 0.95);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 44px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav__logo-text { font-size: 1.1rem; font-weight: 900; letter-spacing: .18em; color: var(--white); }

.nav__links { display: flex; list-style: none; gap: 36px; align-items: center; }
.nav__links a { font-size: .9rem; font-weight: 500; color: var(--text-muted); transition: color .2s; letter-spacing: .02em; }
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
  box-shadow: 0 0 20px var(--red-glow);
}
.nav__cta:hover { background: var(--red-light) !important; transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
}
.btn--primary { background: var(--red); color: var(--white); box-shadow: 0 0 30px var(--red-glow); }
.btn--primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 0 50px rgba(214,40,40,.55); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.25); }
.btn--ghost:hover { border-color: var(--red); color: var(--red-light); transform: translateY(-2px); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, #2a1010, #1c1c1e 75%);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 50% 46%, rgba(0,0,0,.38) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(10,10,12,.45) 0%, rgba(10,10,12,.25) 50%, rgba(10,10,12,.82) 100%);
  z-index: 2;
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214,40,40,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,40,40,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  z-index: 3;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: glow-pulse 6s ease-in-out infinite;
  z-index: 3;
}
.hero__glow--1 { width: 500px; height: 500px; background: rgba(214,40,40,.12); top: 5%; left: 15%; }
.hero__glow--2 { width: 480px; height: 480px; background: rgba(255,107,0,.14); bottom: 10%; right: 10%; animation-delay: -3s; }

@keyframes glow-pulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 820px;
  z-index: 2;
}

.hero__logo-wrap { margin-bottom: 20px; display: flex; justify-content: center; }
.hero__logo-img { height: 120px; width: auto; object-fit: contain; filter: brightness(0) invert(1) drop-shadow(0 0 32px rgba(214,40,40,.7)); }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 20px;
  text-shadow: 0 0 18px var(--neon-glow);
}
.hero__eyebrow::before, .hero__eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--neon); opacity: .7; box-shadow: 0 0 8px var(--neon-glow); }

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,.7), 0 0 60px rgba(0,0,0,.4);
}
.hero__title--accent {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero__sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text); margin-bottom: 40px; line-height: 1.7; text-shadow: 0 1px 12px rgba(0,0,0,.8); }
.hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--red), transparent); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ===========================
   STATS
   =========================== */
.stats {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat { padding: 24px 16px; }
.stat__num { display: inline-block; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--neon); line-height: 1; text-shadow: 0 0 24px var(--neon-glow), 0 0 60px rgba(255,107,0,.2); }
.stat__unit { font-size: 1.4rem; font-weight: 700; color: var(--neon); text-shadow: 0 0 16px var(--neon-glow); }
.stat__label { font-size: .875rem; color: var(--text-muted); margin-top: 8px; letter-spacing: .04em; }

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--neon); margin-bottom: 16px; text-shadow: 0 0 18px var(--neon-glow); }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -.03em; color: var(--white); margin-bottom: 16px; text-transform: uppercase; }
.section-title span { background: linear-gradient(135deg, var(--red-light), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ===========================
   BLOB BACKGROUNDS
   =========================== */
.blob-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; }
.blob--1 { width: 600px; height: 600px; background: radial-gradient(circle, #D62828, transparent 65%); top: -200px; right: -150px; }
.blob--2 { width: 500px; height: 500px; background: radial-gradient(circle, #F77F00, transparent 65%); bottom: -150px; left: -100px; }
.blob--3 { width: 700px; height: 700px; background: radial-gradient(circle, #D62828, transparent 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.blob--4 { width: 600px; height: 600px; background: radial-gradient(circle, #F77F00, transparent 65%); bottom: -100px; right: -100px; }

/* ===========================
   EXPERIENCIAS
   =========================== */
.experiencias {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.exp-card {
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), border-color .3s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.exp-card:hover { transform: translateY(-8px); border-color: rgba(214,40,40,.5); box-shadow: 0 24px 60px rgba(214,40,40,.18); }
.exp-card:hover::before { opacity: 1; }

.exp-card--featured { border-color: rgba(214,40,40,.4); background: linear-gradient(145deg, rgba(214,40,40,.06), var(--bg-2)); }
.exp-card--featured::before { opacity: 1; }

.exp-card__badge { position: absolute; top: 16px; right: 16px; background: var(--red); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }

.exp-card__icon { width: 54px; height: 54px; background: rgba(214,40,40,.08); border: 1px solid rgba(214,40,40,.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red-light); margin-bottom: 4px; transition: background .3s; }
.exp-card:hover .exp-card__icon { background: rgba(214,40,40,.16); }

.exp-card__title { font-size: 1.18rem; font-weight: 700; color: var(--white); letter-spacing: -.01em; }
.exp-card__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.exp-card__link { font-size: .84rem; font-weight: 600; color: var(--orange); letter-spacing: .02em; transition: color .2s, letter-spacing .2s; margin-top: 4px; }
.exp-card__link:hover { color: var(--red-light); letter-spacing: .05em; }

/* ===========================
   EQUIPAMIENTO
   =========================== */
.equipamiento { padding: 120px 0; background: var(--bg-2); }

.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }

.equip-card {
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), box-shadow .35s, border-color .3s;
}
.equip-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(214,40,40,.18); border-color: rgba(214,40,40,.45); }

.equip-card__img-wrap { height: 180px; overflow: hidden; background: linear-gradient(135deg, #2a1515, #242424); position: relative; }
.equip-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.equip-card__img-wrap--contain img { object-fit: contain; padding: 12px; background: #0e0a0a; }
.equip-card:hover .equip-card__img-wrap img { transform: scale(1.06); }

.equip-card__placeholder { width: 100%; height: 100%; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); font-size: .72rem; text-align: center; padding: 16px; }
.equip-card__placeholder svg { opacity: .25; }

.equip-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.equip-card__name { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.equip-card__desc { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

.equip-card__specs { list-style: none; display: flex; flex-direction: column; gap: 6px; padding-top: 10px; border-top: 1px solid var(--border); }
.equip-card__specs li { font-size: .79rem; color: var(--text-muted); display: flex; gap: 8px; }
.equip-card__specs li span { color: var(--orange); font-weight: 600; min-width: 76px; }

/* ===========================
   MODOS DE JUEGO
   =========================== */
.modos { padding: 120px 0; background: var(--bg); position: relative; overflow: hidden; }

.modos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }

.modo-card {
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.modo-card:hover { transform: translateY(-4px); border-color: rgba(214,40,40,.45); box-shadow: 0 16px 40px rgba(214,40,40,.14); }

.modo-card__num { font-size: 3rem; font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--red), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; flex-shrink: 0; letter-spacing: -.05em; }
.modo-card__title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -.01em; }
.modo-card__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   TARIFAS
   =========================== */
.tarifas { padding: 120px 0; background: var(--bg-2); }

/* Tabs */
.tarifas-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tarifa-tab {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  font-family: var(--font);
  letter-spacing: .02em;
}
.tarifa-tab:hover { border-color: rgba(214,40,40,.5); color: var(--white); }
.tarifa-tab.active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 0 20px var(--red-glow); }

.tarifa-panel { display: none; }
.tarifa-panel.active { display: block; }

/* Grid */
.tarifas-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
  margin-bottom: 0;
}
.tarifas-grid--2 {
  /* keeps 2-col layout when not in carousel */
}

/* Carousel wrapper */
.tarifa-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.tarifa-carousel__viewport {
  flex: 1;
  overflow: hidden;
}
.tarifa-carousel .tarifa-card {
  flex-shrink: 0;
  width: var(--carousel-card-w, 320px);
}
.tarifa-carousel__btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(214,40,40,.35);
  background: rgba(28,28,30,.92);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, opacity .25s, transform .2s;
  backdrop-filter: blur(10px);
}
.tarifa-carousel__btn:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.08);
}
.tarifa-carousel__btn:disabled { opacity: .22; cursor: not-allowed; }

.tarifa-card {
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), border-color .3s, box-shadow .35s;
}
.tarifa-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.tarifa-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,.55); box-shadow: 0 20px 50px rgba(255,107,0,.18), 0 0 0 1px rgba(255,107,0,.1); }
.tarifa-card:hover::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--neon), transparent); }

.tarifa-card--featured {
  border-color: rgba(255,107,0,.55);
  background: linear-gradient(145deg, rgba(255,107,0,.07), var(--bg-2));
  box-shadow: 0 0 40px rgba(255,107,0,.12), inset 0 0 30px rgba(255,107,0,.04);
}
.tarifa-card--featured::before { opacity: 1; background: linear-gradient(90deg, transparent, var(--neon), transparent); }

.tarifa-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--red);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.tarifa-card__header { display: flex; flex-direction: column; gap: 6px; }

.tarifa-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}
.tarifa-card__duration::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--orange);
  opacity: .6;
}

.tarifa-card__name { font-size: 1.25rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.tarifa-card__sub { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

.tarifa-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tarifa-card__amount {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255,107,0,.2);
}
.tarifa-card--featured .tarifa-card__amount {
  background: linear-gradient(135deg, var(--orange), var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255,107,0,.5));
}
.tarifa-card__per { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.tarifa-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.tarifa-card > .btn { margin-top: auto; }
.tarifa-card__includes li {
  font-size: .82rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.tarifa-card__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: .8rem;
}

.tarifas__note {
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.tarifas__note strong { color: var(--orange); }

.cumple-box {
  max-width: 640px;
  margin: 40px auto 0;
  background: rgba(214,40,40,.10);
  border: 1px solid rgba(214,40,40,.40);
  border-radius: 14px;
  padding: 28px 32px;
  text-align: center;
}
.cumple-box__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.5;
}
.cumple-box__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cumple-box__list li {
  font-size: .88rem;
  color: var(--text-muted);
}
.cumple-box__list li::before {
  content: "—";
  color: var(--red-light);
  margin-right: 8px;
}
.cumple-box__cierre {
  font-size: .88rem;
  color: var(--orange);
  font-weight: 500;
  margin: 0;
}

.tarifa-comida-base {
  background: rgba(247,127,0,.07);
  border: 1px solid rgba(247,127,0,.2);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 24px;
}
.tarifa-comida-base__title { font-size: .85rem; font-weight: 600; color: var(--orange); margin-bottom: 10px; }
.tarifa-comida-base__list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; }
.tarifa-comida-base__list li { font-size: .83rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.tarifa-comida-base__list li::before { content: '·'; position: absolute; left: 0; color: var(--orange); }

.tarifas-cumple {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(214,40,40,.12);
  border: 1px solid rgba(214,40,40,.45);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 32px auto 0;
  max-width: 640px;
}
.tarifas-cumple svg { color: var(--red-light); flex-shrink: 0; margin-top: 2px; }
.tarifas-cumple div { display: flex; flex-direction: column; gap: 4px; }
.tarifas-cumple strong { font-size: .9rem; color: var(--white); }
.tarifas-cumple span { font-size: .83rem; color: var(--text-muted); }

@media (max-width: 600px) {
  .tarifas-grid { grid-template-columns: 1fr; }
  .tarifas-grid--2 { grid-template-columns: 1fr; }
}

/* ===========================
   CÓMO FUNCIONA
   =========================== */
.como-funciona { padding: 120px 0; background: var(--bg-2); }

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 840px;
  margin: 0 auto 56px;
  position: relative;
}

.pasos-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
  opacity: .35;
}

.paso { text-align: center; padding: 0 20px; position: relative; }

.paso__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 32px var(--red-glow);
  position: relative;
  z-index: 1;
}

.paso__title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.paso__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }
.como-funciona__cta { text-align: center; }

/* ===========================
   SEDES
   =========================== */
.sedes { padding: 120px 0; background: var(--bg); position: relative; overflow: hidden; }

.sedes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }

.sede-card { background: linear-gradient(145deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.sede-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(214,40,40,.18); border-color: rgba(214,40,40,.45); }

.sede-card__img-wrap { height: 220px; background: linear-gradient(135deg, #2a1515, #242424); overflow: hidden; }
.sede-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.sede-card:hover .sede-card__img-wrap img { transform: scale(1.05); }

.sede-card__placeholder { width: 100%; height: 100%; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); font-size: .8rem; text-align: center; padding: 16px; }
.sede-card__placeholder svg { opacity: .25; }

.sede-card--construccion { opacity: .85; }
.sede-card--construccion:hover { transform: none; box-shadow: none; border-color: rgba(247,127,0,.3); }

.sede-card__img-wrap { position: relative; }

.sede-card__construccion-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.sede-card__construccion-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(247, 127, 0, 0.12);
  border: 1.5px solid rgba(247, 127, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F77F00;
  margin-bottom: 4px;
}

.sede-card__construccion-label {
  font-size: 1rem;
  font-weight: 800;
  color: #F77F00;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sede-card__construccion-sub {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.btn--wompi {
  background: linear-gradient(135deg, #00B246 0%, #00873A 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 178, 70, 0.35);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  transition: transform .2s, box-shadow .2s, filter .2s;
  cursor: pointer;
}
.btn--wompi:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 178, 70, 0.5);
  filter: brightness(1.08);
}

.btn--disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1.5px dashed rgba(255,255,255,.15);
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 600;
  cursor: not-allowed;
  letter-spacing: .03em;
}

.sede-card__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.sede-card__city { font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--orange); }
.sede-card__name { font-size: 1.3rem; font-weight: 700; color: var(--white); letter-spacing: -.01em; }

.sede-card__info { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--text-muted); }
.sede-card__info svg { color: var(--red-light); flex-shrink: 0; }
.sede-card__info--link { text-decoration: none; transition: color .2s; }
.sede-card__info--link:hover { color: var(--orange); }
.sede-card__info--link:hover svg { color: var(--orange); }

/* ===========================
   CTA FINAL / RESERVAR
   =========================== */
.reservar { padding: 120px 0; background: var(--bg-2); }

.reservar__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(214,40,40,.05), rgba(247,127,0,.02));
  border: 1px solid rgba(214,40,40,.28);
  border-radius: 24px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.reservar__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
}

.reservar__title { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 900; color: var(--white); margin: 16px 0 20px; line-height: 1.1; letter-spacing: -.03em; text-transform: uppercase; }
.reservar__title span { background: linear-gradient(135deg, var(--red-light), var(--orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.reservar__sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }

.reservar__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }

.reservar__socials { display: flex; justify-content: center; gap: 20px; }
.social-link { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--text-muted); transition: color .2s; font-weight: 500; }
.social-link:hover { color: var(--orange); }

/* ===========================
   FOOTER
   =========================== */
.footer { padding: 60px 0 40px; background: var(--bg); border-top: 1px solid var(--border); }

.footer__inner { display: grid; grid-template-columns: 1fr auto auto; gap: 48px; align-items: start; }

.footer__logo { font-size: 1.3rem; font-weight: 900; letter-spacing: .15em; color: var(--white); display: block; margin-bottom: 8px; }
.footer__tagline { font-size: .875rem; color: var(--orange); margin-bottom: 16px; letter-spacing: .05em; }
.footer__copy { font-size: .8rem; color: var(--text-muted); }

.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__contact a { font-size: .875rem; color: var(--text-muted); transition: color .2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--white); }

/* ===========================
   WHATSAPP FLOTANTE
   =========================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s, opacity .3s;
  opacity: 0;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 30px rgba(37,211,102,.65); }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal, .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity .7s ease, transform .7s cubic-bezier(.25,.46,.45,.94);
  transition-delay: var(--delay, 0s);
}
.reveal { transform: translateY(24px); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(.95); }

.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(28,28,30,.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 12px 16px; border-radius: 8px; }
  .nav__links a:hover { background: rgba(214,40,40,.08); }
  .nav__cta { width: 100%; text-align: center; }
  .nav__burger { display: flex; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .modos-grid { grid-template-columns: 1fr; }
  .pasos-grid { grid-template-columns: 1fr; gap: 32px; }
  .pasos-grid::before { display: none; }
  .sedes-grid { grid-template-columns: 1fr; max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .reservar__inner { padding: 48px 24px; }
  .reservar__btns { flex-direction: column; align-items: stretch; }
  .hero__btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .reservar__inner { padding: 40px 20px; }
}

/* ===========================
   HERO PRICE BADGE
   =========================== */
.hero__price-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 22px;
  background: rgba(247, 127, 0, 0.08);
  border: 1px solid rgba(247, 127, 0, 0.35);
  border-radius: 50px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(247, 127, 0, 0.12);
  animation: pricePulse 3s ease-in-out infinite;
}

@keyframes pricePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(247, 127, 0, 0.12); }
  50% { box-shadow: 0 0 40px rgba(247, 127, 0, 0.28); }
}

.hero__price-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F77F00;
  box-shadow: 0 0 8px #F77F00;
  animation: dotBlink 1.4s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero__price-badge__text {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: .04em;
}

.hero__price-badge__val {
  font-size: 1.05rem;
  font-weight: 800;
  color: #F77F00;
  letter-spacing: .02em;
}

.hero__price-badge__per {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ===========================
   DESDE BANNER
   =========================== */
.desde-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, rgba(214, 40, 40, 0.08) 0%, rgba(247, 127, 0, 0.06) 100%);
  border: 1px solid rgba(214, 40, 40, 0.25);
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 40px;
  overflow: hidden;
}

.desde-banner__glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.desde-banner__left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.desde-banner__eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.desde-banner__price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  line-height: 1;
}

.desde-banner__currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-light);
  align-self: flex-start;
  padding-top: 8px;
}

.desde-banner__amount {
  font-size: 4.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF3B3B 0%, #F77F00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.03em;
  line-height: 1;
}

.desde-banner__price-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 6px;
}

.desde-banner__cop {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .1em;
}

.desde-banner__per {
  font-size: .82rem;
  color: var(--text-muted);
}

.desde-banner__divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(214, 40, 40, 0.3), transparent);
  flex-shrink: 0;
}

.desde-banner__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.desde-banner__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--text);
}

.desde-banner__item svg {
  color: #F77F00;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .desde-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 32px 24px;
  }
  .desde-banner__divider { width: 60px; height: 1px; }
  .desde-banner__amount { font-size: 3.2rem; }
  .hero__price-badge { flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   SISTEMA DE RESERVAS
   ============================================ */

.booking { padding: 120px 0; position: relative; }

.booking-card {
  background: linear-gradient(145deg, var(--bg-2), var(--bg-3));
  border: 1px solid rgba(214,40,40,.15);
  border-radius: 24px;
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  border-radius: 2px;
}

.bk-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bk-group__label {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bk-step-num {
  background: rgba(214,40,40,.15);
  color: var(--red);
  font-size: .7rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: .05em;
}

.campo-selector { display: flex; gap: 12px; }

.campo-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.2);
  border: 1.5px solid rgba(255,255,255,.08);
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.campo-btn svg { opacity: .5; transition: opacity .2s; }
.campo-btn span { font-size: .72rem; font-weight: 400; opacity: .6; }
.campo-btn:hover { border-color: rgba(214,40,40,.4); color: var(--white); }
.campo-btn--active { background: rgba(214,40,40,.1); border-color: var(--red); color: var(--white); }
.campo-btn--active svg { opacity: 1; color: var(--red); }
.campo-btn--active span { opacity: .8; }

.bk-date-input {
  background: rgba(0,0,0,.25);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  width: 100%;
  cursor: pointer;
  transition: border-color .2s;
  color-scheme: dark;
}
.bk-date-input:focus { outline: none; border-color: var(--red); }

.bk-hint { font-size: .8rem; color: var(--text-muted); }

.bk-slots-wrap { display: flex; flex-direction: column; gap: 10px; }

.bk-loader {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: .85rem;
}
.bk-loader__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: dotPulse 1s infinite;
}
.bk-loader__dot:nth-child(2) { animation-delay: .2s; }
.bk-loader__dot:nth-child(3) { animation-delay: .4s; }
@keyframes dotPulse {
  0%, 80%, 100% { opacity: .2; transform: scale(.8); }
  40% { opacity: 1; transform: scale(1); }
}

.bk-slots { display: flex; flex-wrap: wrap; gap: 8px; }

.bk-slot {
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(0,0,0,.2);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.bk-slot:hover:not(:disabled) { border-color: var(--orange); color: var(--orange); }
.bk-slot--selected { background: rgba(247,127,0,.15); border-color: var(--orange); color: var(--orange); }
.bk-slot--taken { background: rgba(214,40,40,.06); border-color: rgba(214,40,40,.2); color: rgba(214,40,40,.35); cursor: not-allowed; text-decoration: line-through; }

.bk-duracion { display: flex; flex-wrap: wrap; gap: 8px; }

.bk-dur-btn {
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(0,0,0,.2);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.bk-dur-btn:hover { border-color: var(--orange); color: var(--orange); }
.bk-dur-btn--active { background: rgba(247,127,0,.15); border-color: var(--orange); color: var(--orange); }

.bk-horario-resumen { color: var(--orange) !important; font-weight: 600 !important; font-size: .9rem; }

.bk-counter { display: flex; align-items: center; gap: 0; width: fit-content; }

.bk-counter__btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(0,0,0,.2);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  line-height: 1;
  font-family: var(--font);
}
.bk-counter__btn:hover { background: rgba(214,40,40,.15); border-color: var(--red); }
.bk-counter__val { min-width: 56px; text-align: center; font-size: 1.5rem; font-weight: 900; color: var(--white); }

.bk-fields { display: flex; gap: 12px; }

.bk-input {
  flex: 1;
  background: rgba(0,0,0,.25);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color .2s;
}
.bk-input::placeholder { color: var(--text-muted); }
.bk-input:focus { outline: none; border-color: var(--red); }

.bk-summary {
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-summary__row { display: flex; justify-content: space-between; font-size: .88rem; }
.bk-summary__row span { color: var(--text-muted); }
.bk-summary__row strong { color: var(--white); }

.bk-error {
  background: rgba(214,40,40,.08);
  border: 1px solid rgba(214,40,40,.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: #FF6B6B;
  font-size: .85rem;
}

.bk-submit { margin-top: 4px; }

.bk-submit:disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }

.bk-disclaimer { font-size: .78rem; color: var(--text-muted); text-align: center; line-height: 1.5; }

/* Stepper */
.bk-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.bk-stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.bk-stepper__circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  color: var(--text-muted);
  transition: all .3s;
  position: relative;
}
.bk-stepper__check { display: none; }
.bk-stepper__label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  transition: color .3s;
  white-space: nowrap;
}
.bk-stepper__line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.08);
  margin-bottom: 22px;
  transition: background .3s;
}
.bk-stepper__line--done { background: var(--red); }

.bk-stepper__item--active .bk-stepper__circle {
  background: rgba(214,40,40,.15);
  border-color: var(--red);
  color: var(--white);
}
.bk-stepper__item--active .bk-stepper__label { color: var(--white); }

.bk-stepper__item--done .bk-stepper__circle {
  background: var(--red);
  border-color: var(--red);
}
.bk-stepper__item--done .bk-stepper__circle span { display: none; }
.bk-stepper__item--done .bk-stepper__check { display: block; color: #fff; }
.bk-stepper__item--done .bk-stepper__label { color: var(--text-muted); }

/* Panels */
.bk-panel { display: flex; flex-direction: column; gap: 28px; }

/* Next button */
.btn--primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* Back button */
.bk-back-btn {
  display: flex; align-items: center; gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: .85rem;
  font-family: var(--font);
  cursor: pointer;
  padding: 0;
  transition: color .2s;
  width: fit-content;
}
.bk-back-btn:hover { color: var(--white); }

/* Plan categories */
.bk-plan-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bk-plan-cat {
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(0,0,0,.2);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--text-muted);
  font-size: .83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.bk-plan-cat:hover { border-color: rgba(214,40,40,.4); color: var(--white); }
.bk-plan-cat--active { background: rgba(214,40,40,.1); border-color: var(--red); color: var(--white); }

/* Plan cards grid */
.bk-plan-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}
.bk-plan-grid::-webkit-scrollbar { width: 4px; }
.bk-plan-grid::-webkit-scrollbar-track { background: transparent; }
.bk-plan-grid::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

.bk-plan-card {
  background: rgba(0,0,0,.2);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
}
.bk-plan-card:hover { border-color: rgba(247,127,0,.4); background: rgba(247,127,0,.04); }
.bk-plan-card--popular { border-color: rgba(214,40,40,.3); }
.bk-plan-card--selected { background: rgba(247,127,0,.08); border-color: var(--orange); }

.bk-plan-card__badge {
  position: absolute;
  top: -1px; right: 12px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.bk-plan-card__info { flex: 1; min-width: 0; }
.bk-plan-card__dur { font-size: .72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.bk-plan-card__name { font-size: .95rem; font-weight: 700; color: var(--white); margin: 2px 0; }
.bk-plan-card__sub { font-size: .78rem; color: var(--text-muted); }

.bk-plan-card__right { text-align: right; flex-shrink: 0; }
.bk-plan-card__price { font-size: 1rem; font-weight: 900; color: var(--white); }
.bk-plan-card__per { font-size: .72rem; color: var(--text-muted); }
.bk-plan-card__anticipo { font-size: .75rem; color: var(--orange); font-weight: 600; margin-top: 2px; }

.bk-plan-card__sel {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  color: transparent;
}
.bk-plan-card--selected .bk-plan-card__sel {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Resumen box (step 3) */
.bk-resumen-box {
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-resumen-row { display: flex; justify-content: space-between; font-size: .88rem; }
.bk-resumen-row span { color: var(--text-muted); }
.bk-resumen-row strong { color: var(--white); }
.bk-resumen-divider { height: 1px; background: rgba(255,255,255,.07); margin: 4px 0; }
.bk-resumen-row--highlight strong { color: var(--orange); font-size: 1rem; }

@media (max-width: 640px) {
  .booking-card { padding: 32px 20px; gap: 24px; }
  .campo-selector { flex-direction: column; }
  .bk-fields { flex-direction: column; }
  .bk-counter__val { min-width: 44px; font-size: 1.3rem; }
  .bk-stepper__label { font-size: .65rem; }
  .bk-plan-card { flex-wrap: wrap; gap: 10px; }
}

/* ============================================
   MOBILE — mejoras generales
   ============================================ */
@media (max-width: 480px) {
  /* Secciones: reducir padding vertical */
  .tarifas, .stats, .experiencias, .equipamiento,
  .modos, .como-funciona, .booking, .reservar { padding: 64px 0; }
  .sedes { padding: 64px 0; }
  .hero { min-height: 100svh; }

  /* Hero */
  .hero__video { display: none; }
  .hero__img { display: none; }
  .hero__bg {
    background-image: url('assets/hero-bg.jpg?v=2');
    background-size: cover;
    background-position: center;
  }
  .hero__title { font-size: 2.2rem; }
  .hero__sub { font-size: .95rem; margin-bottom: 28px; }
  .hero__content { padding: 0 20px; }
  .btn--lg { padding: 14px 22px; font-size: .95rem; }

  /* Títulos de sección */
  .section-title { font-size: 1.7rem; }
  .section-sub { font-size: .9rem; }

  /* Tarifas tabs: letras más pequeñas, flex-wrap */
  .tarifas-tabs { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .tarifa-tab { font-size: .78rem; padding: 8px 14px; }
  .tarifa-card__amount { font-size: 1.8rem; }
  .tarifa-comida-base__list { flex-direction: column; gap: 6px; }
  .tarifas-cumple { flex-direction: column; gap: 10px; }

  /* Stats */
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat__number { font-size: 2.2rem; }

  /* Booking */
  .booking-card { padding: 24px 16px; border-radius: 16px; }
  .bk-stepper { gap: 4px; }
  .bk-stepper__circle { width: 32px; height: 32px; font-size: .8rem; }
  .bk-slots { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .bk-slot { padding: 8px 4px; font-size: .78rem; }
  .bk-duracion { flex-wrap: wrap; gap: 8px; }
  .bk-dur-btn { padding: 8px 12px; font-size: .8rem; }
  .bk-resumen-box { padding: 16px; }
  .bk-plan-card { padding: 14px; }
  .bk-plan-card__price { font-size: 1.1rem; }
  .bk-plan-cats { flex-wrap: wrap; gap: 6px; }
  .bk-plan-cat { font-size: .78rem; padding: 7px 12px; }

  /* Sedes */
  .sede-card__name { font-size: 1.1rem; }

  /* Footer */
  .footer__inner { padding: 0 20px; gap: 24px; }

  /* Desde banner */
  .desde-banner { padding: 24px 20px; }
  .desde-banner__amount { font-size: 2.6rem; }
}
