/* =========================
   🔤 TIPOGRAFIA
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif !important;
  background: #f8f8f8;
  color: #111;
}

/* =========================
   🧱 HEADER
========================= */
#cabecalho {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* =========================
   📦 GRID PRODUTOS
========================= */
.listagem ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

/* =========================
   🧱 CARD PRODUTO (UPGRADE)
========================= */
.listagem .listagem-item {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  padding: 18px;
  text-align: center;
  position: relative;

  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
}

/* HOVER PREMIUM */
.listagem .listagem-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* =========================
   🖼️ IMAGEM
========================= */
.listagem-item .imagem-produto {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.listagem-item .imagem-produto img {
  transition: 0.4s ease;
}

.listagem-item:hover img {
  transform: scale(1.06);
}

/* =========================
   🏷️ NOME PRODUTO
========================= */
.listagem-item .nome-produto {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  margin-top: 14px;
  line-height: 1.4;
}

/* =========================
   💰 PREÇO (MAIS DESTAQUE)
========================= */
.listagem-item .preco-produto {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-top: 8px;
  margin-bottom: 14px;
}

/* =========================
   🛒 BOTÃO PREMIUM (FOCO)
========================= */
.listagem-item .botao-comprar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-width: 150px;
  padding: 13px 24px !important;

  background: linear-gradient(135deg, #000000, #2b2b2b) !important;
  color: #ffffff !important;

  font-size: 13px !important;
  font-weight: 600 !important;

  text-transform: uppercase;
  letter-spacing: 1px;

  border-radius: 999px;
  border: none;

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);

  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* EFEITO BRILHO */
.listagem-item .botao-comprar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.listagem-item .botao-comprar:hover::before {
  left: 100%;
}

/* HOVER */
.listagem-item .botao-comprar:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* CLICK */
.listagem-item .botao-comprar:active {
  transform: scale(0.96);
}

/* SETA */
.listagem-item .botao-comprar::after {
  content: "→";
  font-size: 14px;
  opacity: 0.9;
}

/* =========================
   ⭐ BADGE DESCONTO (LUXO)
========================= */
.listagem-item .desconto {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #C9A14A, #a8842f);
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =========================
   🔎 BUSCA
========================= */
input[type="search"] {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 12px;
  transition: 0.2s;
}

input[type="search"]:focus {
  border-color: #000;
  outline: none;
}

/* =========================
   📱 RESPONSIVO
========================= */
@media (max-width: 768px) {
  .listagem ul {
    gap: 14px;
  }

  .listagem .listagem-item {
    padding: 14px;
  }

  .listagem-item .botao-comprar {
    min-width: 130px;
    padding: 11px 18px !important;
  }
}