/* ACP Elementor Extras — Popup genérico basado en clases.
   Se activa SOLO en elementos con la clase "acp-ee-popup" (opt-in),
   para no afectar ningún otro Container/Section del sitio. */

.acp-ee-popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(4, 24, 43, 0.72);
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow-y: auto;
}

@supports (backdrop-filter: blur(1px)) {
	.acp-ee-popup {
		backdrop-filter: blur(4px);
	}
}

.acp-ee-popup.acp-ee-popup-open {
	display: flex;
}

body.acp-ee-popup-lock {
	overflow: hidden;
}

.acp-ee-popup-close {
	cursor: pointer;
}
