Aguarde, em poucos segundos você estará falando com a gente no WhatsApp
10 Segundos você será redirecionado para o Atendimento via WhatsApp! Por favor, aguarde!
var timeleft = 10;
var downloadTimer = setInterval(function(){
timeleft--;
document.getElementById("countdowntimer").textContent = timeleft;
if(timeleft <= 0)
clearInterval(downloadTimer);
},1000);