:root {
  --accent:      #ff18ff;
  --accent-glow: rgba(255, 24, 255, 0.45);
  --pink:        #e57ce2;
  --pink-glow:   rgba(229, 124, 226, 0.4);
  --cyan:        #009ee2;
  --cyan-glow:   rgba(0, 158, 226, 0.45);
  --gold:        #ffd84d;
  --gold-glow:   rgba(255, 216, 77, 0.45);
  --blue:        #3a8cff;
  --blue-light:  #3a8cff;
  --blue-dark:   #2231bb;
  --blue-glow:   rgba(58, 140, 255, 0.45);
  --purple:      #a024e6;
  --dark:        #02040a;
  --dark2:       #050a18;
  --dark3:       #0a1225;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ════════════════════════════════════════
   LANG SWITCHER
════════════════════════════════════════ */
.lang-bar {
  position: fixed; top: 16px; right: 20px; z-index: 200;
  display: flex; gap: 6px;
}
.lang-btn {
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 20px; cursor: pointer;
  border: 0.5px solid rgba(255, 216, 77, 0.2);
  background: rgba(2, 8, 16, 0.65); color: rgba(255, 216, 77, 0.45);
  backdrop-filter: blur(10px); transition: all 0.2s;
}
.lang-btn:hover  { border-color: rgba(255, 216, 77, 0.5); color: rgba(255, 216, 77, 0.9); }
.lang-btn.active { background: rgba(255, 216, 77, 0.12); border-color: rgba(255, 216, 77, 0.5); color: var(--gold); }

[data-lang]        { display: none !important; }
[data-lang].on     { display: block !important; }
span[data-lang].on { display: inline !important; }
p[data-lang].on    { display: block !important; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  background: radial-gradient(ellipse at 50% 100%, #0a1a3a 0%, #050d1f 40%, #000308 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}

/* ── Focos blancos superiores ── */
.sources {
  position: absolute; top: 3%; width: 100%;
  display: flex; justify-content: space-between;
  padding: 0 4%; pointer-events: none; z-index: 20;
}
.source {
  width: 18px; height: 18px; border-radius: 50%; background: white;
  box-shadow: 0 0 12px 6px rgba(120,200,255,.9), 0 0 30px 14px rgba(60,140,255,.5);
  animation: sourceGlow var(--gs, 2s) ease-in-out infinite;
  animation-delay: var(--gd, 0s);
}
@keyframes sourceGlow {
  0%, 100% { box-shadow: 0 0 12px 6px rgba(120,200,255,.9), 0 0 30px 14px rgba(60,140,255,.5); transform: scale(1); }
  50%       { box-shadow: 0 0 20px 10px rgba(180,230,255,1), 0 0 50px 24px rgba(80,160,255,.7); transform: scale(1.2); }
}

/* ── Panels LED ── */
.panels {
  position: absolute; top: 8%; width: 100%;
  display: flex; justify-content: center; gap: 20px;
  pointer-events: none; opacity: 0.5; z-index: 1;
}
.panel {
  display: grid;
  grid-template-columns: repeat(10, 12px);
  grid-template-rows: repeat(10, 12px);
  gap: 10px;
  animation: panelFlicker var(--dur, 2s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.led {
  width: 100%; height: 100%;
  border-radius: 50%; background: white;
  animation: ledBlink var(--blink, 1.8s) ease-in-out infinite;
  animation-delay: var(--bd, 0s);
}
@keyframes panelFlicker {
  0%, 100% { opacity: .99; }
  30%       { opacity: .45; }
  60%       { opacity: 1;   }
  80%       { opacity: .65; }
}
@keyframes ledBlink {
  0%, 100% { opacity: .9; }
  50%       { opacity: .3; }
}

/* ════════════════════════════════════════
   BEAMS
════════════════════════════════════════ */
.spotlights {
  position: absolute; top: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}
.beam {
  position: absolute; top: 0; width: 260px; height: 85%;
  transform-origin: top center; opacity: .58;
}

/* Exteriores — magenta */
.beam-1 {
  left: -2%;
  background: linear-gradient(180deg,
    rgba(255,24,255,.92) 0%,
    rgba(255,24,255,.28) 40%,
    rgba(255,24,255,.08) 70%,
    transparent 100%);
  clip-path: polygon(38% 0%, 62% 0%, 100% 100%, 0% 100%);
  animation: swayLeft 3.2s ease-in-out infinite;
}
.beam-7 {
  right: -2%;
  background: linear-gradient(180deg,
    rgba(255,24,255,.92) 0%,
    rgba(255,24,255,.28) 40%,
    rgba(255,24,255,.08) 70%,
    transparent 100%);
  clip-path: polygon(38% 0%, 62% 0%, 100% 100%, 0% 100%);
  animation: swayRight 3.2s ease-in-out infinite reverse;
  animation-delay: -.6s;
}

.beam-2 {
  left: 13%;
  background: linear-gradient(180deg,
    rgba(229,124,226,.88) 0%,
    rgba(229,124,226,.22) 45%,
    rgba(229,124,226,.05) 75%,
    transparent 100%);
  clip-path: polygon(36% 0%, 64% 0%, 100% 100%, 0% 100%);
  animation: swayLeft 3.8s ease-in-out infinite reverse;
  animation-delay: -1.1s;
}
.beam-6 {
  right: 13%;
  background: linear-gradient(180deg,
    rgba(229,124,226,.88) 0%,
    rgba(229,124,226,.22) 45%,
    rgba(229,124,226,.05) 75%,
    transparent 100%);
  clip-path: polygon(36% 0%, 64% 0%, 100% 100%, 0% 100%);
  animation: swayRight 3.8s ease-in-out infinite;
  animation-delay: -2.2s;
}

.beam-3 {
  left: 27%;
  background: linear-gradient(180deg,
    rgba(0,158,226,.90) 0%,
    rgba(0,158,226,.24) 45%,
    rgba(0,158,226,.06) 75%,
    transparent 100%);
  clip-path: polygon(34% 0%, 66% 0%, 96% 100%, 4% 100%);
  animation: swayLeft 3.5s ease-in-out infinite;
  animation-delay: -.5s;
  
}
.beam-5 {
  right: 27%;
  background: linear-gradient(180deg,
    rgba(0,158,226,.90) 0%,
    rgba(0,158,226,.24) 45%,
    rgba(0,158,226,.06) 75%,
    transparent 100%);
  clip-path: polygon(34% 0%, 66% 0%, 96% 100%, 4% 100%);
  animation: swayRight 3.5s ease-in-out infinite reverse;
  animation-delay: -1.6s;
}

.beam-4 {
  left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg,
     rgba(0,158,226,.90) 0%,
    rgba(0,158,226,.24) 45%,
    rgba(0,158,226,.06) 75%,
    transparent 100%);
  clip-path: polygon(31% 0%, 69% 0%, 94% 100%, 6% 100%);
  animation: swayCenter 2.8s ease-in-out infinite;
}

.beam-8 {
  left: 6%;
  background: linear-gradient(180deg,
     rgba(0,158,226,.90) 0%,
    rgba(0,158,226,.24) 45%,
    rgba(0,158,226,.06) 75%,
    transparent 100%);
  clip-path: polygon(37% 0%, 63% 0%, 98% 100%, 2% 100%);
  animation: swayLeft 4.1s ease-in-out infinite;
  animation-delay: -2.0s;
}
.beam-9 {
  left: 40%;
  background: linear-gradient(180deg,
    rgba(229,124,226,.82) 0%,
    rgba(229,124,226,.20) 45%,
    rgba(229,124,226,.04) 75%,
    transparent 100%);
  clip-path: polygon(35% 0%, 65% 0%, 95% 100%, 5% 100%);
  animation: swayCenter 3.6s ease-in-out infinite reverse;
  animation-delay: -0.8s;
  display: none;
}
.beam-10 {
  right: 40%;
  background: linear-gradient(180deg,
    rgba(255,24,255,.80) 0%,
    rgba(255,24,255,.20) 45%,
    rgba(255,24,255,.04) 75%,
    transparent 100%);
  clip-path: polygon(35% 0%, 65% 0%, 95% 100%, 5% 100%);
  animation: swayCenter 3.9s ease-in-out infinite;
  animation-delay: -1.4s;
  display: none;
}
.beam-11 {
  right: 6%;
  background: linear-gradient(180deg,
     rgba(0,158,226,.90) 0%,
    rgba(0,158,226,.24) 45%,
    rgba(0,158,226,.06) 75%,
    transparent 100%);
  clip-path: polygon(37% 0%, 63% 0%, 98% 100%, 2% 100%);
  animation: swayRight 4.1s ease-in-out infinite reverse;
  animation-delay: -3.0s;
}

@keyframes swayLeft {
  0%, 100% { transform: rotate(-6deg); }
  50%       { transform: rotate(5deg);  }
}
@keyframes swayRight {
  0%, 100% { transform: rotate(6deg);  }
  50%       { transform: rotate(-5deg); }
}
@keyframes swayCenter {
  0%, 100% { transform: translateX(-50%) rotate(-4deg); }
  50%       { transform: translateX(-50%) rotate(4deg);  }
}

/* ── Reflejo en el piso ── */
.floor-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80%; height: 160px;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(0,158,226,.28) 0%,
    rgba(255,24,255,.14) 30%,
    rgba(229,124,226,.07) 55%,
    transparent 75%
  );
  animation: floorPulse 3.2s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
@keyframes floorPulse {
  0%, 100% { opacity: .55; transform: translateX(-50%) scaleX(1);    }
  50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.1);  }
}

/* ── Línea de escenario ── */
.stage-line {
  position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,158,226,.55),
    rgba(255,216,77,.45),
    rgba(255,24,255,.4),
    rgba(0,158,226,.55),
    transparent
  );
  animation: stageLine 4s ease-in-out infinite; z-index: 3;
}
@keyframes stageLine { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

/* ── Reflejo  bajo el logo ── */
.stage-reflect {
  position: absolute; bottom: 17.5%; left: 50%; transform: translateX(-50%);
  width: 40%; height: 80px;
  background: linear-gradient(180deg, rgba(0,158,226,.08) 0%, transparent 100%);
  pointer-events: none; z-index: 2;
}

/* ── Partículas ── */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 8; }
.particle {
  position: absolute; width: 2px; height: 2px;
  border-radius: 50%;
  animation: floatUp var(--ft, 6s) linear infinite;
  animation-delay: var(--fd, 0s);
  left: var(--fl, 50%); bottom: -5px;
}
.particle.p-cyan    { background: rgba(0,158,226,.80);   box-shadow: 0 0 4px rgba(0,158,226,.5); }
.particle.p-magenta { background: rgba(255,24,255,.70);  box-shadow: 0 0 4px rgba(255,24,255,.4); }
.particle.p-gold    { background: rgba(255,216,77,.80);  box-shadow: 0 0 4px rgba(255,216,77,.5); }
.particle.p-pink    { background: rgba(229,124,226,.70); box-shadow: 0 0 3px rgba(229,124,226,.4); }
.particle.p-blue    { background: rgba(34,49,187,.70);   box-shadow: 0 0 4px rgba(34,49,187,.4); }
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .45; }
  100% { transform: translateY(-80vh) translateX(var(--fx, 30px)); opacity: 0; }
}

/* ── Estrellas de fondo ── */
.stars { position: absolute; inset: 0; pointer-events: none; }
.star {
  position: absolute; width: 2px; height: 2px;
  background: rgba(200, 230, 255, 0.6); border-radius: 50%;
  animation: twinkle var(--ts, 3s) ease-in-out infinite;
  animation-delay: var(--td, 0s);
}
@keyframes twinkle { 0%, 100% { opacity: .15; } 50% { opacity: .85; } }

/* ── Sparks dorados ── */
.spark {
  position: absolute; width: 3px; height: 3px;
  background: rgba(255, 216, 77, 0.9); border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(255, 200, 30, 0.5);
  animation: sparkFloat var(--sf, 5s) ease-in-out infinite;
  animation-delay: var(--sd, 0s);
  left: var(--sl, 50%); bottom: 20%; z-index: 8;
}
@keyframes sparkFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: .55; }
  100% { transform: translateY(-40vh) scale(.3); opacity: 0; }
}

/* ── Contenido hero ── */
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 20px;
  animation: fadeUp 1.2s ease-out both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero logo imagen ── */
.hero-img img {
  width: 15%; max-width: 500px; height: auto;
  filter: drop-shadow(0 0 20px rgba(100, 180, 255, 0.6))
          drop-shadow(0 0 40px rgba(60, 140, 255, 0.4));
}

/* ── Título como imagen ── */
.title-img {
  margin: 10px auto 25px;
  animation: fadeUp 1s ease-out 0.4s both;
  max-width: 90%;
}
.title-img img {
  width: 75%; max-width: 650px; height: auto;
  display: block; margin: 0 auto;
  filter: drop-shadow(0 0 15px rgba(255, 216, 77, 0.35))
          drop-shadow(0 0 30px rgba(100, 180, 255, 0.2));
}

.subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 2vw, 17px);
  font-weight: 300; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(180, 220, 255, 0.7); margin-bottom: 25px;
  animation: fadeUp 1s ease-out 0.6s both;
}

/* ── CTA buttons ── */
.cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease-out 0.8s both;
}
.btn-primary {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #000;
  background: linear-gradient(135deg, #ffd84d, #ffb020);
  border: none; padding: 16px 40px; border-radius: 50px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(255, 180, 30, 0.4);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(255, 180, 30, 0.7); }

.btn-secondary {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(0, 158, 226, 0.95);
  background: rgba(0, 158, 226, 0.06);
  border: 1px solid rgba(0, 158, 226, 0.35);
  padding: 16px 40px; border-radius: 50px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
}
.btn-secondary:hover {
  transform: scale(1.05);
  border-color: rgba(0, 158, 226, 0.7);
  box-shadow: 0 0 30px rgba(0, 158, 226, 0.35);
  background: rgba(0, 158, 226, 0.12);
  color: #fff;
}

/* ── Fecha y scroll ── */
.date-strip {
  position: relative;          /* ← ya no es absolute */
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;            /* ← espacio debajo de los botones */
  z-index: 10;
  animation: fadeUp 1s ease-out 1s both;
}
.date-strip .line       { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 216, 77, 0.5)); }
.date-strip .line.right { background: linear-gradient(90deg, rgba(255, 216, 77, 0.5), transparent); }
.date-text { font-size: 11px; letter-spacing: 4px; font-weight: 400; color: rgba(255, 210, 80, 0.7); text-transform: uppercase; }

.scroll-hint {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .45;
  animation: fadeUp 1s ease-out 1.2s both;
}
.scroll-hint span { font-size: 9px; letter-spacing: 3px; color: rgba(180, 220, 255, 0.7); text-transform: uppercase; }
.scroll-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0, 158, 226, 0.7); animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ════════════════════════════════════════
   SECCIONES — COMÚN
════════════════════════════════════════ */
section { padding: 100px 48px; position: relative; }

.section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(255, 216, 77, 0.3), transparent);
  max-width: 120px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 20px;
}
.section-body {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(200, 220, 255, 0.7); max-width: 620px;
}
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 24, 255, 0.1),
    rgba(0, 158, 226, 0.15),
    rgba(255, 216, 77, 0.1),
    transparent
  );
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
#sobre { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-eagle {
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 0 40px rgba(0, 158, 226, 0.25))
          drop-shadow(0 0 80px rgba(255, 24, 255, 0.1));
  animation: eagleFloat 4s ease-in-out infinite;
}
.about-eagle img { width: 90%; }
@keyframes eagleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.about-flags { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.flag-badge {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 20px;
  background: rgba(0, 158, 226, 0.07);
  border: 1px solid rgba(0, 158, 226, 0.2);
  color: rgba(0, 158, 226, 0.85);
}
.flag-badge:nth-child(even) {
  background: rgba(255, 24, 255, 0.06);
  border-color: rgba(255, 24, 255, 0.18);
  color: rgba(229, 124, 226, 0.85);
}

/* ════════════════════════════════════════
   CATEGORÍAS
════════════════════════════════════════ */
#categorias { background: var(--dark2); }
.cats-header  { max-width: 1100px; margin: 0 auto 60px; }
.cats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.cat-card {
  border: 0.5px solid rgba(0, 158, 226, 0.12);
  border-radius: 16px; padding: 32px 28px;
  background: rgba(0, 158, 226, 0.03);
  transition: border-color .3s, background .3s, transform .3s;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 158, 226, 0.5), transparent);
  opacity: 0; transition: opacity .3s;
}
.cat-card:nth-child(even) {
  border-color: rgba(255, 24, 255, 0.1);
  background: rgba(255, 24, 255, 0.025);
}
.cat-card:nth-child(even)::before {
  background: linear-gradient(90deg, transparent, rgba(255, 24, 255, 0.45), transparent);
}
.cat-card:hover {
  border-color: rgba(0, 158, 226, 0.35);
  background: rgba(0, 158, 226, 0.07);
  transform: translateY(-4px);
}
.cat-card:nth-child(even):hover {
  border-color: rgba(255, 24, 255, 0.28);
  background: rgba(255, 24, 255, 0.06);
}
.cat-card:hover::before { opacity: 1; }

.cat-icon {
  font-size: 28px; margin-bottom: 16px; display: block;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 158, 226, 0.6), 0 0 20px rgba(0, 158, 226, 0.3);
}
.cat-card:nth-child(even) .cat-icon {
  color: var(--pink);
  text-shadow: 0 0 10px rgba(229, 124, 226, 0.6), 0 0 20px rgba(229, 124, 226, 0.3);
}
.cat-card:hover .cat-icon {
  color: #fff;
  text-shadow: 0 0 12px rgba(0, 158, 226, 0.9), 0 0 30px rgba(0, 158, 226, 0.5);
}
.cat-card:nth-child(even):hover .cat-icon {
  text-shadow: 0 0 12px rgba(255, 24, 255, 0.9), 0 0 30px rgba(255, 24, 255, 0.5);
}

.cat-name  { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cat-desc  { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(180, 210, 255, 0.6); }

.levels-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.level-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.level-tag:nth-child(3n+1) {
  background: rgba(0, 158, 226, 0.1); border: 1px solid rgba(0, 158, 226, 0.25);
  color: rgba(0, 158, 226, 0.9);
}
.level-tag:nth-child(3n+2) {
  background: rgba(229, 124, 226, 0.08); border: 1px solid rgba(229, 124, 226, 0.22);
  color: rgba(229, 124, 226, 0.9);
}
.level-tag:nth-child(3n) {
  background: rgba(255, 24, 255, 0.07); border: 1px solid rgba(255, 24, 255, 0.2);
  color: rgba(255, 24, 255, 0.85);
}

/* ════════════════════════════════════════
   TIMELINE
════════════════════════════════════════ */
#timeline { background: linear-gradient(180deg, var(--dark2) 0%, var(--dark3) 100%); }
.timeline-header { max-width: 1100px; margin: 0 auto 70px; }

.timeline-track { max-width: 900px; margin: 0 auto; position: relative; }
.timeline-track::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg,
    rgba(255, 216, 77, 0.3),
    rgba(0, 158, 226, 0.4),
    rgba(255, 24, 255, 0.3),
    rgba(255, 216, 77, 0.1)
  );
  transform: translateX(-50%);
}
.tl-item { display: grid; grid-template-columns: 1fr 60px 1fr; align-items: start; margin-bottom: 56px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-left  { text-align: right; padding-right: 32px; padding-top: 4px; }
.tl-right { padding-left: 32px; padding-top: 4px; }
.tl-dot-wrap { display: flex; align-items: flex-start; justify-content: center; padding-top: 4px; }

.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 16px 4px var(--gold-glow);
  flex-shrink: 0; position: relative; z-index: 1;
}
.tl-dot.blue   { background: var(--cyan);   box-shadow: 0 0 16px 4px var(--cyan-glow); }
.tl-dot.pink   { background: var(--pink);   box-shadow: 0 0 16px 4px var(--pink-glow); }
.tl-dot.accent { background: var(--accent); box-shadow: 0 0 16px 4px var(--accent-glow); }
.tl-dot.big    { width: 20px; height: 20px; box-shadow: 0 0 24px 8px var(--gold-glow); margin-top: -3px; }

.tl-card {
  background: rgba(255, 216, 77, 0.04); border: 0.5px solid rgba(255, 216, 77, 0.15);
  border-radius: 12px; padding: 22px 24px;
  transition: border-color .3s, background .3s;
}
.tl-card:hover { border-color: rgba(255, 216, 77, 0.3); background: rgba(255, 216, 77, 0.07); }

.tl-card.blue-card {
  background: rgba(0, 158, 226, 0.04); border-color: rgba(0, 158, 226, 0.18);
}
.tl-card.blue-card:hover { border-color: rgba(0, 158, 226, 0.4); background: rgba(0, 158, 226, 0.09); }

.tl-card.pink-card {
  background: rgba(229, 124, 226, 0.04); border-color: rgba(229, 124, 226, 0.15);
}
.tl-card.pink-card:hover { border-color: rgba(229, 124, 226, 0.35); background: rgba(229, 124, 226, 0.08); }

.tl-card.final-card {
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.08), rgba(255, 140, 30, 0.06));
  border-color: rgba(255, 216, 77, 0.35);
}

.tl-date { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tl-card.blue-card .tl-date { color: var(--cyan); }
.tl-card.pink-card .tl-date { color: var(--pink); }

.tl-event  { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.tl-detail { font-size: 12px; font-weight: 300; line-height: 1.6; color: rgba(180, 210, 255, 0.6); }
.tl-badge  {
  display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-top: 10px;
  background: rgba(255, 216, 77, 0.12); border: 1px solid rgba(255, 216, 77, 0.25);
  color: rgba(255, 216, 77, 0.85);
}
.tl-badge.cyan-badge {
  background: rgba(0, 158, 226, 0.1); border-color: rgba(0, 158, 226, 0.25);
  color: rgba(0, 158, 226, 0.9);
}

/* ════════════════════════════════════════
   FINALISTAS
════════════════════════════════════════ */
#finalistas { background: var(--dark3); }
.finalists-header { max-width: 1100px; margin: 0 auto 60px; }

.rounds-tabs { display: flex; gap: 8px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto 48px; }
.round-tab {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 22px; border-radius: 30px; cursor: pointer;
  background: rgba(255, 255, 255, 0.04); border: 0.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(180, 210, 255, 0.6); transition: all .2s;
}
.round-tab.active {
  background: rgba(0, 158, 226, 0.12); border-color: rgba(0, 158, 226, 0.4);
  color: var(--cyan); box-shadow: 0 0 16px rgba(0, 158, 226, 0.2);
}
.round-tab:hover:not(.active) { border-color: rgba(255, 255, 255, 0.2); color: rgba(200, 220, 255, 0.8); }

#finalists-display { max-width: 1100px; margin: 0 auto; }
.finalists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

.finalist-card {
  border: 0.5px solid rgba(255, 255, 255, 0.08); border-radius: 16px;
  padding: 28px 20px; text-align: center;
  background: rgba(255, 255, 255, 0.02); transition: all .3s;
}
.finalist-card:hover { transform: translateY(-6px); border-color: rgba(0, 158, 226, 0.3); box-shadow: 0 0 30px rgba(0, 158, 226, 0.1); }
.finalist-card:nth-child(even):hover { border-color: rgba(255, 24, 255, 0.25); box-shadow: 0 0 30px rgba(255, 24, 255, 0.08); }

.finalist-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #0a1628, #1a2a4a);
  border: 1.5px solid rgba(0, 158, 226, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 14px;
  box-shadow: 0 0 20px rgba(0, 158, 226, 0.12);
}
.finalist-card:nth-child(even) .finalist-avatar {
  border-color: rgba(255, 24, 255, 0.25);
  box-shadow: 0 0 20px rgba(255, 24, 255, 0.1);
}

.finalist-name  { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.finalist-cat   { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(0, 158, 226, 0.8); margin-bottom: 10px; }
.finalist-level {
  font-size: 10px; padding: 3px 12px; border-radius: 20px;
  background: rgba(255, 216, 77, 0.08); border: 1px solid rgba(255, 216, 77, 0.18);
  color: rgba(255, 216, 77, 0.75); letter-spacing: 1px; font-weight: 500;
}

.coming-soon-banner {
  text-align: center; padding: 60px 20px;
  border: 0.5px dashed rgba(0, 158, 226, 0.18); border-radius: 20px;
}
.cs-icon { font-size: 48px; margin-bottom: 16px; opacity: .5; }
.cs-text { font-family: 'Playfair Display', serif; font-size: 24px; color: rgba(255, 255, 255, 0.3); margin-bottom: 8px; }
.cs-sub  { font-size: 12px; letter-spacing: 2px; color: rgba(255, 255, 255, 0.15); text-transform: uppercase; }

/* ════════════════════════════════════════
   INSCRIPCIÓN
════════════════════════════════════════ */
#inscripcion {
  background: linear-gradient(180deg, var(--dark3) 0%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
#inscripcion::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(0, 158, 226, 0.04) 0%,
    rgba(255, 24, 255, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.inscripcion-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.inscripcion-inner .section-label  { justify-content: center; }
.inscripcion-inner .section-label::after { display: none; }
.inscripcion-inner .section-body   { margin: 0 auto; text-align: center; }

.inscripcion-details {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 32px; margin: 36px 0 52px;
}
.detail-item  { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.detail-label { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(180, 210, 255, 0.35); }
.detail-val   { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--gold); }

.btn-form {
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: #000;
  background: linear-gradient(135deg, #ffd84d, #ffb020);
  border: none; padding: 22px 60px; border-radius: 50px;
  cursor: pointer; display: inline-block; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 40px rgba(255, 180, 30, 0.35); margin-bottom: 16px;
}
.btn-form:hover { transform: scale(1.04); box-shadow: 0 0 60px rgba(255, 180, 30, 0.55); }
.form-note { font-size: 11px; color: rgba(255, 255, 255, 0.18); letter-spacing: 1px; margin-top: 4px; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  padding: 48px;
  border-top: 0.5px solid rgba(255, 216, 77, 0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; background: var(--dark);
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 5%,
    rgba(255, 24, 255, 0.2) 20%,
    rgba(0, 158, 226, 0.3) 40%,
    rgba(255, 216, 77, 0.2) 60%,
    rgba(229, 124, 226, 0.2) 80%,
    transparent 95%
  );
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--gold); }
.footer-copy { font-size: 11px; color: rgba(255, 255, 255, 0.2); letter-spacing: 1px; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  section { padding: 80px 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .timeline-track::before { left: 20px; transform: none; }
  
  /* Cada item: dot | contenido (ocupa toda la derecha) */
  .tl-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
  }

  /* El dot siempre en columna 1 */
  .tl-dot-wrap {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    padding-left: 3px;
  }

  /* tl-right en columna 2, fila 1 */
  .tl-right {
    grid-column: 2;
    grid-row: 1;
    padding-left: 20px;
  }

  /* tl-left: en lugar de ocultarlo, lo movemos a columna 2 también */
  .tl-left {
    display: block;           /* ya no se oculta */
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding-right: 0;
    padding-left: 20px;
    padding-top: 4px;
  }

  /* Si un item tiene ambas columnas con contenido (no debería ocurrir,
     pero por si acaso), apilamos verticalmente */
  .tl-item:has(.tl-left .tl-card):has(.tl-right .tl-card) .tl-right {
    grid-row: 2;
  }

  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .title-img img { max-width: 400px; }
  .beam { width: 180px; }
}

@media (max-width: 600px) {
  section { padding: 70px 16px; }
  .cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  .panel {
    grid-template-columns: repeat(10, 8px);
    grid-template-rows: repeat(5, 8px);
    gap: 4px;
  }
  .led { width: 8px; height: 8px; }
  .panels { gap: 10px; }
  .rounds-tabs { gap: 6px; }
  .round-tab { font-size: 10px; padding: 8px 14px; }
  .inscripcion-details { gap: 20px; }
  .btn-form { padding: 18px 32px; font-size: 12px; }
  footer { padding: 32px 16px; }
  .lang-bar { top: 10px; right: 10px; }
  .lang-btn { padding: 5px 9px; font-size: 9px; }
  .hero-img img { width: 30%; }
  .beam { width: 140px; opacity: .45; }

.beam-9, .beam-10 { display: none; }
}