/* Estilos específicos da home (index.html). Cabeçalho, menu, mini-carrinho,
   newsletter e rodapé reaproveitam as classes de product.css; a vitrine de
   produtos reaproveita .catalog-grid/.catalog-card de catalog.css — este
   arquivo cobre só o banner de destaque e a seção "Nossos produtos". */

.quiz-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  background: var(--green-dark); color: #fff; text-align: center; padding: 11px 16px;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
}
.quiz-banner:hover { background: #147c26; }
.quiz-banner-arrow { transition: transform .15s; }
.quiz-banner:hover .quiz-banner-arrow { transform: translateX(3px); }

.home-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
}
.home-hero-inner { max-width: 640px; margin: 0 auto; }
.home-hero h1 { font-size: 32px; line-height: 1.2; margin: 0 0 14px; }
.home-hero p { font-size: 15px; line-height: 1.6; margin: 0 0 28px; opacity: .95; }
.home-hero-cta {
  display: inline-block; background: #fff; color: var(--green-dark);
  padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: 15px;
}
.home-hero-cta:hover { opacity: .92; }

@media (min-width: 700px) {
  .home-hero { padding: 88px 20px; }
  .home-hero h1 { font-size: 42px; }
  .home-hero p { font-size: 16px; }
}

.home-showcase { max-width: var(--maxw); margin: 0 auto; padding: 48px 20px 12px; }
.home-showcase h2 { text-align: center; font-size: 24px; margin: 0 0 32px; }
.home-showcase-more {
  display: block; width: fit-content; margin: 8px auto 40px; font-size: 14px;
  font-weight: 700; color: var(--green-dark);
}
.home-showcase-more:hover { text-decoration: underline; }
