
/* -------------------------
   HERO COM IMAGEM
------------------------- */

.hero-home {
  background-image: url("../img/hero/hero-home.jpg");
  filter: contrast(1.08) saturate(1.25);
}

.hero-home::before {
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.40) 0%,
    rgba(0,0,0,0.20) 40%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,120,0,0.08),
    transparent 60%
  );
  z-index: 1;
}
/* -------------------------
   HERO - TIPOGRAFIA
------------------------- */

.hero-home h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  max-width: 700px;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.6),
    0 4px 14px rgba(0,0,0,0.35);
}

.hero-home .hero-subtitle {
  margin-top: 0.75rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);

  text-shadow:
    0 2px 6px rgba(0,0,0,0.7),
    0 6px 20px rgba(0,0,0,0.5);
}


.hero-home .hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-home h1 {
    font-size: 2rem;
    line-height: 1.15;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .hero-home::before {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.05)
    );
  }
}