:root {
  --vermelho: #e91610;
  --vermelho-escuro: #b80f0b;
  --amarelo: #ffc400;
  --amarelo-escuro: #e5aa00;
  --preto: #101010;
  --cinza-escuro: #252525;
  --cinza: #6a6a6a;
  --fundo: #f5f5f5;
  --branco: #ffffff;
  --borda: #e5e5e5;
  --whatsapp: #25d366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--fundo);
  color: var(--preto);
  line-height: 1.5;
}
body.menu-aberto { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.topo {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 104px;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 720px) 1fr;
  align-items: center;
  background: rgba(255,255,255,.97);
  border-bottom: 4px solid var(--amarelo);
  box-shadow: 0 5px 22px rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}

.menu-btn {
  width: 52px;
  height: 52px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 0;
  border-radius: 12px;
  background: var(--preto);
  padding-left: 11px;
  cursor: pointer;
}
.menu-btn span { width: 29px; height: 3px; background: var(--amarelo); border-radius: 999px; }
.menu-btn:hover { background: var(--vermelho); }
.logo-area { justify-self: center; width: min(100%, 650px); }
.logo { width: 100%; max-height: 82px; object-fit: contain; }

.whatsapp-topo {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(37,211,102,.25);
}
.whatsapp-icone { font-size: 1.2rem; }

.menu-lateral {
  position: fixed;
  z-index: 60;
  top: 0;
  left: -370px;
  width: min(360px, 90vw);
  height: 100vh;
  overflow-y: auto;
  background: var(--branco);
  transition: left .28s ease;
  box-shadow: 20px 0 50px rgba(0,0,0,.25);
  border-right: 5px solid var(--amarelo);
}
.menu-lateral.aberto { left: 0; }
.menu-cabecalho {
  min-height: 120px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--borda);
}
.menu-cabecalho img { width: 245px; }
.menu-cabecalho button {
  border: 0;
  background: var(--preto);
  color: #fff;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  font-size: 1.65rem;
  cursor: pointer;
}
.menu-lateral nav { padding: 18px; display: grid; gap: 8px; }
.menu-lateral nav a {
  padding: 14px 15px;
  border-radius: 10px;
  border-left: 4px solid transparent;
  font-weight: 800;
}
.menu-lateral nav a:hover { background: #fff5d2; border-left-color: var(--vermelho); }
.menu-aviso { margin: 6px 18px 18px; padding: 15px; border-radius: 12px; background: #f4f4f4; color: var(--cinza); font-size: .9rem; }
.overlay { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.56); opacity: 0; visibility: hidden; transition: .28s; }
.overlay.ativo { opacity: 1; visibility: visible; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 68px 24px 78px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,196,0,.23), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(233,22,16,.16), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f7f7f7 70%, #eee 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--amarelo) 0 42%, var(--vermelho) 42% 78%, var(--preto) 78% 100%);
}
.hero-logo-wrap { width: min(980px, 92vw); margin-bottom: 24px; position: relative; z-index: 1; }
.hero-logo { width: 100%; filter: drop-shadow(0 20px 25px rgba(0,0,0,.10)); }
.hero-conteudo { max-width: 820px; position: relative; z-index: 1; }
.selo, .secao-titulo > span, .destaque > div > span, .atacado > div > span {
  display: inline-block;
  padding: 7px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #fff0b5;
  color: #6f5200;
  font-weight: 800;
}
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: .98; margin-bottom: 18px; }
.hero p { max-width: 700px; margin: 0 auto 28px; color: var(--cinza); font-size: 1.12rem; }
.hero-acoes { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.botao-principal, .botao-contorno, .botao-escuro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 12px;
  font-weight: 900;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.botao-principal { background: var(--amarelo); color: #111; box-shadow: 0 10px 22px rgba(255,196,0,.25); }
.botao-principal:hover { background: var(--amarelo-escuro); transform: translateY(-2px); }
.botao-contorno { border: 2px solid var(--preto); background: #fff; }
.botao-contorno:hover { background: var(--preto); color: #fff; transform: translateY(-2px); }
.botao-escuro { background: var(--preto); color: #fff; }
.botao-escuro:hover { background: var(--vermelho); transform: translateY(-2px); }

.faixa-beneficios {
  max-width: 1100px;
  margin: -36px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
  background: #d9d9d9;
  box-shadow: 0 16px 35px rgba(0,0,0,.12);
}
.faixa-beneficios > div { background: #fff; padding: 22px; text-align: center; }
.faixa-beneficios strong { display: block; margin-bottom: 4px; }
.faixa-beneficios span { color: var(--cinza); font-size: .93rem; }

.secao { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.secao-titulo { max-width: 780px; margin-bottom: 34px; }
.secao h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; margin-bottom: 10px; }
.secao p { color: var(--cinza); }

.grade-produtos { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.produto-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.produto-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(0,0,0,.12); }
.produto-imagem { aspect-ratio: 1/1; background: linear-gradient(135deg, #f6f6f6, #ececec); display: grid; place-items: center; overflow: hidden; }
.produto-imagem img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-produto { width: 100%; height: 100%; display: grid; place-items: center; text-align: center; padding: 30px; color: #777; font-weight: 800; }
.produto-info { padding: 20px; }
.produto-info h3 { font-size: 1.28rem; margin-bottom: 7px; }
.produto-info p { min-height: 48px; }
.produto-preco { display: block; margin: 14px 0 16px; font-size: 1.35rem; font-weight: 900; color: var(--vermelho); }
.produto-btn {
  width: 100%;
  border: 0;
  border-radius: 11px;
  padding: 14px;
  cursor: pointer;
  background: var(--whatsapp);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}
.produto-btn:hover { filter: brightness(.93); }

.destaque, .atacado {
  margin-top: 24px;
  margin-bottom: 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.destaque { background: linear-gradient(135deg, #fff2b7, #fff9df); border: 1px solid #f1dd81; }
.atacado { background: #fff; border: 2px solid #191919; }
.destaque > div, .atacado > div { max-width: 760px; }

footer {
  background: var(--preto);
  color: #fff;
  text-align: center;
  padding: 48px 20px;
  border-top: 7px solid var(--vermelho);
}
.logo-rodape { width: min(480px, 85vw); margin: 0 auto 20px; background: #fff; border-radius: 12px; padding: 8px 14px; }
footer p { color: #d5d5d5; }
footer strong { color: #fff; }

@media (max-width: 900px) {
  .topo { grid-template-columns: 58px 1fr 58px; min-height: 88px; padding: 8px 12px; }
  .logo-area { width: min(100%, 420px); }
  .logo { max-height: 66px; }
  .whatsapp-topo { width: 50px; height: 50px; padding: 0; justify-content: center; }
  .whatsapp-texto { display: none; }
  .grade-produtos { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 650px) {
  .hero { min-height: 540px; padding: 46px 18px 66px; }
  .hero-logo-wrap { width: 100%; margin-bottom: 18px; }
  .hero h1 { font-size: 2.45rem; }
  .hero p { font-size: 1rem; }
  .hero-acoes { flex-direction: column; align-items: stretch; }
  .faixa-beneficios { margin: -24px 16px 0; grid-template-columns: 1fr; }
  .grade-produtos { grid-template-columns: 1fr; }
  .secao { padding: 64px 18px; }
  .destaque, .atacado { flex-direction: column; align-items: stretch; }
  .botao-principal, .botao-contorno, .botao-escuro { width: 100%; }
}
