/* ============================================================ */
/* BLOQUE: HERO v1.0                                            */
/* Depende de: variables.css, base.css, utilities.css           */
/* Breakpoints: 768px, 480px                                    */
/* ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--topbar-height) + var(--navbar-height) + var(--space-3xl))
           var(--space-lg) var(--space-3xl);
  background: var(--bg-primary);
  overflow: hidden;
  text-align: center;
}

.hero__glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 59, 48, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero__badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

@media (max-width: 480px) {
  .hero__title br { display: none; }
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.hero__cta-group {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero__trust {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.hero__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__avatars {
  display: flex;
  align-items: center;
}

.hero__avatars img,
.hero__avatars-more {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
  margin-left: -10px;
}

.hero__avatars img:first-child { margin-left: 0; }

.hero__avatars-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: var(--text-sm);
}

.hero__social-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.hero__social-text strong { color: var(--text-primary); }
.hero__live { white-space: nowrap; }

.hero__scroll {
  display: inline-flex;
  margin-top: var(--space-2xl);
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--text-2xl);
}

.hero__scroll-arrow {
  display: inline-block;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@media (max-width: 767px) {
  .hero { padding-bottom: var(--space-3xl); }
  .hero__cta-group .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: var(--space-xs); align-items: center; }
}
