Redirecionando...
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body {
width: 100vw;
height: 100vh;
background: #ffffff;
color: #000000;
display: flex;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
width: 90%;
max-width: 400px;
}
h1 {
font-size: 20px;
margin-bottom: 16px;
font-weight: 600;
}
.timer {
font-size: 18px;
margin-bottom: 20px;
}
.progress-bar {
width: 100%;
height: 6px;
background: #e0e0e0;
border-radius: 4px;
overflow: hidden;
}
.progress {
height: 100%;
width: 0%;
background: #000000;
transition: width 1s linear;
}
Você está sendo redirecionada para alguém da equipe
Redirecionando em 5s
let seconds = 5;
const countEl = document.getElementById("count");
const progressEl = document.getElementById("progress");
const totalTime = 5;
let elapsed = 0;
const interval = setInterval(() => {
elapsed++;
seconds--;
countEl.textContent = seconds;
progressEl.style.width = (elapsed / totalTime) * 100 + "%";
if (seconds <= 0) {
clearInterval(interval);
window.location.href = "https://wa.me/5567996660111?text=Ol%C3%A1%2C%20vim%20pelo%20site%20e%20gostaria%20de%20agendar%20uma%20avalia%C3%A7%C3%A3o%20particular%21";
}
}, 1000);