// Verifica se é um dispositivo móvel (tela menor que 768px e suporte a toque)
const isMobile = window.matchMedia("(max-width: 767px)").matches ||
('ontouchstart' in window || navigator.maxTouchPoints > 0);
if (isMobile) {
// Adiciona o estado falso inicial no histórico
history.pushState(null, document.title, location.href);
// Intercepta a tentativa de voltar
window.addEventListener('popstate', function (event) {
// Empurra o histórico novamente para bloquear o botão voltar
history.pushState(null, document.title, location.href);
// Ação desejada (Ex: Alerta ou Redirecionamento)
alert("Oferta exclusiva para celular! Não saia ainda.");
// Caso queira redirecionar:
// window.location.href = "https://seusite.com";
});
}