O credenciamento para a edição 2026 está fechado, enquanto isso receba as principais informações do setor e do evento em seu email
(function () {
if (!window.location.hash) return;
var hash = window.location.hash;
// 1. Desativa a restauração automática de scroll do browser
if ('scrollRestoration' in history) {
history.scrollRestoration = 'manual';
}
// 2. Remove o hash da URL para o browser NÃO tentar scrollar sozinho
history.replaceState(null, document.title, window.location.pathname + window.location.search);
// 3. Força o scroll somente após tudo carregar
jQuery(window).on('load', function () {
setTimeout(function () {
var target = jQuery(hash);
if (!target.length) return;
var offsetTop = target.offset().top - 80; // ajuste do header
jQuery('html, body').stop(true, true).scrollTop(offsetTop);
}, 800);
});
})();