* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
  line-height: 1.4;
}

/* HERO */
.hero {
  position: relative;
  height: 140px;
  background: #111;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #1f1f1f;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #000, transparent);
}

.hero-conteudo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  gap: 12px;
  z-index: 1;
}

.logo {
  width: 120px;
  height: auto;
}

.hero-conteudo p {
  margin: 0;
  font-size: 14px;
  color: #d0d0d0;
}

/* CONTAINER */
.container {
  padding: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CATEGORIAS */
.categorias {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.categorias::-webkit-scrollbar {
  display: none;
}

.botao-categoria {
  background: #1b1b1b;
  border: 1px solid #2a2a2a;
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 13px;
  transition: 0.2s ease;
}

.botao-categoria.ativo {
  background: #ff3c00;
  border-color: #ff3c00;
}

.botao-categoria:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* GRID (CELULAR PADRÃO) */
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* CARD */
.card {
  background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid #252525;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

/* IMAGEM */
.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.card-conteudo {
  padding: 12px;
}

.card-categoria {
  display: inline-block;
  font-size: 11px;
  color: #b5b5b5;
  margin-bottom: 6px;
}

.card h3 {
  font-size: 16px;
  margin: 4px 0 6px;
  color: #fff;
}

.card p {
  font-size: 13px;
  color: #bcbcbc;
  line-height: 1.45;
  min-height: 38px;
}

.card-rodape {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 8px;
}

.preco {
  font-weight: bold;
  font-size: 15px;
  color: #fff;
}

.botao {
  background: #ff3c00;
  border: none;
  padding: 8px 11px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  transition: 0.2s ease;
}

.botao:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* BADGES */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.badge.mais {
  background: #00c853;
  color: #fff;
}

.badge.promo {
  background: #ff3c00;
  color: #fff;
}

/* CARRINHO */
.carrinho-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff3c00;
  border: none;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  z-index: 1001;
}

.carrinho-fixo:hover {
  opacity: 0.95;
}

.painel-carrinho {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  max-width: 350px;
  height: 100%;
  background: #111;
  transition: 0.3s;
  z-index: 999;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
}

.painel-carrinho.aberto {
  right: 0;
}

.topo-carrinho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #2c2c2c;
}

.item-carrinho {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 10px;
  border-bottom: 1px solid #1d1d1d;
}

.item-acoes button {
  margin: 0 3px;
  padding: 4px 8px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  background: #222;
  color: #fff;
}

.btn-remover {
  color: #fff;
  background: #ff3c00 !important;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s;
  border-left: 4px solid #00c853;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1002;
}

.toast.ativo {
  opacity: 1;
}

/* WHATSAPP */
.whatsapp-fixo {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #25d366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.whatsapp-fixo:hover {
  opacity: 0.95;
}

/* 📱 TABLET */
@media (min-width: 768px) {
  .grid-produtos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 💻 DESKTOP */
@media (min-width: 1024px) {
  .grid-produtos {
    grid-template-columns: repeat(4, 1fr);
  }
}