body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

.hero {
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: white;
  text-align: center;
  padding: 100px 20px;
  animation: fadeIn 2s ease-in-out;
}

.animated-title {
  font-size: 4em;
  animation: bounceIn 1.5s ease;
}

.subtitle {
  font-size: 1.5em;
  margin: 20px 0;
}

.btn {
  background: white;
  color: #ee0979;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.1);
}

.productos {
  padding: 50px 20px;
  text-align: center;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 20px;
  width: 200px;
  transition: transform 0.3s ease;
  animation: slideUp 1s ease forwards;
}

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

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
