/* =========================================================
   COMPONENT — Hero principal (home)
   ========================================================= */

.hero {
  position: relative;
  min-height: 560px;
  background-image:
    /* Overlay azul leve e uniforme, sem virar gradiente forte */
    linear-gradient(135deg, rgba(31, 78, 150, 0.45), rgba(31, 78, 150, 0.18)),
    url("../../../images/Home/title.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  padding: var(--space-10) 0 var(--space-8);
}
.hero__container {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: var(--fs-sm);
  color: #fff;
  font-weight: 400;
  margin-bottom: var(--space-4);
  max-width: 540px;
}
.hero__title {
  font-size: var(--fs-4xl);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: var(--space-6);
}
.hero__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: var(--space-6) 0;
}

.hero__brands {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;

  justify-content: space-around;
  gap: var(--space-3);
  width: 100%;
}
.hero__brand {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.hero__brand:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.hero__brand img {
  height: 24px;
  width: auto;
  max-width: 100%;
  display: block;
}

@media (min-width: 480px) {
  .hero__brand img {
    height: 30px;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: var(--fs-5xl);
  }
  .hero__brand img {
    height: 42px;
  }
}
@media (min-width: 1024px) {
  .hero__brand img {
    height: 52px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 640px;
  }
  .hero__title {
    font-size: 3.5rem;
  }
}
