/* ===== RESET & ROOT ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold-1: #f5c842;
  --gold-2: #e0a020;
  --gold-3: #c47d0a;
  --gold-light: #fde9a2;
  --magenta-1: #d400a0;
  --magenta-2: #a0007a;
  --magenta-3: #7a005a;
  --magenta-light: #ffd6f5;
  --dark-1: #0a0a0f;
  --dark-2: #0f0f1a;
  --dark-3: #15152a;
  --dark-4: #1c1c35;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, .55);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
  --radius-lg: 24px;
  --radius-xl: 36px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark-1);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== PARTICLES ===== */
#particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

/* ===== FLOATING STARS ===== */
.floating-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fstar {
  position: absolute;
  color: var(--gold-1);
  font-size: 1rem;
  animation: fstarDrift linear infinite;
  opacity: 0;
}

@keyframes fstarDrift {
  0% {
    transform: translateY(0) rotate(0deg) scale(0);
    opacity: 0;
  }

  15% {
    opacity: 0.7;
    transform: scale(1);
  }

  85% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-110vh) rotate(360deg) scale(.5);
    opacity: 0;
  }
}

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

/* ===== TYPOGRAPHY HELPERS ===== */
.gradient-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3), var(--gold-1));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.gradient-magenta {
  background: linear-gradient(135deg, #ff2ec4, var(--magenta-1), var(--magenta-2), #ff2ec4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ===== ANIMATIONS ===== */
.animate-fadeup {
  opacity: 0;
  transform: translateY(30px);
}

.animate-fadeup.in-view {
  animation: fadeUp .6s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
}

.animate-slide-left.in-view,
.animate-slide-right.in-view {
  animation: slideIn .8s ease both;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeup.in-view-scroll {
  animation: fadeUp .7s ease both;
}

/* Intersection Observer driven */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .15);
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--dark-1);
  box-shadow: 0 4px 20px rgba(245, 200, 66, .35);
}

.btn-gold:hover {
  box-shadow: 0 8px 40px rgba(245, 200, 66, .6);
}

.btn-magenta {
  background: linear-gradient(135deg, #ff2ec4, var(--magenta-1));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 0, 160, .35);
}

.btn-magenta:hover {
  box-shadow: 0 8px 40px rgba(212, 0, 160, .6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .4);
}

.btn-outline:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}

/* ===== HERO CTA BUTTON ===== */
.btn-hero-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), var(--gold-3));
  color: var(--dark-1) !important;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(245, 200, 66, 0.4), 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  z-index: 10;
  border: none;
}

.btn-hero-gold:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 0 40px rgba(245, 200, 66, 0.8), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.btn-hero-gold .btn-arrow {
  transition: transform 0.3s;
  font-size: 1.5rem;
}

.btn-hero-gold:hover .btn-arrow {
  transform: translateX(8px);
}

.btn-hero-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: all 0.6s;
}

.btn-hero-gold:hover::before {
  left: 100%;
}

.btn-hero-gold .btn-sparkle {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, white 0%, transparent 80%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: btnSparkle 3s infinite;
}

@keyframes btnSparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.5);
  }
}

@media (max-width: 768px) {
  .btn-hero-gold {
    font-size: 1.4rem;
    padding: 14px 32px;
    width: 90%;
  }
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-label.center {
  justify-content: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot.gold {
  background: var(--gold-1);
  box-shadow: 0 0 8px var(--gold-1);
}

.dot.magenta {
  background: var(--magenta-1);
  box-shadow: 0 0 8px var(--magenta-1);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 2px;
}

.section-title.center {
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background .4s, box-shadow .4s, padding .4s;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, .5);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(245, 200, 66, .45));
  transition: var(--transition);
}

.nav-logo:hover {
  filter: drop-shadow(0 0 20px rgba(245, 200, 66, .8));
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--magenta-1));
  transition: width .3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--dark-1) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(245, 200, 66, 0.3);
  margin-left: 10px;
}

.btn-nav-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 200, 66, 0.5);
  color: var(--dark-1) !important;
}

.btn-nav-gold::after {
  display: none !important;
  /* Quitar la línea de hover normal */
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, .97);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  /* Espacio mínimo para el menú */
  text-align: center;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(180, 0, 130, .6) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(245, 200, 66, .18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 85% 70%, rgba(100, 0, 200, .25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(50, 0, 80, .8) 0%, transparent 70%),
    var(--dark-1);
  z-index: 1;
}

/* Glitter canvas */
#glitter-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Fireworks canvas — sits above glitter, below content */
#fireworks-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* Decorative elements */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.deco-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(245, 200, 66, .3), transparent);
  height: 1px;
  width: 60%;
  animation: decoLineSweep 6s ease-in-out infinite;
}

.deco-line-1 {
  top: 25%;
  left: -10%;
  animation-delay: 0s;
  opacity: 0.6;
}

.deco-line-2 {
  top: 72%;
  right: -10%;
  left: auto;
  background: linear-gradient(90deg, transparent, rgba(212, 0, 160, .3), transparent);
  animation-delay: 3s;
  opacity: 0.5;
}

@keyframes decoLineSweep {

  0%,
  100% {
    transform: scaleX(0) translateX(-20px);
    opacity: 0;
  }

  30% {
    transform: scaleX(1) translateX(0);
    opacity: 0.7;
  }

  70% {
    transform: scaleX(1) translateX(0);
    opacity: 0.5;
  }

  100% {
    transform: scaleX(0) translateX(20px);
    opacity: 0;
  }
}

.deco-orb {
  position: absolute;
  border-radius: 50%;
  animation: orbFloat ease-in-out infinite;
}

.deco-orb-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(212, 0, 160, .15) 0%, transparent 70%);
  animation-duration: 8s;
  animation-delay: 0s;
}

.deco-orb-2 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: -60px;
  background: radial-gradient(circle, rgba(245, 200, 66, .12) 0%, transparent 70%);
  animation-duration: 10s;
  animation-delay: -3s;
}

.deco-orb-3 {
  width: 160px;
  height: 160px;
  bottom: 15%;
  left: 5%;
  background: radial-gradient(circle, rgba(180, 0, 220, .15) 0%, transparent 70%);
  animation-duration: 7s;
  animation-delay: -5s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-15px, 15px) scale(.95);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  isolation: isolate;
  max-width: 900px;
  padding: 0 24px;
  margin-top: -60px;
  /* Subimos agresivamente el bloque */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(25, 25, 35, 0.85);
  /* Sólido más opaco */
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .8rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 10px;
  box-shadow: 0 0 20px rgba(212, 0, 160, .15);
}

.star-icon {
  color: var(--gold-1);
  font-size: 1rem;
  animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.3);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-1);
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 2vh, 1.1rem);
  /* Adaptativo */
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2vh;
  /* Más espacio abajo */
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(245, 200, 66, 0.3);
}

.hero-location svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-1);
}

.hero-logo {
  height: 45vh;
  /* Mantengo tu preferencia de tamaño */
  width: auto;
  margin-bottom: 0;
  margin-top: 10px;
  object-fit: contain;
  /* Eliminamos drop-shadow pesado por un filtro más simple */
  filter: brightness(1.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@keyframes heroPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 50px rgba(212, 0, 160, .7)) drop-shadow(0 0 100px rgba(212, 0, 160, .35));
  }

  50% {
    filter: drop-shadow(0 0 70px rgba(212, 0, 160, 1)) drop-shadow(0 0 130px rgba(212, 0, 160, .6));
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vh, 9.5rem);
  line-height: 0.82;
  letter-spacing: 2px;
  margin-bottom: 1vh;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.2rem; /* Tamaño más pequeño para que quepa todo */
    line-height: 1;
    margin-bottom: 15px;
  }
  .hero-logo {
    height: 35vh; /* Reducimos un poco el logo para ganar espacio */
  }
  .d-desktop {
    display: none; /* Oculta saltos de línea o elementos de PC en móvil */
  }
}

/* Ocultar botón CTA en computadores */
.hero-cta {
  display: none;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .hero-cta {
    display: block; /* Solo se ve en móviles */
    opacity: 1;
    visibility: visible;
  }
}

.hero-sub {
  color: rgba(255, 255, 255, .65);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* --- Hero Event Preview Pills --- */
.hero-events {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-event-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: 50px;
  background: rgba(25, 25, 35, 0.9);
  /* Sólido más opaco */
  border: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero-event-pill:hover {
  transform: translateY(-4px) scale(1.03);
}

.hero-event-gold {
  border-color: rgba(245, 200, 66, .25);
}

.hero-event-gold:hover {
  border-color: rgba(245, 200, 66, .6);
  box-shadow: 0 8px 32px rgba(245, 200, 66, .25);
}

.hero-event-magenta {
  border-color: rgba(212, 0, 160, .25);
}

.hero-event-magenta:hover {
  border-color: rgba(212, 0, 160, .6);
  box-shadow: 0 8px 32px rgba(212, 0, 160, .25);
}

.hep-logo {
  height: 42px;
  /* Reducido de 52px */
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .5));
}

/* Wide horizontal logo variant for pills */
.hep-logo-wide {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.hep-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.hep-date {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-event-magenta .hep-date {
  background: linear-gradient(135deg, #ff2ec4, var(--magenta-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hep-name {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  white-space: nowrap;
}

.hep-name em {
  font-style: normal;
  color: rgba(255, 255, 255, .9);
}

.hep-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .35s;
}

.hero-event-gold .hep-glow {
  background: radial-gradient(ellipse 80% 80% at 20% 50%, rgba(245, 200, 66, .12), transparent);
}

.hero-event-magenta .hep-glow {
  background: radial-gradient(ellipse 80% 80% at 20% 50%, rgba(212, 0, 160, .12), transparent);
}

.hero-event-pill:hover .hep-glow {
  opacity: 1;
}

.hero-event-divider {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, .3);
  animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {

  0%,
  100% {
    opacity: .3;
    transform: scale(1);
  }

  50% {
    opacity: .8;
    transform: scale(1.2) rotate(15deg);
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .4);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: .5;
  }

  50% {
    transform: translateX(-50%) translateY(6px);
    opacity: 1;
  }
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, .4);
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  transform: rotate(45deg);
}

/* ===== ANNIVERSARY SECTION ===== */
.anniversary {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.anniversary-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 50%, var(--dark-1) 100%);
}

.anniversary-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 50%, rgba(245, 200, 66, .1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 50%, rgba(180, 0, 130, .08) 0%, transparent 70%);
}

.anniversary-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .anniversary-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.anniversary-text .section-title {
  margin-bottom: 24px;
}

.anniversary-desc {
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

.anniversary-desc strong {
  color: var(--white);
}

.anniversary-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.anniversary-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* The "20 Años" badge floats below the main shield */
.anniversary-20-badge {
  width: min(220px, 60vw);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(245, 200, 66, .5));
  animation: logoFloat 4s ease-in-out infinite;
  animation-delay: .5s;
}

.anniversary-glow-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 2px solid rgba(245, 200, 66, .2);
  box-shadow:
    0 0 60px rgba(245, 200, 66, .15),
    inset 0 0 60px rgba(245, 200, 66, .05);
  animation: ringPulse 2.5s ease-in-out infinite;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .5;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.anniversary-logo {
  width: min(340px, 80vw);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(245, 200, 66, .5));
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== COUNTDOWN ===== */
.countdown-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(212, 0, 160, .12) 0%, rgba(245, 200, 66, .12) 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
}

.countdown-label {
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 100px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.countdown-item:hover {
  border-color: var(--gold-1);
  box-shadow: 0 0 20px rgba(245, 200, 66, .2);
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-unit {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, .2);
  align-self: flex-start;
  margin-top: 16px;
}

/* ===== EVENTS SECTION ===== */
.events {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.events-wrapper {
  display: flex;
  gap: 0;
  align-items: stretch;
}

@media (max-width: 900px) {
  .events-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .events-vs {
    flex-direction: row;
    width: 100%;
    padding: 24px 0;
  }

  .events-vs .vs-line {
    flex: 1;
    height: 1px;
  }

  .vs-circle {
    width: 56px;
    height: 56px;
  }
}

/* EVENT CARD */
.event-card {
  flex: 1;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .4s ease, box-shadow .4s ease;
  max-width: 500px;
  position: relative;
}

.highlight-event {
  animation: cardHighlight 2s ease infinite alternate;
  border-color: var(--gold-1) !important;
  box-shadow: 0 0 40px rgba(245, 200, 66, 0.4) !important;
  z-index: 10;
  opacity: 1 !important;
  /* Forzar visibilidad */
  transform: translateY(-8px) !important;
  /* Mantener elevada */
}

.highlight-event.event-magenta {
  border-color: var(--magenta-1) !important;
  box-shadow: 0 0 40px rgba(212, 0, 160, 0.4) !important;
}

@keyframes cardHighlight {
  0% {
    box-shadow: 0 0 20px rgba(245, 200, 66, 0.2);
    transform: translateY(-8px) scale(1);
  }

  100% {
    box-shadow: 0 0 60px rgba(245, 200, 66, 0.6);
    transform: translateY(-12px) scale(1.02);
  }
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s;
}

.event-card:hover .event-card-bg {
  opacity: 1;
}

.gold-bg {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245, 200, 66, .25) 0%, transparent 70%);
}

.magenta-bg {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212, 0, 160, .25) 0%, transparent 70%);
}

.event-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--dark-1);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
}

.magenta-badge {
  background: linear-gradient(135deg, #ff2ec4, var(--magenta-1));
  color: var(--white);
}

.event-date-band {
  position: absolute;
  top: 56px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  padding: 8px 14px;
  z-index: 2;
}

.gold-band {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--dark-1);
}

.magenta-band {
  background: linear-gradient(135deg, #ff2ec4, var(--magenta-1));
  color: var(--white);
}

.event-day {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.event-month {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.event-card-body {
  position: relative;
  z-index: 1;
  padding: 80px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.event-logo {
  width: min(220px, 60%);
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .5));
  transition: transform .4s;
}

/* Wide horizontal logo for 20 Años event card */
.event-logo-wide {
  width: min(280px, 75%);
  height: auto;
  max-height: 110px;
  object-fit: contain;
}

.event-card:hover .event-logo {
  transform: scale(1.05) translateY(-4px);
}

.event-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: 2px;
  line-height: 1.1;
}

.event-name em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-magenta .event-name em {
  background: linear-gradient(135deg, #ff2ec4, var(--magenta-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-description {
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  line-height: 1.75;
  max-width: 340px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
}

.meta-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold-1);
}

.event-magenta .meta-item svg {
  stroke: var(--magenta-1);
}

.event-btn {
  margin-top: 8px;
}

.event-card-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity .4s;
}

.event-card:hover .event-card-glow {
  opacity: 1;
}

.gold-glow {
  background: var(--gold-1);
}

.magenta-glow {
  background: var(--magenta-1);
}

/* VS / DIVIDER */
.events-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  gap: 12px;
}

.vs-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .15), transparent);
}

.vs-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .04);
}

/* ===== LEGACY / TIMELINE ===== */
.legacy {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.legacy-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.legacy-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212, 0, 160, .06) 0%, transparent 70%);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(212, 0, 160, .4), rgba(245, 200, 66, .6), rgba(245, 200, 66, .8), transparent);
}

@media (max-width: 600px) {
  .timeline::before {
    left: 50px;
  }
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 24px 1fr;
  gap: 0 24px;
  align-items: flex-start;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .timeline-item {
    grid-template-columns: 50px 24px 1fr;
  }
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .4);
  text-align: right;
  padding-top: 4px;
  transition: color .3s;
}

.gold-year {
  color: var(--gold-1) !important;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  border: 2px solid rgba(255, 255, 255, .2);
  margin-top: 8px;
  transition: var(--transition);
  position: relative;
}

.gold-dot {
  background: var(--gold-1) !important;
  border-color: var(--gold-2) !important;
  box-shadow: 0 0 16px rgba(245, 200, 66, .8), 0 0 32px rgba(245, 200, 66, .4) !important;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 16px rgba(245, 200, 66, .8), 0 0 32px rgba(245, 200, 66, .4);
  }

  50% {
    box-shadow: 0 0 24px rgba(245, 200, 66, 1), 0 0 48px rgba(245, 200, 66, .6);
  }
}

.timeline-content {
  padding: 0 0 0 8px;
}

.timeline-content h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .9);
}

.timeline-content p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.gold-content h4 {
  color: var(--gold-1);
  font-size: 1.1rem;
}

.timeline-item:hover .timeline-dot {
  background: var(--magenta-1);
  border-color: var(--magenta-2);
  box-shadow: 0 0 12px rgba(212, 0, 160, .6);
}

.timeline-item:hover .timeline-year {
  color: rgba(255, 255, 255, .8);
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(180, 0, 130, .2) 0%, transparent 70%),
    linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.contact-logo {
  width: min(160px, 40vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(212, 0, 160, .5));
  animation: logoFloat 4s ease-in-out infinite;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 2px;
  line-height: 1.1;
}

.contact-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  max-width: 420px;
}

.contact-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: var(--transition);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  background: rgba(212, 0, 160, .25);
  border-color: var(--magenta-1);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 0, 160, .3);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 24px;
  background: var(--dark-1);
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
}

.footer-logo {
  width: 80px;
  height: auto;
  opacity: .6;
  margin-bottom: 16px;
  filter: grayscale(.5);
}

.footer-copy {
  color: rgba(255, 255, 255, .35);
  font-size: .85rem;
  margin-bottom: 4px;
}

.footer-tagline {
  color: rgba(255, 255, 255, .2);
  font-size: .78rem;
  letter-spacing: 1px;
}

/* ===== CHEER GAMES FORMAT LIST ===== */
.cheer-games-format {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin: 4px 0 8px;
  text-align: left;
}

.cgf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(212, 0, 160, .2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
  transition: background .3s, border-color .3s;
}

.cgf-item:hover {
  background: rgba(212, 0, 160, .12);
  border-color: rgba(212, 0, 160, .5);
}

.cgf-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.cgf-item strong {
  color: #ff7ed4;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .countdown-sep {
    display: none;
  }

  .events-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .events-vs {
    flex-direction: row;
    padding: 20px 0;
  }

  .events-vs .vs-line {
    flex: 1;
    height: 1px;
  }

  .event-card {
    max-width: 100%;
  }
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 200, 66, 0.3), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.spectators-card:hover {
  border-color: var(--magenta-1);
  box-shadow: 0 10px 40px rgba(212, 0, 160, 0.2);
}

.athletes-card:hover {
  border-color: var(--gold-1);
  box-shadow: 0 10px 40px rgba(245, 200, 66, 0.2);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-1);
  color: var(--dark-1);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.magenta-badge {
  background: var(--magenta-1);
  color: white;
}

.pricing-header {
  margin-bottom: 30px;
  text-align: center;
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
}

.pricing-body {
  flex: 1;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.p-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.p-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
}

.p-promo {
  flex-direction: column !important;
  align-items: flex-start !important;
  background: rgba(245, 200, 66, 0.05);
  margin: 10px 0;
  padding: 15px !important;
  border-radius: 12px;
  border-bottom: none !important;
  border-left: 3px solid var(--gold-1);
}

.magenta-promo {
  background: rgba(212, 0, 160, 0.05);
  border-left-color: var(--magenta-1);
}

.promo-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-1);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.magenta-tag {
  color: var(--magenta-1);
}

.pricing-footer-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.gift-tag {
  background: rgba(245, 200, 66, 0.15);
  color: var(--gold-1);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  border-left: 4px solid var(--gold-1);
  text-align: left;
}

.pricing-gift-banner {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--dark-1);
  padding: 12px 15px;
  border-radius: 16px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 25px rgba(245, 200, 66, 0.4);
  animation: giftPulse 2s infinite alternate ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.gift-icon {
  font-size: 1.8rem;
}

.gift-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.gift-text strong {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.gift-text span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}

@keyframes giftPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(245, 200, 66, 0.4);
  }

  100% {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(245, 200, 66, 0.7);
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.pricing-gift-banner-magenta {
  background: linear-gradient(135deg, var(--magenta-1), var(--magenta-2));
  color: white;
  padding: 12px 15px;
  border-radius: 16px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 0 25px rgba(212, 0, 160, 0.4);
  animation: giftPulseMagenta 2s infinite alternate ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes giftPulseMagenta {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(212, 0, 160, 0.4);
  }

  100% {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(212, 0, 160, 0.7);
  }
}

.magenta-dot {
  background: var(--magenta-1) !important;
  box-shadow: 0 0 15px var(--magenta-1) !important;
}

.magenta-year-label {
  color: var(--magenta-1) !important;
}

.magenta-content {
  border-left: 3px solid var(--magenta-1) !important;
  background: linear-gradient(90deg, rgba(212, 0, 160, 0.05), transparent) !important;
}