/* ============================================================
   POWER FITNESS — Rediseño "póster deportivo"
   Negro / blanco / rojo · Anton + Barlow Condensed + Inter
   ============================================================ */

:root {
  --ink: #0c0c0d;
  --ink-2: #151517;
  --paper: #f4f1ea;
  --white: #ffffff;
  --red: #e8262d;
  --red-dark: #b3151b;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(12, 12, 13, 0.16);

  --display: "Anton", "Arial Black", sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, sans-serif;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --shadow-pop: 10px 10px 0 var(--red);
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }

::selection { background: var(--red); color: #fff; }

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  font-family: var(--cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}

.btn--solid {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn--solid:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--white);
}

.btn--line {
  background: transparent;
  color: var(--white);
}

.btn--line:hover {
  background: var(--white);
  color: var(--ink);
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--red);
}

.btn--invert {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.btn--invert:hover {
  transform: translate(-4px, -4px);
  box-shadow: 6px 6px 0 var(--red);
}

.btn--small { padding: 0.6rem 1.2rem; font-size: 0.95rem; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t);
}

/* Sin backdrop-filter: rompería el menú móvil position:fixed */
.header.scrolled {
  background: rgba(12, 12, 13, 0.97);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem var(--pad);
}

.nav__logo {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.nav__logo span { color: var(--red); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}

.nav__link {
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--t);
}

.nav__num {
  display: none;
  font-family: var(--body);
  font-size: 0.7rem;
  color: var(--red);
  margin-right: 0.6rem;
}

.nav__link:hover,
.nav__link.active { color: var(--red); }

.nav__cta {
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--white);
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  z-index: 110;
}

.nav__toggle span {
  width: 30px;
  height: 3px;
  background: var(--white);
  transition: transform 0.3s ease;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); background: var(--red); }
.nav__toggle.open span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); background: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(2rem, 6vh, 4rem);
}

/* Foto en duotono rojo/negro */
.hero__media {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1920&auto=format&fit=crop")
              center 35% / cover no-repeat;
  filter: grayscale(1) contrast(1.15) brightness(0.55);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(232, 38, 45, 0.32), transparent 55%),
              linear-gradient(to top, var(--ink) 4%, rgba(12, 12, 13, 0.35) 45%, rgba(12, 12, 13, 0.65) 100%);
}

.hero__stage {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--pad);
}

.hero__kicker {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.4rem, 13.5vw, 11.5rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.hero__word { display: block; }

.hero__word--solid { color: var(--white); }

.hero__word--outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--white);
  margin-left: clamp(1.5rem, 8vw, 9rem);
}

.hero__word--red {
  color: var(--red);
  margin-left: clamp(0.5rem, 3vw, 3rem);
}

.hero__word--red em {
  font-style: normal;
  color: var(--white);
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 4vh, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero__lead {
  max-width: 420px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Badge circular giratorio */
.hero__badge {
  position: absolute;
  top: clamp(84px, 14vh, 130px);
  right: var(--pad);
  z-index: 3;
  width: clamp(96px, 12vw, 150px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero__badge svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 14s linear infinite;
}

.hero__badge text {
  font-family: var(--cond);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: var(--white);
}

.hero__badge-arrow {
  font-size: 1.6rem;
  color: var(--red);
  background: var(--white);
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform var(--t);
}

.hero__badge:hover .hero__badge-arrow { transform: scale(1.12); }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   MARQUEES
   ============================================================ */
.marquee {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.marquee__track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}

.marquee__track--reverse { animation-direction: reverse; }

.marquee__track span {
  font-family: var(--display);
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee--red {
  background: var(--red);
  border-block: 3px solid var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
  margin-block: -0.5rem;
  position: relative;
  z-index: 5;
}

.marquee--red span {
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  color: #fff;
  padding: 0.55rem 0;
}

.marquee--dark {
  background: var(--ink);
  border-block: 1px solid var(--line);
}

.marquee--dark span {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
  padding: 0.5rem 0;
}

.marquee--giant {
  background: var(--red);
  transition: background var(--t);
}

.marquee--giant span {
  font-size: clamp(3rem, 9vw, 7.5rem);
  color: #fff;
  padding: 1.2rem 0;
  line-height: 1;
}

.marquee--giant:hover { background: var(--red-dark); }

/* ============================================================
   NÚMEROS
   ============================================================ */
.numbers {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad);
  border-bottom: 1px solid var(--line);
}

.numbers__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
}

.numbers__item { display: flex; flex-direction: column; }

.numbers__figure {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1;
  color: var(--white);
}

.numbers__figure--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.numbers__figure--red { color: var(--red); }

.numbers__label {
  margin-top: 0.5rem;
  font-family: var(--cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}

.numbers__slash {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--red);
  transform: rotate(8deg);
}

/* ============================================================
   EL MÉTODO (sección blanca)
   ============================================================ */
.method {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 7.5rem) var(--pad);
}

.method__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.method__head {
  position: sticky;
  top: 100px;
}

.method__tag {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.method__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.method__title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.method__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.6rem 0;
  border-bottom: 2px solid var(--ink);
  transition: padding-left var(--t), background var(--t);
}

.method__item:first-child { border-top: 2px solid var(--ink); }

.method__item:hover { padding-left: 1rem; }

.method__num {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--red);
  line-height: 1;
}

.method__body h3 {
  font-family: var(--cond);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.method__body p {
  margin-top: 0.45rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(12, 12, 13, 0.72);
  max-width: 56ch;
}

.method__hint {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 0.35rem 0.75rem;
  white-space: nowrap;
  transform: rotate(-3deg);
  transition: transform var(--t), background var(--t);
}

.method__item:hover .method__hint {
  transform: rotate(0deg);
  background: var(--red);
  color: #fff;
}

/* ============================================================
   PLANES (tickets)
   ============================================================ */
.plans {
  padding: clamp(4rem, 9vw, 7.5rem) var(--pad);
  position: relative;
}

.plans__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.plans__title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.plans__title span {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--red);
}

.plans__note {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  line-height: 1.5;
}

.plans__stack {
  display: grid;
  gap: 1.4rem;
  max-width: 980px;
}

/* Ticket: tarjeta horizontal con troquel */
.ticket {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 240px;
  background: var(--white);
  color: var(--ink);
  transition: transform var(--t), box-shadow var(--t);
}

.ticket:hover {
  transform: translate(-6px, -6px) rotate(-0.4deg);
  box-shadow: var(--shadow-pop);
}

.ticket--featured {
  background: var(--red);
  color: #fff;
  transform: rotate(0.6deg);
}

.ticket--featured:hover {
  transform: translate(-6px, -6px) rotate(0.2deg);
  box-shadow: 10px 10px 0 var(--white);
}

.ticket__flag {
  position: absolute;
  top: -0.9rem;
  right: 2rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  transform: rotate(2deg);
}

.ticket__main {
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ticket__level {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}

.ticket__name {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.ticket__perks {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
}

.ticket__perks li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.ticket__perks li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.ticket--featured .ticket__perks li::before { color: var(--ink); }

/* Troquel del ticket */
.ticket__stub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.6rem 1.4rem;
  border-left: 3px dashed rgba(12, 12, 13, 0.35);
}

.ticket--featured .ticket__stub { border-left-color: rgba(255, 255, 255, 0.5); }

.ticket__stub::before,
.ticket__stub::after {
  content: "";
  position: absolute;
  left: -13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
}

.ticket__stub::before { top: -11px; }
.ticket__stub::after { bottom: -11px; }

.ticket__price {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.ticket__price sup { font-size: 1rem; margin-right: 2px; }

.ticket__price small {
  font-family: var(--cond);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.6;
}

/* ============================================================
   EQUIPO (roster)
   ============================================================ */
.team {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.team__head {
  padding: 0 var(--pad);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.team__title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: 1;
}

.team__title span { color: var(--red); }

.team__sub {
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.roster__row {
  position: relative;
  border-top: 1px solid var(--line);
}

.roster__row:last-child { border-bottom: 1px solid var(--line); }

.roster__link {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.5rem var(--pad);
  transition: background var(--t), color var(--t), padding-left var(--t);
}

.roster__index {
  font-family: var(--cond);
  font-weight: 700;
  color: var(--red);
  font-size: 1.05rem;
}

.roster__name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 5vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--t);
}

.roster__role {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

.roster__go {
  font-size: 1.5rem;
  color: var(--red);
  transition: transform var(--t);
}

.roster__row:hover .roster__link {
  background: var(--red);
  padding-left: calc(var(--pad) + 0.8rem);
}

.roster__row:hover .roster__role { color: rgba(255, 255, 255, 0.85); }
.roster__row:hover .roster__index,
.roster__row:hover .roster__go { color: var(--white); }
.roster__row:hover .roster__go { transform: translate(4px, -4px); }

/* Foto flotante al hover (solo desktop) */
.roster__photo {
  position: absolute;
  right: clamp(8rem, 22vw, 22rem);
  top: 50%;
  width: 200px;
  aspect-ratio: 4 / 5;
  transform: translateY(-50%) rotate(-5deg) scale(0.85);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  border: 4px solid var(--white);
  box-shadow: 10px 10px 0 rgba(12, 12, 13, 0.85);
  transition: opacity var(--t), transform var(--t);
}

.roster__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.9) contrast(1.1);
}

.roster__row:hover .roster__photo {
  opacity: 1;
  transform: translateY(-50%) rotate(-5deg) scale(1);
}

/* ============================================================
   GALERÍA HORIZONTAL
   ============================================================ */
.strip {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--ink-2);
  border-block: 1px solid var(--line);
}

.strip__head {
  padding: 0 var(--pad);
  margin-bottom: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.strip__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1;
}

.strip__title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}

.strip__hint {
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  animation: nudge 1.6s ease-in-out infinite;
}

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.strip__scroller {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 1rem var(--pad) 1.6rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}

.strip__card {
  position: relative;
  flex: 0 0 clamp(240px, 32vw, 400px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
  overflow: hidden;
}

.strip__card:nth-child(odd) { transform: rotate(-1.3deg); }
.strip__card:nth-child(even) { transform: rotate(1.3deg) translateY(10px); }

.strip__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.1);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.strip__card:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.04);
}

.strip__card figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: var(--white);
  color: var(--ink);
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  transform: rotate(-2deg);
}

.strip__card--cta {
  background: var(--red);
  transform: rotate(1.3deg);
}

.strip__card--cta a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  transition: background var(--t);
}

.strip__card--cta a:hover { background: var(--red-dark); }

.strip__card--cta span {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.strip__card--cta em {
  font-style: normal;
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIOS (pósters)
   ============================================================ */
.voices { padding: clamp(4rem, 9vw, 7rem) var(--pad); }

.voices__head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }

.voices__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1;
}

.voices__title span { color: var(--red); }

.voices__wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}

.voice {
  position: relative;
  background: var(--white);
  color: var(--ink);
  padding: 2.6rem 1.8rem 1.6rem;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.12);
  transition: transform var(--t), box-shadow var(--t);
}

.voice--tilt-l  { transform: rotate(-1.6deg); }
.voice--tilt-r  { transform: rotate(1.4deg) translateY(14px); }
.voice--tilt-l2 { transform: rotate(-0.8deg) translateY(-6px); }

.voice:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 10px 10px 0 var(--red);
}

.voice--red {
  background: var(--red);
  color: #fff;
}

.voice--red:hover { box-shadow: 10px 10px 0 var(--white); }

.voice__mark {
  position: absolute;
  top: -0.4rem;
  left: 1rem;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
}

.voice--red .voice__mark { color: var(--ink); }

.voice p {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.voice footer {
  margin-top: 1.2rem;
  padding-top: 0.9rem;
  border-top: 2px solid currentColor;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.voice cite {
  font-family: var(--cond);
  font-style: normal;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.voice footer span {
  font-size: 0.78rem;
  opacity: 0.65;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}

.faq__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.faq__head { position: sticky; top: 100px; }

.faq__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.faq__title span { color: var(--red); }

.faq__item { border-bottom: 2px solid var(--ink); }
.faq__item:first-child { border-top: 2px solid var(--ink); }

.faq__item summary {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 0;
  font-family: var(--cond);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  list-style: none;
  transition: color var(--t), padding-left var(--t);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary:hover { color: var(--red); padding-left: 0.6rem; }

.faq__n {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 0.2rem 0.5rem;
  flex-shrink: 0;
}

.faq__x {
  margin-left: auto;
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--red);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__x { transform: rotate(45deg); }

.faq__item > p {
  padding: 0 0 1.3rem 3.3rem;
  font-size: 0.95rem;
  color: rgba(12, 12, 13, 0.75);
  max-width: 60ch;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.join {
  padding: clamp(4rem, 9vw, 7.5rem) var(--pad);
  background:
    radial-gradient(circle at 85% 15%, rgba(232, 38, 45, 0.16), transparent 45%),
    var(--ink);
}

.join__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.join__title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.join__title span { color: var(--red); }

.join__text {
  margin-top: 1.2rem;
  max-width: 46ch;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.join__data {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}

.join__data div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
}

.join__data dt {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.join__data dd {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

.join__data a { border-bottom: 1px solid var(--red); }
.join__data a:hover { color: var(--red); }

.join__map {
  margin-top: 1.8rem;
  border: 3px solid var(--white);
  box-shadow: 10px 10px 0 var(--red);
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s ease;
}

.join__map:hover { filter: grayscale(0.1); }
.join__map iframe { display: block; }

/* Formulario: tarjeta blanca rotada */
.join__form {
  background: var(--white);
  color: var(--ink);
  padding: 2.2rem 2rem;
  transform: rotate(0.8deg);
  box-shadow: 12px 12px 0 var(--red);
  display: grid;
  gap: 1.1rem;
}

.join__form-tag {
  font-family: var(--display);
  font-size: 1.7rem;
  text-transform: uppercase;
  line-height: 1;
}

.field { display: grid; gap: 0.35rem; }

.field > span {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field em {
  font-style: normal;
  opacity: 0.5;
  text-transform: none;
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color var(--t), box-shadow var(--t);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 4px 4px 0 var(--red);
}

.field input.error,
.field select.error {
  border-color: var(--red);
  background: #fdeaea;
}

.field textarea { resize: vertical; }

.join__success {
  font-weight: 600;
  font-size: 0.92rem;
  color: #1e7e46;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad) 1.5rem;
  overflow: hidden;
}

.footer__word {
  font-family: var(--display);
  font-size: clamp(3.5rem, 12.5vw, 12rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
  white-space: nowrap;
  user-select: none;
}

.footer__row {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__links {
  display: flex;
  gap: 1.4rem;
}

.footer__links a {
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--t);
}

.footer__links a:hover { color: var(--red); }

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.45);
  transition: transform var(--t), box-shadow var(--t);
}

.whatsapp-float:hover {
  transform: translate(-3px, -3px) rotate(-4deg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.method__list .reveal:nth-child(2) { transition-delay: 0.06s; }
.method__list .reveal:nth-child(3) { transition-delay: 0.12s; }
.method__list .reveal:nth-child(4) { transition-delay: 0.18s; }
.method__list .reveal:nth-child(5) { transition-delay: 0.24s; }

.voices__wall .reveal:nth-child(2) { transition-delay: 0.1s; }
.voices__wall .reveal:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__badge svg { animation: none; }
  .strip__hint { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .voices__wall { grid-template-columns: 1fr 1fr; }

  .roster__photo { display: none; }

  .method__head,
  .faq__head {
    position: static;
    margin-bottom: 1.5rem;
  }

  .method__inner,
  .faq__inner,
  .join__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__cta { margin-left: auto; }

  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: 0 var(--pad);
    background: rgba(12, 12, 13, 0.98);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: 105;
    margin-left: 0;
  }

  .nav__menu.open { transform: translateX(0); }

  .nav__link {
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3rem);
    color: var(--white);
  }

  .nav__num { display: inline; }

  .numbers__slash { display: none; }

  .numbers__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .nav { gap: 0.7rem; }
  .nav__logo { font-size: 1rem; }

  .nav__cta {
    padding: 0.4rem 0.7rem;
    font-size: 0.85rem;
  }

  .nav__toggle { padding: 8px 0; }
  .nav__toggle span { width: 26px; }

  .hero__badge { display: none; }

  .hero__foot { flex-direction: column; align-items: flex-start; }

  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; text-align: center; }

  .ticket { grid-template-columns: 1fr; }

  .ticket__stub {
    flex-direction: row;
    justify-content: space-between;
    border-left: none;
    border-top: 3px dashed rgba(12, 12, 13, 0.35);
  }

  .ticket--featured .ticket__stub { border-top-color: rgba(255, 255, 255, 0.5); }

  .ticket__stub::before,
  .ticket__stub::after {
    left: auto;
    top: -11px;
  }

  .ticket__stub::before { left: -11px; }
  .ticket__stub::after { right: -11px; bottom: auto; }

  .voices__wall { grid-template-columns: 1fr; }

  .voice--tilt-r { transform: rotate(1.4deg); }
  .voice--tilt-l2 { transform: rotate(-0.8deg); }

  .roster__link {
    grid-template-columns: auto 1fr auto;
    row-gap: 0.2rem;
  }

  .roster__role {
    grid-column: 2 / -1;
    text-align: left;
  }

  .method__item {
    grid-template-columns: auto 1fr;
  }

  .method__hint {
    grid-column: 2;
    justify-self: start;
  }

  .faq__item > p { padding-left: 0; }

  .numbers__row { grid-template-columns: 1fr 1fr; }

  .join__data div { grid-template-columns: 1fr; gap: 0.15rem; }

  .join__form { transform: none; }

  .whatsapp-float { width: 52px; height: 52px; }
}
