/* ========================================
   HERO SECTION
 ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(102, 126, 234, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 40%, rgba(29, 161, 242, 0.08) 0%, transparent 50%);
  pointer-events: none;
  filter: blur(40px);
}

/* Orbes decorativos con glow */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero__glow--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero__glow--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(118, 75, 162, 0.25) 0%, transparent 70%);
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

.hero__glow--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 161, 242, 0.2) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -15px) scale(1.05); }
  50% { transform: translate(-5px, 10px) scale(0.95); }
  75% { transform: translate(-10px, -10px) scale(1.02); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.8s var(--transition-base) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #1DA1F2, #00E6A8);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero__badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.hero__logo {
  width: 100px;
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s var(--transition-base) both;
}

@media (min-width: 768px) {
  .hero__logo { width: 140px; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--transition-base) both;
  animation-delay: 0.15s;
}

.hero__title--highlight {
  display: block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f5576c 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}

.hero__description {
  font-size: clamp(1.0625rem, 2.8vw, 1.375rem);
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s var(--transition-base) both;
  animation-delay: 0.3s;
}

.hero__description strong {
  color: var(--color-text);
  font-weight: 700;
}

/* Botones Hero */
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s var(--transition-base) both;
  animation-delay: 0.45s;
}

@media (min-width: 480px) {
  .hero__buttons {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

/* Botón secundario */
.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), var(--glow-soft);
}

/* Estadísticas Hero */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.8s var(--transition-base) both;
  animation-delay: 0.6s;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 480px) {
  .hero__stats {
    gap: 3rem;
  }
  
  .hero__stat-number {
    font-size: 2rem;
  }
}