body {
  font-family: Arial, sans-serif;
  margin: 20px;
  background-color: #f5f5f5;
}

h1,
h2 {
  text-align: center;
  color: #333;
}

.productos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.producto {
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 180px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.producto:hover {
  box-shadow: 0 4px 10px rgba(102, 0, 255, 0.6);
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.producto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.producto p {
  margin: 5px 0;
}
