#hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(245,197,24,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(232,83,30,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(125,194,66,0.18) 0%, transparent 50%),
    var(--creme);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(245,197,24,0.12) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amarelo);
  color: var(--escuro);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 40px;
  text-transform: uppercase;
  animation: fadeDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.08;
  color: var(--escuro);
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-title span {
  color: var(--laranja);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-ctas {
  animation: fadeUp 0.9s 0.6s ease both;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}

.stats-bar {
  background: var(--escuro);
  color: #fff;
}

.stat-item {
  border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child {
  border-right: none;
}