.productos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.producto {
  border: 1px solid #ccc;
  width: 250px;
  height: 370px; /* ALTURA FIJA PARA TODAS LAS TARJETAS */
  text-align: center;
  padding: 15px;
  background-color: #fff;
  transition: transform 0.3s;
}

.producto:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.producto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.producto h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.producto p {
  font-size: 0.9rem;
  color: #555;
}

.producto .precio {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 10px;
  color: #007BFF;
}