/* Fuentes */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.fondo-nubes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url('img/vrillo.png') center/cover no-repeat,
    linear-gradient(to bottom, #96C9F4, #c0e8fc, #cceeff, #ffffff);
  z-index: -1;
}

/* Botón de música */
.boton-musica {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

/* Estilos de texto */
#Mis {
  font-family: 'Alex Brush', cursive;
  color: black;
  text-align: center;
  font-size: 50px;
  line-height: 1;
}
#TextPrincipal {
  font-family: 'Alex Brush', cursive;
  color: black;
  text-align: center;
  font-size: 15vw;
  line-height: 1;
}
#Texto, #Text {
  font-size: 5vw;
  text-align: center;
}
#Titulo {
  font-size: 10vw;
  color: #0F67B1;
  text-align: center;
}
#event {
  font-size: 8vw;
  text-align: center;
}

/* Contenedor general */
.contenedor {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Iframe responsivo */
.iframe-container {
  padding: 20px;
}
.iframe-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
}
.iframe-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Imágenes */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/* Efecto de brillos (puedes personalizarlo más) */
.brillos span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #fff;
  margin: 5px;
  border-radius: 50%;
  animation: brillo 1.5s infinite ease-in-out;
}

@keyframes brillo {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Responsive para móviles */
@media (max-width: 600px) {
  #TextPrincipal {
    font-si
