body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fff;
  color: #333;
  text-align: center;
}

header {
  background-color: #fff;
  padding: 40px 20px;
}

header h1 {
  margin-bottom: 20px;
  font-size: 36px;
}

header img {
  width: 100%;
  max-width: 1200px;
  height: 600px;              /* Ajusta esto para cortar más o menos */
  object-fit: cover;
  object-position: top;       /* Muestra la parte superior */
  display: block;
  margin: 0 auto;
}


section {
  padding: 40px 20px;
}

section h2 {
  font-style: italic;
  font-size: 24px;
  margin-bottom: 20px;
}

section p {
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
}
.boton-lunar {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #111;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}

.luna-fondo {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.boton-lunar:hover .luna-fondo {
  opacity: 1;
}

.luna-fondo span {
  position: absolute;
  font-size: 24px;
  color: #a259ff;
  opacity: 0.8;
}

/* Posiciones y tamaños "aleatorios" */
.luna-fondo span:nth-child(1) {
  top: 10%;
  left: 15%;
  font-size: 30px;
  transform: rotate(-20deg);
}

.luna-fondo span:nth-child(2) {
  top: 30%;
  left: 70%;
  font-size: 36px;
  transform: rotate(45deg);
}

.luna-fondo span:nth-child(3) {
  top: 60%;
  left: 40%;
  font-size: 28px;
  transform: rotate(90deg);
}

.luna-fondo span:nth-child(4) {
  top: 20%;
  left: 50%;
  font-size: 24px;
  transform: rotate(-60deg);
}

.luna-fondo span:nth-child(5) {
  top: 70%;
  left: 20%;
  font-size: 34px;
  transform: rotate(15deg);
}

.luna-fondo span:nth-child(6) {
  top: 45%;
  left: 80%;
  font-size: 26px;
  transform: rotate(-45deg);
}

.luna-fondo span:nth-child(7) {
  top: 5%;
  left: 85%;
  font-size: 38px;
  transform: rotate(120deg);
}
.boton-lunar.entrando .luna-fondo span {
  animation: luna-slide 0.8s forwards;
}

@keyframes luna-slide {
  0% {
    transform: translateX(-100px) scale(1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}
