/* =============================================
   hero.css — Seção hero full-screen + stat strip
   Mobile-first: 375px base → 768px → 1024px+
   ============================================= */

/* ─── Container hero ─── */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/Sacada.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

/* Overlay gradiente */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 20, 80, .85) 40%,
    rgba(0, 80, 200, .4) 100%
  );
}

/* ─── Conteúdo hero (375px base) ─── */
.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.25rem 8rem;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Eyebrow */
.hero__eyebrow {
  font-size: .75rem;
  font-weight: var(--fw-bold);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* H1 */
.hero__content h1 {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: var(--fw-black);
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* Subtítulo */
.hero__content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Botão WhatsApp */
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: var(--color-whatsapp);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  padding: .875rem 1.75rem;
  border-radius: var(--radius-btn);
  width: 100%;
  justify-content: center;
  transition: opacity var(--transition-base), transform var(--transition-base);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  text-decoration: none;
}

.btn--whatsapp:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.btn--whatsapp i {
  font-size: 1.25rem;
}

/* ─── Stat strip glassmorphism (375px: 2 colunas) ─── */
.hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, .08);
  border-top: 1px solid rgba(255, 255, 255, .15);
  z-index: 1;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: 1rem 1.25rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .125rem;
}

.hero__stat strong {
  font-size: 1rem;
  font-weight: var(--fw-black);
  color: var(--color-text);
  line-height: 1.2;
}

.hero__stat span {
  font-size: .75rem;
  color: var(--color-text-muted);
}

/* ─── ≥768px ─── */
@media (min-width: 768px) {
  .hero__content {
    padding: 3rem 2.5rem 8rem;
  }

  .hero__content p {
    font-size: 1.125rem;
  }

  .btn--whatsapp {
    width: auto;
  }

  .hero__strip {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.25rem 2rem;
  }

  .hero__stat {
    align-items: center;
  }

  .hero__stat strong {
    font-size: 1.125rem;
  }

  .hero__stat span {
    font-size: .8125rem;
  }
}

/* ─── ≥1024px ─── */
@media (min-width: 1024px) {
  .hero__content {
    padding: 4rem 3rem 9rem;
    max-width: 820px;
  }

  .hero__content p {
    font-size: 1.25rem;
    max-width: 560px;
  }

  .hero__strip {
    gap: 4rem;
    padding: 1.5rem 3rem;
  }

  .hero__stat strong {
    font-size: 1.25rem;
  }
}
