/* ── Agenda · BM Calistenia · misma identidad que games.bmcalistenia.com ── */
:root {
  --bg: #09090B;
  --bg-soft: #0C0C10;
  --panel: #121217;
  --panel-2: #17171E;
  --border: #24242B;
  --border-2: #33333C;
  --red: #E5322D;
  --red-hi: #FF4B45;
  --red-soft: rgba(229, 50, 45, .12);
  --red-line: rgba(229, 50, 45, .42);
  --text: #F5F5F7;
  --muted: #9AA0AA;
  --dim: #6A6E78;
  --gold: #FFD166;
  --shadow: 0 18px 50px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; margin: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  background: transparent;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-feature-settings: "cv11", "ss01";
  overflow-x: hidden;
}
#fx { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
a { color: inherit; text-decoration: none; }
a, button, summary, label { touch-action: manipulation; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--red); color: #fff; }

/* Grano de película sobre todo el sitio */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 90;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Tipografía ─────────────────────────────────────────────────── */
.display {
  font-family: Anton, "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1;
}
.chrome {
  background-image: linear-gradient(177deg, #FFFFFF 2%, #DCDFE6 26%, #7D818A 47%, #B3B7BE 54%, #F4F6FA 68%, #969BA4 88%, #D2D6DD 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.red { color: var(--red); }
.red-fill { -webkit-text-fill-color: var(--red); color: var(--red); }
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--red);
}

/* ── Estructura ─────────────────────────────────────────────────── */
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 18px; }
section { position: relative; }
.sec { padding: 58px 0 10px; scroll-margin-top: 70px; }
.sec-title { margin-top: 8px; font-size: clamp(29px, 6.4vw, 42px); }
.lede { margin-top: 12px; max-width: 60ch; font-size: 13.5px; line-height: 1.65; color: var(--muted); }
.rule { height: 1px; border: 0; background: linear-gradient(90deg, var(--red-line), var(--border) 30%, transparent); margin-top: 14px; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

.panel {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: 18px;
}
.panel-flat { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 14px; }

/* ── Header ─────────────────────────────────────────────────────── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, .82);
  backdrop-filter: blur(14px) saturate(140%);
}
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 18px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { width: 32px; height: 32px; flex: none; }
.brand-txt { font-size: 14.5px; white-space: nowrap; }
.hdr-nav { display: flex; align-items: center; gap: 6px; flex: none; }
.nav-link { padding: 8px 11px; border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--muted); transition: color .15s, background .15s; }
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.hide-sm { display: none; }

/* ── Botones ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  cursor: pointer;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn:hover { background: rgba(255, 255, 255, .07); border-color: #4A4A54; }
.btn:active { transform: scale(.97); }
.btn-red {
  background: linear-gradient(180deg, var(--red-hi), var(--red));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 34px rgba(229, 50, 45, .34);
}
.btn-red:hover { background: linear-gradient(180deg, #FF5B55, #E83833); border-color: transparent; box-shadow: 0 14px 40px rgba(229, 50, 45, .45); }
.btn-sm { padding: 10px 18px; font-size: 11px; letter-spacing: .1em; }
.btn-block { width: 100%; }
.cta-row { margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cta-note { margin-top: 13px; font-size: 11.5px; color: var(--dim); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero { overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(74% 52% at 50% -4%, rgba(229, 50, 45, .26), rgba(9, 9, 11, 0) 72%),
    radial-gradient(46% 40% at 50% 108%, rgba(229, 50, 45, .10), rgba(9, 9, 11, 0) 70%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .016) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .016) 0 1px, transparent 1px 58px);
}
.hero-watermark {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(760px, 150%);
  transform: translate(-50%, -50%);
  opacity: .028;
  pointer-events: none;
  filter: grayscale(1);
}
.hero-top-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.hero-in { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 18px 46px; }
.hero-logo { width: 84px; height: 84px; filter: drop-shadow(0 0 34px rgba(229, 50, 45, .5)); animation: floaty 6s ease-in-out infinite; }
.hero-title { margin-top: 18px; font-size: clamp(42px, 11.4vw, 82px); line-height: .93; }
.hero-title > span { display: block; }
.hero-sub { margin-top: 16px; max-width: 46ch; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.pills { margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, .022);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  white-space: nowrap;
}
.pill svg { width: 13px; height: 13px; opacity: .75; flex: none; }
.pill-red { border-color: var(--red-line); background: var(--red-soft); color: var(--red); }

/* ── Video del hero ─────────────────────────────────────────────── */
.vid-shell {
  position: relative;
  margin: 30px auto 0;
  width: 100%;
  max-width: 640px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: #000;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .75), 0 0 0 1px rgba(229, 50, 45, .10);
}
.vid-shell video { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: contain; background: #000; }
.vid-ph { aspect-ratio: 16 / 9; display: grid; place-content: center; gap: 8px; text-align: center; padding: 26px; background: radial-gradient(60% 60% at 50% 40%, rgba(229, 50, 45, .10), transparent 70%), var(--bg-soft); }
.vid-ph b { font-size: 14px; }
.vid-ph span { font-size: 11.5px; color: var(--dim); }
.play-ov {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 14px;
  justify-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .55));
  border: 0;
  cursor: pointer;
  color: #fff;
  transition: background .2s;
}
.play-ov:hover { background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .42)); }
.play-c {
  width: 68px; height: 68px; border-radius: 999px;
  background: linear-gradient(180deg, var(--red-hi), var(--red));
  display: grid; place-items: center;
  box-shadow: 0 14px 44px rgba(229, 50, 45, .55);
  animation: ping 2.6s ease-out infinite;
}
.play-c svg { width: 24px; height: 24px; }
@keyframes ping {
  0% { box-shadow: 0 14px 44px rgba(229, 50, 45, .55), 0 0 0 0 rgba(229, 50, 45, .45); }
  70% { box-shadow: 0 14px 44px rgba(229, 50, 45, .55), 0 0 0 22px rgba(229, 50, 45, 0); }
  100% { box-shadow: 0 14px 44px rgba(229, 50, 45, .55), 0 0 0 0 rgba(229, 50, 45, 0); }
}
.play-l { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; background: rgba(0, 0, 0, .5); border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; padding: 7px 14px; backdrop-filter: blur(4px); }

/* ── Cifras ─────────────────────────────────────────────────────── */
.stats { margin: 30px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; width: 100%; max-width: 520px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.stat { background: var(--bg); padding: 15px 8px; text-align: center; }
.stat-n { font-size: 26px; }
.stat-l { margin-top: 4px; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); }

/* ── Tarjetas de valor ──────────────────────────────────────────── */
.cards { margin-top: 22px; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.card { padding: 20px; }
.card-ico { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--red-soft); border: 1px solid var(--red-line); color: var(--red); }
.card-ico svg { width: 18px; height: 18px; }
.card h3 { margin-top: 14px; font-size: 15px; font-weight: 800; }
.card p { margin-top: 7px; font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ── Testimonios en video ───────────────────────────────────────── */
.tsts { margin-top: 22px; display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.tst { overflow: hidden; display: flex; flex-direction: column; }
/* En móvil se convierte en un carrusel: tres videos verticales apilados
   ocuparían tres pantallas enteras. */
@media (max-width: 720px) {
  .tsts {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 6px;
  }
  .tsts::-webkit-scrollbar { display: none; }
  .tst { flex: 0 0 78%; scroll-snap-align: center; }
}
.swipe-hint { margin-top: 10px; font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); display: flex; align-items: center; gap: 7px; }
.swipe-hint svg { width: 13px; height: 13px; }
@media (min-width: 721px) { .swipe-hint { display: none; } }
.tst-media { position: relative; background: #000; aspect-ratio: 9 / 16; overflow: hidden; }
.tst-media video, .tst-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tst-media .play-ov { background: linear-gradient(180deg, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .7)); }
.tst-media .play-c { width: 54px; height: 54px; animation: none; }
.tst-media .play-c svg { width: 19px; height: 19px; }
.tst-body { padding: 16px 17px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tst-q { font-size: 13.5px; line-height: 1.6; }
.tst-who { display: flex; align-items: center; gap: 9px; margin-top: auto; }
.tst-av { width: 30px; height: 30px; border-radius: 999px; flex: none; display: grid; place-items: center; background: var(--red-soft); border: 1px solid var(--red-line); color: var(--red); font-size: 11px; font-weight: 800; }
.tst-n { font-size: 13px; font-weight: 800; }
.tst-m { font-size: 11px; color: var(--dim); }

/* ── Horarios ───────────────────────────────────────────────────── */
.sched { margin-top: 22px; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.sched-card { padding: 20px; }
.sched-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.sched-t { font-size: 17px; }
.chip { border-radius: 999px; padding: 5px 12px; font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; background: rgba(255, 255, 255, .05); border: 1px solid var(--border-2); color: var(--muted); flex: none; }
.chip-red { background: var(--red-soft); border-color: var(--red-line); color: var(--red); }
.days { margin-top: 16px; list-style: none; padding: 0; display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.days li { background: var(--bg); padding: 11px 14px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13px; }
.days b { font-size: 9.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); white-space: nowrap; }
.hours { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 7px; }
.hour { font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums; padding: 9px 13px; border-radius: 10px; background: var(--bg); border: 1px solid var(--border-2); }
.hint { margin-top: 14px; font-size: 11.5px; line-height: 1.6; color: var(--dim); }

/* ── Pasos ──────────────────────────────────────────────────────── */
.steps { margin-top: 22px; list-style: none; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.step { padding: 20px; position: relative; overflow: hidden; }
.step::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: linear-gradient(180deg, var(--red), transparent); }
.step-n { font-size: 11px; font-weight: 800; letter-spacing: .18em; color: var(--red); }
.step h3 { margin-top: 10px; font-size: 15px; font-weight: 800; }
.step p { margin-top: 7px; font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ── Plegables (planes + FAQ) ───────────────────────────────────── */
.fold { margin-top: 12px; overflow: hidden; transition: border-color .15s ease; }
.fold + .fold { margin-top: 10px; }
.fold[open] { border-color: var(--border-2); }
.fold > summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
}
.fold > summary::-webkit-details-marker { display: none; }
.fold > summary:hover { background: rgba(255, 255, 255, .02); }
.fold-ico { flex: none; width: 26px; height: 26px; border-radius: 999px; display: grid; place-items: center; border: 1px solid var(--border-2); color: var(--red); transition: transform .25s ease, background .2s; }
.fold-ico svg { width: 12px; height: 12px; }
.fold[open] .fold-ico { transform: rotate(45deg); background: var(--red-soft); border-color: var(--red-line); }
.fold-body { padding: 0 19px 19px; font-size: 13px; line-height: 1.65; color: var(--muted); animation: unfold .25s cubic-bezier(.22, 1, .36, 1); }
.fold-body p + p { margin-top: 10px; }
.fold-body a { color: var(--red); font-weight: 700; }
.fold-body a:hover { text-decoration: underline; }
@keyframes unfold { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ── Planes ─────────────────────────────────────────────────────── */
.tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.tab {
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, .022);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .15s ease;
}
.tab:hover { color: var(--text); border-color: #4A4A54; }
.tab.active { border-color: transparent; background: linear-gradient(180deg, var(--red-hi), var(--red)); color: #fff; box-shadow: 0 6px 22px rgba(229, 50, 45, .32); }
.prices { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
/* Sin esto el display:grid de arriba le gana al [hidden] del navegador
   y los dos paneles (adultos y niños) se muestran a la vez. */
.prices[hidden] { display: none; }
.price-row { background: var(--bg); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.price-row.hi { background: linear-gradient(90deg, rgba(229, 50, 45, .10), transparent 70%); box-shadow: inset 2px 0 0 var(--red); }
.price-l { min-width: 0; }
.price-n { font-size: 13.5px; font-weight: 800; }
.price-d { margin-top: 3px; font-size: 11.5px; color: var(--dim); line-height: 1.5; }
.price-v { font-size: 19px; font-weight: 800; white-space: nowrap; flex: none; }
.price-v small { font-size: 10.5px; font-weight: 700; color: var(--dim); letter-spacing: .02em; }
.price-foot { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 11.5px; color: var(--dim); }
.price-foot span { display: inline-flex; align-items: center; gap: 6px; }
.price-foot svg { width: 12px; height: 12px; color: var(--red); flex: none; }

/* ── Agenda ─────────────────────────────────────────────────────── */
.cal-wrap { margin-top: 20px; padding: 6px; overflow: hidden; position: relative; }
/* form_embed.js de GHL pone el iframe en position:absolute y lo saca del flujo:
   el contenedor colapsa a 14px. Lo devolvemos al flujo. */
.cal-wrap iframe {
  width: 100%; min-height: 780px; border: 0; display: block;
  border-radius: 14px; background: var(--bg);
  position: relative !important; visibility: visible !important;
}
.cal-side { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; text-align: center; }

/* ── Cierre ─────────────────────────────────────────────────────── */
.final { position: relative; margin-top: 56px; padding: 56px 0; text-align: center; border-top: 1px solid var(--border); overflow: hidden; }
.final-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(58% 70% at 50% 108%, rgba(229, 50, 45, .22), transparent 70%); }
.final .wrap { position: relative; }

/* ── Footer ─────────────────────────────────────────────────────── */
.ftr { position: relative; border-top: 1px solid var(--border); padding: 30px 0 calc(96px + env(safe-area-inset-bottom)); text-align: center; }
.ftr img { width: 38px; height: 38px; margin: 0 auto; opacity: .9; }
.ftr-t { margin-top: 12px; font-size: 13px; font-weight: 700; }
.ftr-s { margin-top: 5px; font-size: 11.5px; color: var(--dim); }
.ftr-nav { margin-top: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.ftr-nav a { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); }
.ftr-nav a:hover { color: var(--muted); }

/* ── Flotantes ──────────────────────────────────────────────────── */
.wa {
  position: fixed;
  right: 15px;
  bottom: calc(84px + env(safe-area-inset-bottom));
  z-index: 80;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .42);
  transition: transform .16s ease;
}
.wa svg { width: 25px; height: 25px; }
.wa:hover { transform: scale(1.07); }
.wa::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, .55);
  animation: waping 2.8s ease-out infinite;
}
@keyframes waping { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.65); opacity: 0; } }

.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 75;
  padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(9, 9, 11, .55), rgba(9, 9, 11, .95) 45%);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  transform: translateY(120%);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.dock.up { transform: none; }
.dock .btn { width: 100%; }

/* ── Utilidades ─────────────────────────────────────────────────── */
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--red); box-shadow: 0 0 10px rgba(229, 50, 45, .85); animation: pulse 1.5s ease-in-out infinite; flex: none; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Breakpoints ────────────────────────────────────────────────── */
@media (min-width: 480px) { .hide-sm { display: inline-flex; } }
@media (min-width: 640px) {
  .sec { padding-top: 70px; }
  .stat-n { font-size: 30px; }
  .hero-in { padding: 52px 18px 58px; }
  .hero-logo { width: 100px; height: 100px; }
}
@media (max-width: 379px) {
  .hero-in { padding: 34px 14px 40px; }
  .hero-logo { width: 74px; height: 74px; }
  .pill { padding: 7px 12px; font-size: 10px; }
  .btn { padding: 13px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dot, .play-c, .wa::before, .hero-logo { animation: none; }
  .fold-body { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Chips de horario interactivos ── */
.hour { cursor: pointer; transition: border-color .18s, transform .18s, background .18s; position: relative; }
.hour:hover, .hour:active { border-color: var(--red-line); background: var(--red-soft); transform: translateY(-1px); }
.hour-new { border-color: var(--red-line); }
.hour-new em { font-style: normal; font-size: 8.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--red); border-radius: 5px; padding: 2px 5px; margin-left: 7px; vertical-align: 1px; }

/* ── Franja de Instagram ── */
.ig-strip { margin-top: 26px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ig-head { display: flex; align-items: center; gap: 14px; min-width: 0; }
.ig-badge { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(140deg, #7B2CBF 0%, var(--red) 55%, #FFB03A 115%); box-shadow: 0 8px 24px rgba(229, 50, 45, .35); }
.ig-badge svg { width: 24px; height: 24px; }
.ig-user { font-size: 19px; letter-spacing: .02em; }
.ig-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
@media (max-width: 560px) {
  .ig-strip { flex-direction: column; align-items: flex-start; }
  .ig-strip .btn { width: 100%; }
}
.tst-n { display: block; }
.tst-m { display: block; margin-top: 1px; }

/* ── Nota bajo el botón de pago de planes ── */
.pay-note { margin-top: 9px; font-size: 11.5px; color: var(--dim); text-align: center; }

/* Botones con texto largo: que envuelva dentro del botón en vez de desbordar */
.btn { max-width: 100%; text-align: center; line-height: 1.3; flex-wrap: wrap; }
