/* ============================
   PALETA MARQUESYS
============================ */
:root {
  --primary: #0054A6;
  --primary-dark: #003d78;
  --secondary: #00a2ff;
  --text-dark: #222;
  --text-light: #777;
  --bg-light: #f4f6f9;
  --radius: 10px;
  --shadow: 0 3px 12px rgba(0,0,0,0.12);
}

/* ============================
   1. HEADER / TOPO
============================ */
.top-bar {
  background: var(--primary);
  color: #fff;
  padding: 6px 0;
  font-size: 14px;
}

.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

.header .logo img {
  max-height: 65px !important;
}

/* Espaçamento horizontal do header */
.header .conteiner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================
   2. MENU / NAVEGAÇÃO
============================ */
#menu-superior li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 12px 18px !important;
  transition: .3s ease;
}

#menu-superior li a:hover {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--primary);
}

/* Menu mobile */
#menu-mobile {
  background: var(--primary);
}

#menu-mobile a {
  color: #fff !important;
  font-size: 18px;
  padding: 14px 0;
}

/* ============================
   4. CARDS DE PRODUTO
============================ */
.produto {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  transition: transform .25s, box-shadow .25s;
}

.produto:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.lista-produto-imagem img {
  transition: transform .3s;
}

.produto:hover .lista-produto-imagem img {
  transform: scale(1.06);
}

/* Nome */
.produto .nome {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
}

/* Preço */
.produto .preco {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: bold;
}

/* Comprar */
.produto .acoes-produto a.botao {
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--radius);
  padding: 10px;
  font-weight: 600;
}

.produto .acoes-produto a.botao:hover {
  background: var(--primary-dark);
}

/* ============================
   7. RODAPÉ
============================ */
footer.footer {
  background: #0d1b2a !important;
  color: #fff !important;
  padding: 40px 20px !important;
}

footer.footer h4 {
  color: #fff !important;
  font-size: 18px;
  margin-bottom: 10px;
}

footer.footer a {
  color: #ccc !important;
  margin: 4px 0;
  display: block;
}

footer.footer a:hover {
  color: #fff !important;
}

.footer-social i {
  font-size: 26px;
  margin-right: 12px;
}

/* rights */
.footer-copy {
  background: #07111e;
  color: #ccc !important;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

/* ============================
   8. RESPONSIVIDADE
============================ */
@media (max-width: 768px) {

  .header .logo img {
    max-height: 55px !important;
  }

  #menu-superior li a {
    padding: 10px !important;
    font-size: 15px;
  }

  .produto {
    margin-bottom: 18px;
  }

  footer.footer {
    text-align: center;
  }
}
