/* ─── HERO — BACKGROUND FULL ─── */
.hero {
  margin-top: 70px;
  position: relative;
  min-height: calc(100svh - 70px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Foto de fundo */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 25%;
  display: block;
}

/* Overlay — suave no topo, forte a partir do meio */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 25, 23, 0.0)  0%,
    rgba(28, 25, 23, 0.25) 35%,
    rgba(28, 25, 23, 0.72) 55%,
    rgba(28, 25, 23, 0.93) 100%
  );
}

/* Conteúdo colado no rodapé */
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  color: var(--color-white);
  padding: 1.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero__subtitle {
  font-size: var(--text-xs);
  line-height: 1.5;
  opacity: 0.80;
  color: var(--color-white);
  max-width: 380px;
}

.hero__cta {
  width: 100%;
  max-width: 360px;
  margin-top: 0.6rem;
}

.hero__crm {
  font-size: 0.65rem;
  opacity: 0.35;
  letter-spacing: 0.08em;
  color: var(--color-white);
}

/* ─── DESKTOP ─── */
@media (min-width: 1024px) {
  .hero {
    min-height: calc(100svh - 70px);
    align-items: flex-end;
  }

  .hero__bg-img {
    object-position: 55% 20%;
  }

  .hero__overlay {
    background:
      linear-gradient(
        to right,
        rgba(28, 25, 23, 0.82) 0%,
        rgba(28, 25, 23, 0.45) 38%,
        rgba(28, 25, 23, 0.08) 62%,
        rgba(28, 25, 23, 0.0)  100%
      ),
      linear-gradient(
        to bottom,
        rgba(28, 25, 23, 0.0)  0%,
        rgba(28, 25, 23, 0.0)  35%,
        rgba(28, 25, 23, 0.60) 100%
      );
  }

  .hero__content {
    max-width: 560px;
    padding: 2rem 3rem 4rem 5rem;
    align-items: flex-start;
    text-align: left;
    gap: 0.6rem;
  }

  .hero__cta { width: auto; max-width: none; margin-top: 0.75rem; }
  .hero__subtitle { font-size: var(--text-sm); }
}
