/* ─── HERO ──────────────────────────────────────────────────────── */

#hero {
  position: relative;
  min-height: 100vh;    /* fallback — browsers sem suporte a dvh */
  min-height: 100dvh;   /* preferido — exclui UI do browser no mobile */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--fundo-dark) 0%, var(--azul) 100%);
  padding: 80px 24px 60px;
  overflow: hidden;
}

/* Glow decorativo — profundidade verde sem poluição visual */
#hero::before {
  content: '';
  position: absolute;
  top: -140px; right: -140px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.28) 0%, rgba(27,107,58,0.10) 55%, transparent 72%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Conteúdo */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--branco);
  margin-bottom: 14px;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}
