.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 30px;
}

.produto-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,77,38,0.1);
}

.produto-imagem-container {
  height: 160px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 77, 38, 0.1);
}

.produto-imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produto-card:hover .produto-imagem {
  transform: scale(1.05);
}

.sem-imagem {
  color: #e0e0e0;
  font-size: 3.5rem;
}

.produto-corpo {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.produto-titulo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #004d26;
  margin-bottom: 10px;
}

.produto-categoria {
  font-size: 0.75rem;
  background: rgba(0, 77, 38, 0.1);
  color: #004d26;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.produto-descricao {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: auto;
  line-height: 1.4;
}

.btn-detalhes {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #004d26;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-detalhes i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.btn-detalhes:hover {
  color: #002e16;
}

.btn-detalhes:hover i {
  transform: translateX(3px);
}

/* Botão Ver Todos */
.btn-ver-todos {
  display: inline-block;
  padding: 12px 30px;
  background: #004d26;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #004d26;
}

.btn-ver-todos:hover {
  background: transparent;
  color: #004d26;
}

/* Responsivo */
@media (max-width: 768px) {
  .produtos-grid {
    padding: 0 15px;
  }

  .produto-imagem-container {
    height: 140px;
  }

  .produto-titulo {
    font-size: 1rem;
  }

  .produto-descricao {
    font-size: 0.85rem;
  }
}
