/* --- FONT IMPORT (Exemplo: Roboto com pesos 400 e 700) --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* --- ESTILOS GERAIS E BASE --- */
body, html, input, button, select, textarea {
  font-family: 'Roboto', sans-serif;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
  background-color: #f5f5f5;
  color: #333;
}

/* --- RODAPÉ --- */
#rodape .institucional a {
  color: #1a5d3c;
  font-size: 14px;
  font-weight: 500;
}
.links-rodape ul li a {
  color: #1a5d3c;
  font-size: 13px;
  text-transform: capitalize;
}
.fundo-secundario,
.fundo-secundario a,
.fundo-secundario a:hover {
  color: #1a5d3c;
}
#rodape .titulo {
  color: #1a5d3c;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(115 44 44);
}

/* --- PREÇOS --- */
.preco-promocional {
  color: #1A5D3C !important;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 0 1px #d4af37;
  display: block;
  margin-bottom: 5px;
}
.preco-parcela {
  color: #222 !important;
  font-size: 14px;
  font-weight: 500;
  background-color: #eeeeee;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}

/* --- BANNERS --- */
.flexslider .slides img {
  max-height: 400px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* -------------------------- */
/* ESTILOS PARA OS CARDS DE PRODUTO */
/* -------------------------- */
@media (min-width: 768px) {
  .listagem .listagem-item {
    display: flex;
    flex-direction: column;
    height: 430px;
    background: #fff;
    border: 2px solid #d4af37;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
  }

  .listagem .produtos-carrossel .listagem-linha li .listagem-item {
    margin: 10px 10px;
  }

  .listagem .listagem-item .imagem-produto img {
    width: 100%;
    height: 148px;
    object-fit: cover;
    border-radius: 19px;
    margin-bottom: 5px;
    display: block;
  }

  .listagem .listagem-item .info-produto .nome-produto {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 38px;
    max-height: 38px;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
  }

  .listagem .listagem-item .preco-produto {
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
  }

  .listagem .listagem-item .acoes-produto {
    margin-top: auto;
    width: 100%;
    padding-top: 10px;
    position: absolute;
    left: 0;
    bottom: 12px;
    z-index: 2;
    background: transparent;
    display: flex;
    justify-content: center;
  }

  .listagem .listagem-item:hover .acoes-produto,
  .listagem .listagem-item:active .acoes-produto {
    margin-top: auto;
    position: absolute;
    left: 0;
    bottom: 12px;
  }
}

