/* Fundo escuro translúcido -------------------------------------------------------------------- */

	.evento_popup-overlay {
		z-index: 999;
		position: fixed;
		top: 0; left: 0; right: 0; bottom: 0;
		background: rgba(0,0,0,0.9);
		backdrop-filter: blur(6px);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.8s ease;
	}

	.evento_popup-overlay.active {
		opacity: 1;
		pointer-events: all;
	}

/* Caixa do popup ------------------------------------------------------------------------------ */

	.evento_popup {
		max-width: 720px;
		background: #361C00;
		/* background-image: url("../imagens/bg/madeira.jpg"); */
		border-radius: 16px;
		padding: 2px;
		text-align: center;
		transform: scale(0.8);
		opacity: 0;
		transition: all 0.4s ease;
	}

	.evento_popup-overlay.active .evento_popup {
		transform: scale(1);
		opacity: 1;
	}



/* Rótulo com a logo --------------------------------------------------------------------------- */

	.evento_popup h2 {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}

	.evento_popup p {
		font-size: 1rem;
		margin-bottom: 15px;
		color: #fff;
	}

