/* ─── 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;
}

/* Orbs decorativos */
#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,63,160,0.5) 0%, rgba(245,197,24,0.12) 50%, transparent 70%);
  pointer-events: none;
}

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

/* Estrelas (Cruzeiro do Sul) */
.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-stars span {
  position: absolute;
  color: rgba(245,197,24,0.2);
  font-size: 0.7rem;
  animation: twinkle 3s ease-in-out infinite alternate;
}

.hero-stars span:nth-child(1)  { top: 15%; left: 8%;   animation-delay: 0s;   }
.hero-stars span:nth-child(2)  { top: 25%; left: 18%;  animation-delay: 0.4s; }
.hero-stars span:nth-child(3)  { top: 10%; left: 35%;  animation-delay: 0.8s; }
.hero-stars span:nth-child(4)  { top: 40%; left: 5%;   animation-delay: 1.2s; }
.hero-stars span:nth-child(5)  { top: 70%; left: 12%;  animation-delay: 0.6s; }
.hero-stars span:nth-child(6)  { top: 20%; right: 10%; animation-delay: 1.0s; }
.hero-stars span:nth-child(7)  { top: 55%; right: 8%;  animation-delay: 0.2s; }
.hero-stars span:nth-child(8)  { top: 80%; right: 20%; animation-delay: 1.5s; }
.hero-stars span:nth-child(9)  { top: 65%; left: 40%;  animation-delay: 0.9s; }
.hero-stars span:nth-child(10) { top: 30%; right: 30%; animation-delay: 0.3s; }

@keyframes twinkle {
  0%   { opacity: 0.2; transform: scale(1);   }
  100% { opacity: 0.8; transform: scale(1.4); }
}

/* 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.15em;
  text-transform: uppercase;
  color: var(--amarelo);
  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;
}
