/* ============================================
   RESPONSIVE.CSS — Media queries
   ============================================ */

@media (max-width: 1024px) {
  .products, .products--home { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .products, .products--home { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner, .contact, .produto { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__banner { min-height: 460px; }
  .hero__panel { padding: 32px 28px 34px; }
}

@media (max-width: 720px) {
  .catalog-tools { flex-direction: column; }
  .catalog-sort { justify-content: space-between; }
  .wa-float { right: 16px; bottom: 16px; height: 54px; padding: 0; width: 54px; justify-content: center; }
  .wa-float__text { display: none; }
  body.has-sticky-cta .wa-float { display: none; }
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px; transform: translateY(-130%); transition: transform .3s ease;
    align-items: stretch;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 12px; }
  .nav-toggle { display: flex; }
  .topbar { font-size: 0.76rem; }
  .topbar__icon { display: none; }
  .hero { padding-top: 20px; }
  .hero__banner { min-height: 400px; border-radius: 20px; }
  .hero__panel { padding: 26px 22px 28px; max-width: none; }
  .hero__actions .btn { flex: 1 1 auto; }
  .section { padding: 60px 0; }

  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(43, 43, 43, 0.12);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }
  .sticky-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .sticky-cta__info { min-width: 0; line-height: 1.25; }
  .sticky-cta__info strong { display: block; font-family: "Montserrat", sans-serif; font-size: 1.05rem; color: var(--wood-dark); white-space: nowrap; }
  .sticky-cta__info span { display: block; font-size: 0.78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sticky-cta .btn { flex-shrink: 0; padding: 12px 18px; font-size: 0.88rem; }
  body.has-sticky-cta .produto { padding-bottom: 30px; }
  body.has-sticky-cta::after { content: ""; display: block; height: 74px; }
}

@media (max-width: 480px) {
  .products, .products--home, .features__grid, .footer__inner { grid-template-columns: 1fr; }
  .cat { width: 88px; }
  .cat__img { width: 76px; height: 76px; }
  .cat__label { font-size: 0.82rem; }
  .chip { padding: 11px 18px; }
}
