* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  overflow: hidden;
  height: 100vh;
  background: #1a0033;
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px;
  text-align: center;
  font-size: 1.25em;
  text-shadow: 0 0 10px #ff69b4;
}

.carousel {
  display: flex;
  height: 100vh;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  background: #1a0033; /* Fondo oscuro cuando la imagen no llena todo */
}

.slide {
  flex: 0 0 100vw;
  height: 100vh;
  position: relative;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a0033;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* ← Cambiado a contain para ver la foto completa */
  display: block;
  max-height: 100vh;
}

/* Texto mejorado - menos invasivo */
.overlay {
  position: absolute;
  bottom: 45px;
  left: 20px;
  right: 20px;
  text-align: center;
  font-size: 1.3em;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  text-shadow: 0 0 12px #ff1493;
  pointer-events: none;
  line-height: 1.35;
  max-width: 92%;
  margin: 0 auto;
}

/* Corazones flotantes de fondo */
.heart {
  position: absolute;
  font-size: 30px;
  color: #ff69b4;
  pointer-events: none;
  animation: floatHeart 12s linear infinite;
  z-index: 10;
  text-shadow: 0 0 10px #ff1493;
}

@keyframes floatHeart {
  0% { transform: translateY(100vh) rotate(0deg); }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* Botón música */
.music-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 200;
  padding: 12px 26px;
  background: #ff1493;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.15em;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.music-btn:hover {
  transform: scale(1.08);
}

