/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  background:
    radial-gradient(ellipse at 20% 30%, rgba(68, 220, 241, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(197, 244, 8, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--teal-muy-oscuro) 0%, var(--teal-oscuro) 50%, var(--teal) 100%);
  color: var(--blanco);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Partículas decorativas */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(68, 220, 241, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, rgba(197, 244, 8, 0.4), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 90% 50%, rgba(68, 220, 241, 0.4), transparent);
  background-size: 300px 300px;
  animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Glow lateral sutil */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(197, 244, 8, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--cian);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}
/* Líneas decorativas a los lados del eyebrow */
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--cian);
  opacity: 0.5;
}
.hero-eyebrow::before { right: 100%; }
.hero-eyebrow::after  { left: 100%; }

.hero h1 {
  font-family: var(--fuente-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--lima) 0%, var(--cian) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Animación escalonada al cargar */
.hero .reveal:nth-child(1) { transition-delay: 0.2s; }
.hero .reveal:nth-child(2) { transition-delay: 0.4s; }
.hero .reveal:nth-child(3) { transition-delay: 0.6s; }
.hero .reveal:nth-child(4) { transition-delay: 0.8s; }

/* Indicador scroll */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(68, 220, 241, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
