.produtos-section {
  width: 100%;
  padding: 80px 0;
  background-color: #1c1c1c; 

}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 40px;
}

.produto-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background-color: #2a2a2a;
  border: 1px solid #444;
  overflow: hidden;
  transition: transform 0.3s ease;
}


.produto-item:hover {
  transform: translateY(-5px);
}

.produto-image {
  width: 100%;
  height: 370px; /* atualizado para refletir o novo tamanho */
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


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


/* Legenda abaixo da imagem */
.produto-caption {
  padding: 10px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.produto-nome {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1em;
  margin: 0;
  color: #ffffff;
}


.produto-categoria {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 300;
  font-size: 0.85em;
  margin-top: 5px;
  color: #cccccc;
}



.btn-load-more {
  margin: 40px auto 0;
  display: block;
  background-color: #d60000;
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-load-more:hover {
  background-color: #b00000;
}

/* Responsivo */
@media (max-width: 1024px) {
  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .produtos-grid {
    grid-template-columns: 1fr;
  }
}
