/* ============================================================
   hero.css
   ============================================================ */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cor-primaria);
}

/* ── Imagem de fundo ── */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-url, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.20) 100%
  );
}

/* ── Conteúdo ── */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fonte-corpo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cor-acento);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--cor-acento);
}

.hero-titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-titulo em {
  font-style: italic;
  color: var(--cor-acento);
}

.hero-subtitulo {
  font-family: var(--fonte-corpo);
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-acoes {
  display: flex;
  align-items: center;
  gap: var(--espaco-md);
  flex-wrap: wrap;
}

/* ── Selos de confiança ── */
.hero-selos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-selo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.hero-selo svg { color: var(--cor-acento); flex-shrink: 0; }

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2s infinite;
}
.hero-scroll svg { animation: bounce 2s infinite; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

@media (max-width: 860px) {
  .hero-content { padding: 120px 0 70px; max-width: 100%; }
  .hero-acoes   { gap: var(--espaco-sm); }
}
@media (max-width: 480px) {
  .hero-titulo    { font-size: 34px; }
  .hero-subtitulo { font-size: 16px; }
  .hero-acoes .btn { width: 100%; justify-content: center; }
}
