/* Importa a fonte via @import no início */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Bebas+Neue&display=swap');

/* Tipografia global */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #111111;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

/* Cartões de produto */
.listagem-item {
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 12px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listagem-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Botões padrão */
.botao,
.botao-principal,
.comprar-btn {
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #000000;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.botao:hover,
.botao-principal:hover,
.comprar-btn:hover {
  background-color: #E11D48;
  transform: scale(1.04);
  color: #fff;
}

/* Rodapé */
footer {
  background-color: #f4f4f4;
  padding: 32px 16px;
  font-size: 13px;
  color: #333333;
  text-align: center;
  line-height: 1.6em;
}

footer a {
  color: #000000;
  font-weight: 500;
  text-decoration: none;
}

footer a:hover {
  color: #E11D48;
}

/* Preços */
.preco-produto {
  font-size: 18px;
  font-weight: bold;
  color: #111111;
}

/* Banner visual */
.banner {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Ocultar elementos opcionais */
.rating-stars,
.etiqueta-promocao,
.breadcrumb {
  display: none;
}
