/* ========== PRODUCTOS ========== */
.productos {
  padding: 60px 5%;
  background-color: #fff;
}

.productos-titulo {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #28a745;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adaptable */
  gap: 30px;
}

.producto-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.producto-card:hover {
  transform: translateY(-5px);
}

.producto-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.producto-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #222;
}

.producto-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.producto-card .precio {
  font-weight: bold;
  color: #28a745;
  display: block;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.producto-card .btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.producto-card .btn:hover {
  background-color: #0056b3;
}
