.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(128, 128, 128, 0.5);  
}

 .message {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #e10d0d;
	font-size: 60px;
	text-align: center;
	z-index: 2; /* Fica acima da overlay */
	display: none; /* Inicialmente escondido */
}