
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  scroll-behavior: smooth;
}
section {
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero {
  background-image: url('fondo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}
h1 {
  font-size: 3em;
  margin: 0;
}
h2 {
  font-size: 2em;
  color: #b665a1;
}
p {
  max-width: 600px;
  text-align: center;
}
.imagenes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.imagenes img {
  width: 250px;
  border-radius: 10px;
}
.btn {
  margin-top: 20px;
  padding: 10px 20px;
  background: #b665a1;
  color: white;
  text-decoration: none;
  border-radius: 25px;
}
