/* Fondo general para TODOS los HTML */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background-color: #6B3E36;
  overflow-x: hidden;
  position: relative;
  font-family: sans-serif;
}

/* Contenedor de símbolos random */
.background-symbols {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Cada símbolo */
.background-symbols {
  position: fixed;
  width: 140vw;
  height: 140vh;
  left: -20vw;
  top: -20vh;
}


/* Hada fija abajo a la izquierda */
.hada {
  position: fixed;
  bottom: -10px;
  left: -10px;
  width: 325px; /* antes era chica */
  z-index: 4;
  pointer-events: none;
  
}

@keyframes hada-flotando {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}

.hada {
  animation: hada-flotando 4s ease-in-out infinite;

}


.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #fff, rgba(255,255,255,0));
  pointer-events: none;
  animation: sparkle-fade 0.6s ease-out forwards;
}

@keyframes sparkle-fade {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

