body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-image: url('images/fondo.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

.banner {
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  background-color: #d63384;
  padding: 1rem;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.menu li a:hover {
  text-decoration: underline;
}

.galeria {
  padding: 2rem;
  text-align: center;
  background-color: rgba(255, 240, 246, 0.9);
}

.galeria h2 {
  color: #d63384;
  margin-bottom: 1.5rem;
}

.imagenes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.imagenes img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.imagenes img:hover {
  transform: scale(1.05);
}

.sobre-nosotros {
  padding: 4rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  color: #333;
}

.sobre-nosotros h2 {
  color: #d63384;
  margin-bottom: 1rem;
}

.sobre-nosotros p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contacto {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #ffe4f2;
}

.contacto a {
  text-decoration: none;
  color: #d63384;
  font-weight: bold;
}


