.produtos-section {
  width: 100%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.produtos-section h1 {
  color: #155f2a;
  font-size: 2rem;
  margin-bottom: 10px;
}

.produtos-section p {
  color: #333;
  margin-bottom: 40px;
  font-size: 16px;
}

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

.produto-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.produto-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.produto-card h3 {
  color: #155f2a;
  font-size: 1.2rem;
  padding: 15px 0;
}

/* ===============================
      CreatedBy Isac Pelembe    
   =============================== */