/* ============================================================
   PPLeds — pages/home.css
   Estilos exclusivos da home: hero section
   ============================================================ */

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,200,66,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245,200,66,0.06) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,200,66,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,200,66,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 30px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero h1 .highlight { color: var(--gold); display: block; }

.hero-desc {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #2a2a2a;
}

.hero-stat h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.hero-stat p {
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual { display: none; }

@media (max-width: 768px) {
  .hero h1       { font-size: 52px; }
  .hero-stats    { gap: 24px; flex-wrap: wrap; }
}
