/* =====================================================================
   Horizon Padel - torneo.css
   Página del torneo "Horizon Open" — estética nightlife cinemático.
   Usa los tokens globales de styles.css (--navy, --blue, --orange, ...).
   Clases con prefijo .trn- para no colisionar con el resto del sitio.
   ===================================================================== */

:root {
  --trn-purple: #8b5cff;
  --trn-purple-glow: #a880ff;
  --trn-fire: #ff8c38;
  --trn-yellow: #ffd24a;
  --trn-glass: rgba(255, 255, 255, 0.04);
  --trn-glass-strong: rgba(255, 255, 255, 0.07);
  --trn-stroke: rgba(255, 255, 255, 0.09);
  --trn-stroke-soft: rgba(255, 255, 255, 0.06);
  --trn-blue-shadow: 0 0 40px rgba(0, 120, 255, 0.35);
  --trn-fire-shadow: 0 0 50px rgba(255, 106, 0, 0.4);
}

/* El nav global es fijo (72px); el hero arranca pegado arriba */
body:has(.trn-hero) { padding-top: 0; }

.trn-shell { max-width: 1180px; margin: 0 auto; }

/* Reveal on scroll (base; .is-visible lo activa torneo.js) */
.trn-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.trn-reveal.is-visible { opacity: 1; transform: none; }

/* ============================ HERO ============================ */
.trn-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: safe center;
  text-align: center;
  overflow: hidden;
  padding: 124px 5% 64px;
  isolation: isolate;
}
/* Base cinematográfica: azul eléctrico arriba que funde a fuego naranja abajo */
.trn-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(135% 105% at 50% 122%, rgba(255, 106, 0, 0.42) 0%, rgba(255, 140, 56, 0.10) 32%, transparent 62%),
    radial-gradient(115% 90% at 50% -18%, rgba(0, 120, 255, 0.34) 0%, transparent 58%),
    radial-gradient(70% 60% at 84% 26%, rgba(139, 92, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #05070f 0%, #070a16 42%, #0c0710 100%);
}
/* Viñeta para foco cinematográfico */
.trn-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(82% 78% at 50% 44%, transparent 52%, rgba(0, 0, 0, 0.6) 100%);
}

/* Aurora de luz que deriva lentamente */
.trn-aurora {
  position: absolute;
  inset: -8%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(40% 40% at 28% 34%, rgba(0, 150, 255, 0.30), transparent 62%),
    radial-gradient(46% 46% at 72% 30%, rgba(255, 106, 0, 0.24), transparent 62%),
    radial-gradient(36% 36% at 55% 60%, rgba(0, 200, 255, 0.18), transparent 62%);
  filter: blur(48px);
  opacity: 0.9;
  animation: trnAurora 20s ease-in-out infinite alternate;
}
@keyframes trnAurora {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1) rotate(0deg); }
  50%  { transform: translate3d(4%, 3%, 0) scale(1.14) rotate(7deg); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.06) rotate(-6deg); }
}

/* Foco / haz de luz suave desde arriba */
.trn-beams {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 75%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(48% 70% at 50% 0%, rgba(180, 214, 255, 0.12), transparent 72%);
  animation: trnBeams 9s ease-in-out infinite alternate;
}
@keyframes trnBeams { from { opacity: 0.4; } to { opacity: 0.9; } }

/* Línea-horizonte luminosa: azul que funde a fuego (motivo "Horizon") */
.trn-glow-line {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  width: min(880px, 88vw);
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent 2%, #1a8fff 32%, #7fdcff 50%, #ff8c38 70%, transparent 98%);
  box-shadow: 0 0 34px 6px rgba(0, 150, 255, 0.45), 0 0 70px 16px rgba(255, 106, 0, 0.22);
  animation: trnGlowPulse 5s ease-in-out infinite;
}
.trn-glow-line::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: radial-gradient(58% 100% at 50% 100%, rgba(0, 150, 255, 0.16), transparent 72%);
}
@keyframes trnGlowPulse { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }

/* Partículas / brasas que ascienden lentamente (atardecer Horizon) */
.trn-hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.trn-hero-particles span {
  position: absolute;
  bottom: -12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 220, 255, 0.95) 0%, rgba(127, 220, 255, 0) 70%);
  opacity: 0;
  will-change: transform, opacity;
  animation: trnRise 11s linear infinite;
}
/* algunas en tono fuego */
.trn-hero-particles span:nth-child(3n) {
  background: radial-gradient(circle, rgba(255, 150, 80, 0.95) 0%, rgba(255, 150, 80, 0) 70%);
}
.trn-hero-particles span:nth-child(7n) {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%);
}
@keyframes trnRise {
  0%   { transform: translateY(0) translateX(0) scale(0.5); opacity: 0; }
  12%  { opacity: 0.9; }
  85%  { opacity: 0.6; }
  100% { transform: translateY(-86vh) translateX(14px) scale(1.15); opacity: 0; }
}
.trn-hero-particles span:nth-child(1)  { left: 6%;  animation-duration: 12s;  animation-delay: -1s;   width: 4px; height: 4px; }
.trn-hero-particles span:nth-child(2)  { left: 13%; animation-duration: 9s;   animation-delay: -4s;   }
.trn-hero-particles span:nth-child(3)  { left: 19%; animation-duration: 14s;  animation-delay: -7s;   width: 6px; height: 6px; }
.trn-hero-particles span:nth-child(4)  { left: 26%; animation-duration: 10s;  animation-delay: -2s;   }
.trn-hero-particles span:nth-child(5)  { left: 32%; animation-duration: 13s;  animation-delay: -9s;   width: 3px; height: 3px; }
.trn-hero-particles span:nth-child(6)  { left: 38%; animation-duration: 11s;  animation-delay: -5s;   }
.trn-hero-particles span:nth-child(7)  { left: 44%; animation-duration: 15s;  animation-delay: -11s;  width: 4px; height: 4px; }
.trn-hero-particles span:nth-child(8)  { left: 50%; animation-duration: 9.5s; animation-delay: -3s;   }
.trn-hero-particles span:nth-child(9)  { left: 56%; animation-duration: 12.5s;animation-delay: -8s;   width: 6px; height: 6px; }
.trn-hero-particles span:nth-child(10) { left: 62%; animation-duration: 10.5s;animation-delay: -1.5s; }
.trn-hero-particles span:nth-child(11) { left: 68%; animation-duration: 13.5s;animation-delay: -6s;   width: 3px; height: 3px; }
.trn-hero-particles span:nth-child(12) { left: 73%; animation-duration: 11.5s;animation-delay: -10s;  }
.trn-hero-particles span:nth-child(13) { left: 79%; animation-duration: 14.5s;animation-delay: -4.5s; width: 5px; height: 5px; }
.trn-hero-particles span:nth-child(14) { left: 85%; animation-duration: 9s;   animation-delay: -7.5s; }
.trn-hero-particles span:nth-child(15) { left: 91%; animation-duration: 12s;  animation-delay: -2.5s; width: 4px; height: 4px; }
.trn-hero-particles span:nth-child(16) { left: 9%;  animation-duration: 13s;  animation-delay: -9.5s; }
.trn-hero-particles span:nth-child(17) { left: 23%; animation-duration: 10s;  animation-delay: -12s;  width: 3px; height: 3px; }
.trn-hero-particles span:nth-child(18) { left: 47%; animation-duration: 15s;  animation-delay: -6.5s; }
.trn-hero-particles span:nth-child(19) { left: 65%; animation-duration: 11s;  animation-delay: -3.5s; width: 6px; height: 6px; }
.trn-hero-particles span:nth-child(20) { left: 82%; animation-duration: 12.5s;animation-delay: -8.5s; }
.trn-hero-particles span:nth-child(21) { left: 35%; animation-duration: 13s;  animation-delay: -5.5s; width: 4px; height: 4px; }
.trn-hero-particles span:nth-child(22) { left: 95%; animation-duration: 10.5s;animation-delay: -10.5s;}

.trn-hero-inner { position: relative; max-width: 920px; }

.trn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(0.72rem, 1.6vw, 0.85rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-light);
  background: var(--trn-glass);
  border: 1px solid var(--trn-stroke);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1.8rem;
  animation: trnFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trn-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 12px var(--blue-glow);
  animation: trnPulse 1.8s ease-in-out infinite;
}
.trn-dot--static { animation: none; }
@keyframes trnPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.55; }
}

.trn-title {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.82;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}
.trn-title-1, .trn-title-2 { display: block; }
.trn-title-1 {
  font-size: clamp(3.4rem, 13vw, 9rem);
  background: linear-gradient(180deg, #ffffff 0%, #cfe2ff 60%, #9fc4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 30px rgba(255, 255, 255, 0.12));
  animation: trnFadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trn-title-2 {
  font-size: clamp(4.2rem, 16.5vw, 11.5rem);
  background: linear-gradient(110deg, var(--blue) 0%, var(--blue-glow) 38%, #8fe3ff 60%, var(--orange-light) 112%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 38px rgba(0, 150, 255, 0.5)) drop-shadow(0 0 60px rgba(255, 106, 0, 0.22));
  animation: trnFadeUp 0.9s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}
/* Brillo que recorre el título */
.trn-title::after {
  content: '';
  position: absolute;
  top: -6%;
  left: -30%;
  width: 35%;
  height: 112%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: trnTitleSheen 6s ease-in-out 1.2s infinite;
}
@keyframes trnTitleSheen {
  0%   { left: -35%; opacity: 0; }
  12%  { opacity: 1; }
  32%  { left: 100%; opacity: 0; }
  100% { left: 100%; opacity: 0; }
}

/* FECHA DESTACADA */
.trn-datebar {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0.4rem auto 1.4rem;
  padding: 0.7rem 1.5rem 0.7rem 0.9rem;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.12), rgba(255, 106, 0, 0.1));
  border: 1px solid rgba(120, 180, 255, 0.28);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset,
              0 18px 50px -22px rgba(0, 150, 255, 0.5);
  animation: trnFadeUp 0.9s 0.24s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trn-datebar-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.4rem, 9vw, 5.2rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #ffffff 0%, #7fdcff 55%, #ff8c38 120%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 38px rgba(0, 170, 255, 0.45);
  padding: 0 0.55rem;
}
.trn-datebar-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.18rem;
}
.trn-datebar-month {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4.6vw, 2.6rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--white);
}
.trn-datebar-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.9vw, 0.98rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-glow);
}

.trn-hero-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 2.4rem;
  animation: trnFadeUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* COUNTDOWN */
.trn-countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
  animation: trnFadeUp 0.9s 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trn-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 92px;
  padding: 1.1rem 0.6rem 0.85rem;
  background: var(--trn-glass);
  border: 1px solid var(--trn-stroke);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 40px rgba(0, 0, 0, 0.35);
}
.trn-cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 7vw, 3.8rem);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 22px rgba(0, 150, 255, 0.5);
  font-variant-numeric: tabular-nums;
}
.trn-cd-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.35rem;
}
.trn-cd-caption {
  flex-basis: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-top: 0.4rem;
}
/* Estado cerrado */
.trn-countdown.is-closed .trn-cd-unit { display: none; }
.trn-countdown.is-closed .trn-cd-caption {
  color: var(--gray);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.12em;
}

/* STATS */
.trn-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  list-style: none;
  max-width: 760px;
  margin: 0 auto 2.6rem;
  background: var(--trn-glass);
  border: 1px solid var(--trn-stroke);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  animation: trnFadeUp 0.9s 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trn-stats li {
  flex: 1 1 0;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 0.5rem;
  border-right: 1px solid var(--trn-stroke-soft);
}
.trn-stats li:last-child { border-right: none; }
.trn-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--blue-light);
}
.trn-stat--after .trn-stat-num { color: var(--orange-light); }
.trn-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* CTAs */
.trn-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: trnFadeUp 0.9s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.trn-btn--primary {
  position: relative;
  color: #fff;
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  box-shadow: 0 0 32px rgba(0, 120, 255, 0.5);
  overflow: hidden;
}
.trn-btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: trnShimmer 3.2s ease-in-out infinite;
}
.trn-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 46px rgba(0, 150, 255, 0.7); }
.trn-btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 0 26px rgba(37, 211, 102, 0.35);
}
.trn-btn--wa:hover { background: #20bb5a; transform: translateY(-2px); box-shadow: 0 0 38px rgba(37, 211, 102, 0.5); }
.trn-btn--block { display: flex; width: 100%; max-width: 520px; margin: 0 auto; font-size: 1.1rem; padding: 1.15rem 2.4rem; }

@keyframes trnShimmer {
  0%   { left: -120%; }
  55%  { left: 140%; }
  100% { left: 140%; }
}


/* ======================= SECTIONS GENÉRICAS ======================= */
.trn-section { position: relative; padding: clamp(4rem, 9vw, 7rem) 5%; background: var(--navy); }
.trn-section--dark { background: var(--dark); }
/* Blooms de luz por sección para mantener el ambiente cinematográfico */
#categorias { background:
  radial-gradient(90% 55% at 50% -5%, rgba(0, 110, 255, 0.12), transparent 60%),
  radial-gradient(70% 50% at 100% 100%, rgba(139, 92, 255, 0.08), transparent 60%),
  var(--navy); }
#horario { background:
  radial-gradient(80% 50% at 0% 0%, rgba(0, 120, 255, 0.10), transparent 60%),
  radial-gradient(80% 60% at 100% 100%, rgba(255, 106, 0, 0.08), transparent 60%),
  var(--dark); }
#incluye { background:
  radial-gradient(90% 55% at 50% 105%, rgba(255, 106, 0, 0.10), transparent 62%),
  var(--navy); }
#inscripcion { background:
  radial-gradient(90% 55% at 50% -5%, rgba(0, 120, 255, 0.14), transparent 60%),
  var(--dark); }
.trn-head { max-width: 620px; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); text-align: center; }
.trn-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 0.8rem;
}
.trn-label--fire { color: var(--orange-light); }
.trn-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}
.trn-sub { color: var(--gray-light); font-size: 1.04rem; line-height: 1.7; }

/* ======================= CATEGORÍAS ======================= */
.trn-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.trn-cat {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.8rem 1.8rem;
  background: var(--trn-glass);
  border: 1px solid var(--trn-stroke);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.trn-cat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.trn-cat--m::before { background: linear-gradient(90deg, var(--blue), var(--blue-glow)); }
.trn-cat--f::before { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.trn-cat--x::before { background: linear-gradient(90deg, var(--trn-purple), var(--trn-purple-glow)); }
.trn-cat { --tone: 26, 143, 255; }
.trn-cat--f { --tone: 255, 138, 56; }
.trn-cat--x { --tone: 168, 128, 255; }
.trn-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 0%), rgba(var(--tone), 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.trn-cat:hover::after { opacity: 1; }
.trn-cat-head {
  position: relative;
  margin-bottom: 0.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--trn-stroke);
}
.trn-cat-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgb(var(--tone));
  text-shadow: 0 0 26px rgba(var(--tone), 0.45);
}
.trn-cat-levels { list-style: none; display: flex; flex-direction: column; }
.trn-cat-levels li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 0;
}
.trn-cat-levels li + li { border-top: 1px solid var(--trn-stroke); }
.trn-cat-lvl {
  flex: 0 0 auto;
  min-width: 46px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 0.9;
  color: rgb(var(--tone));
  text-shadow: 0 0 22px rgba(var(--tone), 0.5);
}
.trn-cat-lvl sup { font-size: 0.45em; top: -0.7em; }
.trn-cat-lvl-info { display: flex; flex-direction: column; gap: 0.1rem; }
.trn-cat-lvl-info strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--white);
  line-height: 1.1;
}
.trn-cat-lvl-info small {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-light);
}
.trn-cat:hover {
  transform: translateY(-6px);
  background: var(--trn-glass-strong);
  border-color: rgba(0, 150, 255, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), var(--trn-blue-shadow);
}
.trn-cat--f:hover { border-color: rgba(255, 140, 56, 0.35); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 106, 0, 0.3); }
.trn-cat--x:hover { border-color: rgba(168, 128, 255, 0.4); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 255, 0.32); }

/* ======================= HORARIO / TIMELINE ======================= */
.trn-timeline {
  position: relative;
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 0;
}
/* Vía base (atenuada) */
.trn-timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}
/* Progreso luminoso que se rellena al hacer scroll */
.trn-timeline::after {
  content: '';
  position: absolute;
  left: 88px;
  top: 8px;
  width: 2px;
  height: var(--tl-progress, 0%);
  background: linear-gradient(180deg, var(--blue-glow) 0%, #7fdcff 45%, var(--orange-light) 100%);
  box-shadow: 0 0 16px rgba(0, 150, 255, 0.6);
  transition: height 0.12s linear;
}
.trn-tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 32px 1fr;
  align-items: start;
  gap: 0.6rem;
  padding: 0.9rem 0;
}
.trn-tl-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--gray-light);
  text-align: right;
  padding-top: 0.1rem;
}
.trn-tl-dot {
  position: relative;
  justify-self: center;
  margin-top: 0.45rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 0 5px rgba(0, 150, 255, 0.12), 0 0 18px var(--blue-glow);
  transform: scale(0.4);
  opacity: 0.45;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  z-index: 1;
}
.trn-tl-item.is-visible .trn-tl-dot { transform: scale(1); opacity: 1; }
.trn-tl-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--blue-glow);
  opacity: 0;
}
.trn-tl-item.is-visible .trn-tl-dot::after { animation: trnPing 2.6s ease-out infinite; }
@keyframes trnPing {
  0%        { transform: scale(0.55); opacity: 0.7; }
  70%, 100% { transform: scale(1.9);  opacity: 0; }
}
.trn-tl-item--after .trn-tl-dot {
  background: var(--orange-light);
  box-shadow: 0 0 0 5px rgba(255, 106, 0, 0.14), 0 0 18px var(--orange-light);
}
.trn-tl-item--after .trn-tl-dot::after { border-color: var(--orange-light); }
.trn-tl-body {
  background: var(--trn-glass);
  border: 1px solid var(--trn-stroke);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.trn-tl-body:hover {
  transform: translateX(6px);
  border-color: rgba(0, 150, 255, 0.3);
  box-shadow: var(--trn-blue-shadow);
}
.trn-tl-item--after .trn-tl-body:hover {
  border-color: rgba(255, 140, 56, 0.35);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.25);
}
.trn-tl-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.trn-tl-item--after .trn-tl-name { color: var(--orange-light); }
.trn-tl-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-glow);
  background: rgba(0, 150, 255, 0.12);
  border: 1px solid rgba(0, 150, 255, 0.25);
  border-radius: 100px;
  padding: 0.15rem 0.65rem;
}
.trn-tl-desc { color: var(--gray-light); font-size: 0.95rem; line-height: 1.6; }

/* ========================= PREMIOS ========================= */
.trn-premios {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 5%;
  overflow: hidden;
  isolation: isolate;
}
.trn-premios-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(255, 196, 112, 0.16), transparent 70%),
    radial-gradient(70% 60% at 50% 100%, rgba(0, 120, 255, 0.12), transparent 75%);
  pointer-events: none;
}
.trn-prizes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 1.6rem;
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}
.trn-prize {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 2.4rem 2rem 2rem;
  border-radius: 20px;
  background: var(--trn-glass);
  border: 1px solid var(--trn-stroke);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease, box-shadow 0.4s ease;
}
.trn-prize::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.85;
}
.trn-prize:hover {
  transform: translateY(-6px);
  border-color: var(--accent-soft);
  box-shadow: 0 22px 50px -24px var(--accent-shadow);
}
.trn-prize-rank {
  position: absolute;
  top: 0.6rem;
  right: 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: -1;
}
.trn-prize-rank sup { font-size: 0.4em; }
.trn-prize-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.trn-prize-ico svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trn-prize-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 0.4rem;
}
.trn-prize-desc {
  color: var(--gray-light);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}
.trn-prize-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.trn-prize-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--white);
  font-size: 0.98rem;
}
.trn-prize-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-shadow);
}
.trn-prize--gold {
  --accent: #ffce7a;
  --accent-soft: rgba(255, 206, 122, 0.4);
  --accent-bg: rgba(255, 206, 122, 0.12);
  --accent-shadow: rgba(255, 180, 80, 0.5);
}
.trn-prize--silver {
  --accent: #cfe0ff;
  --accent-soft: rgba(159, 194, 255, 0.4);
  --accent-bg: rgba(159, 194, 255, 0.12);
  --accent-shadow: rgba(120, 170, 255, 0.45);
}
.trn-prize-note {
  margin: clamp(2rem, 4vw, 2.8rem) auto 0;
  max-width: 640px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.trn-prize-note .trn-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange-glow);
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: trnPulse 2s ease-in-out infinite;
}

/* ======================= AFTER PARTY ======================= */
.trn-after {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 5%;
  overflow: hidden;
  isolation: isolate;
}
.trn-after-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 20% 30%, rgba(255, 106, 0, 0.32), transparent 60%),
    radial-gradient(ellipse 55% 65% at 85% 75%, rgba(255, 60, 0, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 50% at 60% 10%, rgba(255, 210, 74, 0.14), transparent 60%),
    linear-gradient(180deg, #120703 0%, #1a0a04 50%, #0c0502 100%);
}
.trn-after-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.trn-after-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 0.86;
  margin: 0.6rem 0 1.4rem;
}
.trn-after-title span {
  display: block;
  background: linear-gradient(100deg, var(--orange) 0%, var(--orange-light) 45%, var(--trn-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(255, 130, 0, 0.5));
}
.trn-after-desc { color: #f0d9c8; font-size: 1.1rem; line-height: 1.75; max-width: 460px; margin-bottom: 1.6rem; }
.trn-after-hour {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--trn-yellow);
}
/* Ecualizador animado (energía DJ) */
.trn-eq {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 42px;
  margin-top: 1.4rem;
}
.trn-eq span {
  flex: 1 1 0;
  max-width: 7px;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--trn-yellow), var(--orange));
  box-shadow: 0 0 12px rgba(255, 140, 56, 0.5);
  transform-origin: bottom;
  animation: trnEq 1.1s ease-in-out infinite;
}
.trn-eq span:nth-child(odd)  { animation-duration: 0.9s; }
.trn-eq span:nth-child(3n)   { animation-duration: 1.3s; }
.trn-eq span:nth-child(1)  { animation-delay: -0.2s; }
.trn-eq span:nth-child(2)  { animation-delay: -0.6s; }
.trn-eq span:nth-child(3)  { animation-delay: -0.1s; }
.trn-eq span:nth-child(4)  { animation-delay: -0.9s; }
.trn-eq span:nth-child(5)  { animation-delay: -0.4s; }
.trn-eq span:nth-child(6)  { animation-delay: -0.7s; }
.trn-eq span:nth-child(7)  { animation-delay: -0.3s; }
.trn-eq span:nth-child(8)  { animation-delay: -0.8s; }
.trn-eq span:nth-child(9)  { animation-delay: -0.5s; }
.trn-eq span:nth-child(10) { animation-delay: -1s; }
.trn-eq span:nth-child(11) { animation-delay: -0.25s; }
.trn-eq span:nth-child(12) { animation-delay: -0.65s; }
@keyframes trnEq {
  0%, 100% { transform: scaleY(0.25); }
  50%      { transform: scaleY(1); }
}
.trn-after-cards { display: grid; gap: 1rem; }
.trn-after-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 170, 90, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trn-after-card:hover { transform: translateX(6px); box-shadow: var(--trn-fire-shadow); }
.trn-after-emoji { font-size: 2rem; line-height: 1; flex: 0 0 auto; }
.trn-after-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.25rem; color: #fff; }
.trn-after-card p { color: #e7c9b4; font-size: 0.92rem; }

/* ======================= QUÉ INCLUYE ======================= */
.trn-incl-panel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0.5rem 1.1rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--trn-stroke);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.9),
              0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  overflow: hidden;
}
/* halo bitono que respira en el borde del panel */
.trn-incl-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background:
    radial-gradient(40% 40% at 18% 12%, rgba(0, 150, 255, 0.14), transparent 60%),
    radial-gradient(40% 40% at 82% 88%, rgba(255, 106, 0, 0.14), transparent 60%);
  pointer-events: none;
  animation: trnInclHalo 14s ease-in-out infinite alternate;
}
@keyframes trnInclHalo {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.1); }
}
.trn-incl-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.trn-incl {
  --tone: 26, 143, 255;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  transition: background 0.35s ease;
}
.trn-incl[data-tone="gold"] { --tone: 255, 138, 56; }
/* divisor horizontal entre filas */
.trn-incl::before {
  content: "";
  position: absolute;
  left: 1.25rem; right: 1.25rem; bottom: 0;
  height: 1px;
  background: var(--trn-stroke);
}
.trn-incl:nth-last-child(-n + 2)::before { display: none; }
/* divisor vertical de la columna izquierda */
.trn-incl:nth-child(odd)::after {
  content: "";
  position: absolute;
  right: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: var(--trn-stroke);
}
.trn-incl:hover { background: rgba(var(--tone), 0.06); }

.trn-incl-ico {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 13px;
  color: rgb(var(--tone));
  background: rgba(var(--tone), 0.1);
  border: 1px solid rgba(var(--tone), 0.22);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.4s ease;
}
.trn-incl-ico svg { width: 25px; height: 25px; }
.trn-incl:hover .trn-incl-ico {
  transform: scale(1.08);
  background: rgba(var(--tone), 0.18);
  box-shadow: 0 0 0 4px rgba(var(--tone), 0.08), 0 8px 22px -8px rgba(var(--tone), 0.6);
}
.trn-incl-txt { display: flex; flex-direction: column; gap: 0.16rem; min-width: 0; }
.trn-incl-txt p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.15;
}
.trn-incl-txt small {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.3;
}

/* ======================= INSCRIPCIÓN ======================= */
.trn-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.trn-price {
  position: relative;
  padding: 2.2rem 2rem;
  background: var(--trn-glass);
  border: 1px solid var(--trn-stroke);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.trn-price--featured {
  border-color: rgba(0, 150, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 150, 255, 0.3), var(--trn-blue-shadow);
  background: rgba(0, 90, 255, 0.08);
}
.trn-price-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  padding: 0.35rem 1rem;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(0, 120, 255, 0.45);
  white-space: nowrap;
}
.trn-price-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
}
.trn-price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.6rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.trn-price-amount span { font-size: 2rem; color: var(--blue-glow); margin-left: 0.1rem; }
.trn-price-feats { list-style: none; display: grid; gap: 0.7rem; }
.trn-price-feats li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--gray-light);
  font-size: 0.96rem;
  line-height: 1.5;
}
.trn-price-feats li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-glow);
  font-weight: 700;
}

/* FORMULARIO / BROWSER CHROME */
.trn-form-wrap { max-width: 760px; margin: 0 auto 2.4rem; }
.trn-browser {
  background: var(--card);
  border: 1px solid var(--trn-stroke);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.trn-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--trn-stroke-soft);
}
.trn-browser-dot { width: 12px; height: 12px; border-radius: 50%; flex: 0 0 auto; }
.trn-browser-dot--r { background: #ff5f57; }
.trn-browser-dot--y { background: #febc2e; }
.trn-browser-dot--g { background: #28c840; }
.trn-browser-url {
  margin-left: 0.8rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trn-browser-body { position: relative; min-height: 420px; background: #fff; }
.trn-form-iframe { display: block; width: 100%; min-height: 620px; border: 0; }
/* Si el iframe no tiene src (vacío) mostramos el aviso de respaldo */
.trn-form-iframe[src=""], .trn-form-iframe:not([src]) { min-height: 0; height: 0; }
.trn-form-fallback {
  display: none;
  padding: 2.6rem 1.5rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.98rem;
}
.trn-form-iframe[src=""] + .trn-form-fallback,
.trn-form-iframe:not([src]) + .trn-form-fallback { display: block; }

/* MÓVIL: "pantallita" compacta con scroll propio. La caja mide ~72vh y se
   desplaza por dentro; el iframe ocupa el alto completo del formulario
   (~2205px a 390px). El translateZ fuerza una capa de composición y evita el
   bug de iOS por el que un iframe dentro de un contenedor con scroll se queda
   en blanco. (El bloqueo previo era del CSP del servidor, ya corregido.) */
@media (max-width: 768px) {
  .trn-browser-body {
    height: 56vh;
    max-height: 440px;
    min-height: 320px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .trn-form-iframe {
    min-height: 0;
    height: 2450px;
    transform: translateZ(0);
    will-change: transform;
  }
}

/* Divisor */
.trn-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto 1.6rem;
  color: var(--gray);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.trn-or::before, .trn-or::after { content: ''; flex: 1; height: 1px; background: var(--trn-stroke); }

.trn-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.trn-notice .trn-dot { background: var(--orange-light); box-shadow: 0 0 10px var(--orange-light); }

/* ======================= ANIMACIÓN COMÚN ======================= */
@keyframes trnFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 900px) {
  .trn-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trn-after-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .trn-after-desc { max-width: none; }
  .trn-timeline::before { left: 74px; }
  .trn-tl-item { grid-template-columns: 60px 28px 1fr; }
}

@media (max-width: 600px) {
  .trn-hero { padding-top: 120px; }
  .trn-cat-grid { grid-template-columns: 1fr; }
  .trn-incl-grid { grid-template-columns: 1fr; }
  .trn-incl:nth-child(odd)::after { display: none; }
  .trn-incl:nth-last-child(2)::before { display: block; }
  .trn-cd-unit { min-width: 70px; padding: 0.85rem 0.4rem 0.7rem; flex: 1 1 40%; }
  .trn-countdown { gap: 0.6rem; }
  .trn-stats { max-width: 320px; }
  .trn-stats li { flex: 1 1 33%; border-bottom: 1px solid var(--trn-stroke-soft); }
  .trn-stats li:nth-child(3) { border-right: none; }
  .trn-stats li:nth-child(4), .trn-stats li:nth-child(5) { flex-basis: 50%; border-bottom: none; }
  .trn-stats li:nth-child(5) { border-right: none; }
  .trn-price-grid { grid-template-columns: 1fr; }
  .trn-btn { width: 100%; max-width: 360px; }
  .trn-hero-ctas { width: 100%; }
  .trn-timeline::before { left: 64px; }
  .trn-tl-item { grid-template-columns: 52px 24px 1fr; gap: 0.4rem; }
  .trn-tl-time { font-size: 1.2rem; }
  .trn-prizes { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* Respeta reduce-motion (el global ya neutraliza, reforzamos aquí) */
@media (prefers-reduced-motion: reduce) {
  .trn-aurora, .trn-beams, .trn-glow-line, .trn-title::after, .trn-eq span,
  .trn-hero-particles, .trn-incl-panel::before, .trn-tl-dot::after,
  .trn-dot, .trn-btn--primary::after { animation: none !important; }
  .trn-eq span { transform: scaleY(0.6); }
  .trn-hero-particles { display: none; }
  .trn-tl-dot { transform: none !important; opacity: 1 !important; }
  .trn-reveal { opacity: 1 !important; transform: none !important; }
}
