/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 245, 255, 0.4);
  background: rgba(0, 245, 255, 0.08);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 2rem;
  animation: fadeDown 0.8s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* TÍTULO */
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  animation: fadeDown 0.8s 0.1s ease both;
}

.title-line1 { display: block; color: #fff; }

.title-line2 {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 165, 0, 0.5));
}

.title-line3 {
  display: block;
  color: var(--cyan);
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.6);
}

/* SUBTÍTULO */
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin: 1.5rem 0 2.5rem;
  max-width: 540px;
  line-height: 1.7;
  animation: fadeDown 0.8s 0.2s ease both;
}

/* BOTONES CTA */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeDown 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0000;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.08);
}

/* STATS */
.stats-bar {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: fadeDown 0.8s 0.5s ease both;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ANIMACIONES */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  .stats-bar { gap: 1.5rem; }
  .stat-num  { font-size: 1.4rem; }
}
