/* =========================
RESET LIMPO
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
BASE
========================= */
body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}

/* =========================
HEADER
========================= */
.header-principal {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.menu a {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}

/* =========================
BOTÕES
========================= */
.botao,
.botao-comprar {
  background-color: #000 !important;
  color: #fff !important;
  border-radius: 30px;
  padding: 12px 20px;
  font-weight: bold;
  border: none;
}

/* =========================
PRODUTOS
========================= */
.listagem-item {
  border: none !important;
  padding: 10px;
}

.listagem-item img {
  width: 100%;
  border-radius: 8px;
}

.nome-produto {
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
}

.preco-produto {
  font-size: 16px;
  font-weight: bold;
}

/* =========================
PÁGINA PRODUTO
========================= */
.produto .nome-produto {
  font-size: 22px;
  font-weight: 800;
}

.produto .preco-produto {
  font-size: 24px;
}

.descricao-produto {
  font-size: 14px;
  line-height: 1.5;
}

/* =========================
FOOTER
========================= */
.institucional {
  background: #000;
  color: #fff;
  padding: 30px 15px;
}

.institucional a {
  color: #ccc;
}

/* =========================
MOBILE
========================= */
@media screen and (max-width: 768px) {

  .listagem-item {
    width: 48% !important;
    display: inline-block;
    margin: 1%;
  }

  .botao-comprar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
}