/* ── CATALOG HERO ── */
.hero { background: #fff !important; }

/* ── FOOTER ── */
footer {
  background: #2e2e2e;
  color: #ccc;
}

.footer-main {
  display: flex;
  gap: 48px;
  padding: 48px 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col { flex: 1; }

.footer-col h3 {
  color: #e05a4e;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col > p {
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #ccc;
}

.footer-contact svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #aaa;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #555;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: #e05a4e;
  color: #e05a4e;
}

.footer-social svg { width: 18px; height: 18px; }

.footer-divider {
  border: none;
  border-top: 1px solid #444;
  margin: 0 48px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 48px;
  font-size: 13px;
  color: #777;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  header {
    padding: 0 16px !important;
  }

  nav {
    display: none !important;
  }

  .btn-whatsapp {
    font-size: 12px !important;
    padding: 8px 12px !important;
    gap: 6px !important;
  }

  .btn-whatsapp svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* oculta o texto, mantém só o ícone */
  .btn-whatsapp span,
  .btn-whatsapp br {
    display: none !important;
  }

  .hero {
    padding: 36px 16px 28px !important;
  }

  .hero h1 {
    font-size: 28px !important;
  }

  .hero p {
    font-size: 14px !important;
  }

  .search-box {
    max-width: 100% !important;
  }

  #catalogo {
    padding: 20px 12px 40px !important;
  }

  .grid-section {
    padding: 20px 12px 40px !important;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .card-body {
    padding: 10px !important;
    gap: 8px !important;
  }

  .card-body h3 {
    font-size: 13px !important;
  }

  .btn-catalogo,
  .btn-info {
    font-size: 12px !important;
    padding: 8px !important;
  }

  .footer-main {
    flex-direction: column;
    gap: 28px;
    padding: 32px 16px 24px !important;
  }

  .footer-divider { margin: 0 16px !important; }

  .footer-bottom { padding: 16px !important; }
}
