jQuery(window).on('elementor/frontend/init', function() {
const loginLink = document.querySelector('.must-log-in a');
if (loginLink) {
loginLink.addEventListener('click', function(e) {
e.preventDefault();
// Substitua 123 pelo ID real do seu popup
elementorProFrontend.modules.popup.showPopup({ id: 141528 });
});
}
});