/* Efeito Neve */
#snow-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9999;
	overflow: hidden;
}

.snowflake {
	position: absolute;
	background-color: white;
	border-radius: 50%;
	pointer-events: none;
	box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes fall {
	0% {
		transform: translateY(-20px) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: translateY(100vh) rotate(360deg);
		opacity: 0;
	}
}