.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('../assets/images/banner.png');
  background-size: cover;
  background-position: 70% center; /* 🔥 chave */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #a00000;
  mix-blend-mode: multiply;

}

.btn-primary {
  background: #ffd400;
  color: #000;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 680px;
  margin-left: 4rem;
}

.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 1rem 0;
}

.hero .highlight {
  color: #ffd400;
}

.hero-badge {
  background: #ffd400;
  color: #000;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-content {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}
.hero-buttons {
  display: inline-flex;
  gap: 1rem;
  padding: 0;        /* remove espaço interno */
  border: none;     /* remove borda */
  background: none; /* remove fundo */
}

/* BASE DOS BOTÕES */
.hero-buttons .btn {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 1.2rem 1.6rem;
  min-width: 220px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* BOTÃO AMARELO */
.btn-primary {
  background: #ffd400;
  color: #000;
  border: 2px solid #ffd400;
}

/* BOTÃO BRANCO */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* HOVER – IGUAL MATERIAL GRÁFICO */
.btn-primary:hover {
  background: #000;
  color: #ffd400;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    min-width: 100%;
  }
}