@charset "UTF-8";
/* Estilos para a página de produtos por categoria */
.produtos-container {
  padding: 20px 0;
  background-color: #f1f1f1;
  min-height: 600px;
}

.categoria-titulo {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.produtos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.produto-card {
  background-color: transparent;
  overflow: hidden;
  height: 100%;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.produto-card:hover {
  opacity: 0.9;
}

.produto-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.produto-img-container {
  height: 212px;
  width: 255px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.produto-img--placeholder {
  width: 255px;
  height: 212px;
  max-width: 100%;
  background: #e9ecef;
}

[x-cloak] {
  display: none !important;
}

.produto-info {
  text-align: center;
  padding: 10px 0;
}

.produto-nome {
  font-size: 14px;
  font-weight: normal;
  color: #333;
  margin-bottom: 5px;
  text-align: center;
  display: block;
}

.produto-preco {
  font-size: 16px;
  font-weight: 600;
  color: #0066cc;
  margin-top: 5px;
  text-align: center;
  display: block;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .produtos-grid {
    gap: 15px;
  }
  .produto-img-container {
    height: 200px;
  }
  .produto-nome {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .categoria-titulo {
    font-size: 26px;
  }
  .produto-img-container {
    height: 180px;
  }
}
