/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 140px);
  padding-bottom: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  text-align: center;

  background:
    radial-gradient(
      circle at top,
      rgba(0,191,98,0.10),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      var(--bg-main) 0%,
      var(--bg-section) 100%
    );
}

/* =========================
   CONTEÚDO
========================= */
.hero-content {
  width: 100%;
  max-width: 1100px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

/* =========================
   GLOW PRINCIPAL (CONTROLADO)
========================= */
.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(0,191,98,0.14) 0%,
    rgba(0,191,98,0.06) 35%,
    transparent 70%
  );
  filter: blur(60px);
  z-index: 0;
}

/* =========================
   BADGE DE AUTORIDADE
========================= */
.authority-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,191,98,0.12);
  border: 1px solid var(--border-brand);
  border-radius: 999px;
  padding: 10px 26px;
  margin-top: 60px; /* Adiciona espaço acima */
  margin-bottom: 32px; /* Mantém ou ajusta o de baixo */
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s ease-out;
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand);
}

/* =========================
   TÍTULO
========================= */
.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;

  max-width: 980px;
  margin: 0 auto 36px;
}

.hero .highlight {
  background: linear-gradient(
    135deg,
    var(--brand),
    #7CFFB6
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .brand-blue {
  color: #00B67A; /* verde sólido, sofisticado */
}

/* =========================
   SUBTÍTULO
========================= */
.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 56px;

  font-size: 1.35rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.hero-subtitle .brand-name {
  color: #00B67A; /* mesmo verde sólido do título */
  font-weight: 600;
}

.hero-subtitle strong {
  font-weight: 700;
  color: #F1F5F9; /* branco levemente mais forte para destaque */
}

/* =========================
   DIVISOR
========================= */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
}

.divider-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

/* =========================
   SCROLL INDICATOR
========================= */
.scroll-indicator {
  margin-top: 70px;
  opacity: 0.8;
  animation: fadeInUp 1s ease-out;
}

.scroll-text {
  font-size: 0.9rem;
  margin-top: 18px;
  color: var(--text-soft);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 110px);
    padding-bottom: 120px;
  }

  .hero-content {
    margin-top: 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.05rem;
  }
}

/* =========================
   ANIMAÇÕES
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
