:root {
  --rosa: #ec2f8f;
  --azul: #2b6ff2;
  --amarelo: #ffc93c;
  --verde: #37c675;
  --escuro: #241b2f;
  --texto: #3a3247;
  --fundo: #fff8fb;
  --branco: #ffffff;
  --sombra: 0 10px 30px rgba(36, 27, 47, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background: var(--fundo);
  color: var(--texto);
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header.topo {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--branco);
  box-shadow: var(--sombra);
}

.topo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.marca {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marca img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.marca span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--escuro);
}

.topo-acoes {
  display: flex;
  gap: 10px;
}

.icone-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fundo);
  transition: transform 0.2s;
}
.icone-social svg { width: 20px; height: 20px; }
.icone-social:hover { transform: translateY(-2px); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--rosa), var(--azul));
  color: var(--branco);
  padding: 60px 20px 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 12px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

.btn-grande {
  display: inline-block;
  background: var(--branco);
  color: var(--rosa);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: var(--sombra);
  transition: transform 0.2s;
}
.btn-grande:hover { transform: translateY(-3px); }

/* Categorias no hero */
.categorias-resumo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.categorias-resumo span {
  background: rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Filtros */
.filtros-wrap {
  margin-top: -36px;
  padding-bottom: 20px;
}

#filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: var(--branco);
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
}

.filtro {
  border: none;
  background: var(--fundo);
  color: var(--texto);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.filtro.ativo, .filtro:hover {
  background: var(--rosa);
  color: var(--branco);
}

/* Grid de produtos */
section.catalogo {
  padding: 30px 0 70px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

.card {
  background: var(--branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }

.card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--fundo);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rosa);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--escuro);
}

.card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b6377;
  flex: 1;
}

.btn-whatsapp {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--verde);
  color: var(--branco);
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: filter 0.2s;
}
.btn-whatsapp:hover { filter: brightness(1.08); }

.vazio {
  grid-column: 1 / -1;
  text-align: center;
  color: #8a8293;
  padding: 40px 0;
}

/* Sobre */
.sobre {
  background: var(--branco);
  padding: 60px 20px;
}
.sobre-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.sobre h2 { color: var(--escuro); font-size: 1.8rem; }
.sobre p { color: #6b6377; line-height: 1.6; font-size: 1.05rem; }

/* Contato */
.contato {
  background: linear-gradient(135deg, var(--azul), var(--rosa));
  color: var(--branco);
  text-align: center;
  padding: 60px 20px;
}
.contato h2 { margin-top: 0; }
.contato-botoes {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn-contato {
  background: var(--branco);
  color: var(--escuro);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-contato svg { width: 20px; height: 20px; }

/* Footer */
footer {
  background: var(--escuro);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 24px 20px;
  font-size: 0.85rem;
}
footer p { margin: 4px 0; }
footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
footer a:hover { color: var(--branco); }

.credito {
  margin-top: 12px !important;
  font-size: 0.75rem;
}
.credito a {
  color: rgba(255,255,255,0.45);
  border-bottom: 1px dotted rgba(255,255,255,0.35);
  padding-bottom: 1px;
}
.credito a:hover {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.6);
}

.endereco-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.endereco-info p { margin: 0; opacity: 0.95; }

/* Botão flutuante WhatsApp */
.flutuante-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--verde);
  color: var(--branco);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 30;
  transition: transform 0.2s;
}
.flutuante-whatsapp svg { width: 28px; height: 28px; }
.flutuante-whatsapp:hover { transform: scale(1.08); }

@media (max-width: 480px) {
  .hero { padding: 50px 16px 70px; }
  .filtros-wrap { margin-top: -28px; }
}
