.festival-lights-container, .snowfall-container, .fireworks-container { 
   */display: none !important; /* Para Desabilitar, basta remover o '/*' do começo do display: none */
}

.festival-lights-container {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999999;
}

.light-wire {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
}

.festival-bulb {
  position: absolute;
  top: 20px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  animation: glow 0.5s ease-in-out infinite alternate;
}

.festival-bulb::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #333;
  border-radius: 2px;
}

.festival-bulb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
}

.festival-bulb.cyan {
  background: linear-gradient(180deg, #00d4ff 0%, #0088cc 100%);
  box-shadow: 0 0 20px #00d4ff, 0 0 40px #00d4ff;
  animation-delay: 0s;
}

.festival-bulb.magenta {
  background: linear-gradient(180deg, #ff0099 0%, #cc0066 100%);
  box-shadow: 0 0 20px #ff0099, 0 0 40px #ff0099;
  animation-delay: 0.3s;
}

.festival-bulb.green {
  background: linear-gradient(180deg, #00ff88 0%, #00cc66 100%);
  box-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88;
  animation-delay: 0.6s;
}

.festival-bulb.yellow {
  background: linear-gradient(180deg, #ffff00 0%, #cccc00 100%);
  box-shadow: 0 0 20px #ffff00, 0 0 40px #ffff00;
  animation-delay: 0.9s;
}

@keyframes glow {
  0% {
    filter: brightness(0.8);
    transform: translateY(0);
  }
  100% {
    filter: brightness(1.3);
    transform: translateY(-2px);
  }
}

.snowfall-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999999;
}

.snow-flake {
  position: absolute;
  top: -10px;
  color: white;
  font-size: 1em;
  opacity: 0.8;
  animation: fall linear infinite;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

.fireworks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.firework-rocket {
  position: absolute;
  width: 3px;
  height: 20px;
  background: linear-gradient(to top, transparent, white);
  animation: launch 1s ease-out forwards;
}

.firework-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
  animation: explode 1.2s ease-out forwards;
}

@keyframes launch {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(var(--launch-distance));
    opacity: 0;
  }
}

@keyframes explode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0.3);
    opacity: 0;
  }
}