.elementor-2971 .elementor-element.elementor-element-43a773a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d74b6cf */# JS para o timer
js_content = """
let time = 599;
const timer = document.getElementById("timer");
setInterval(() => {
    const minutes = Math.floor(time / 60);
    const seconds = time % 60;
    timer.innerText = `${minutes < 10 ? '0' : ''}${minutes}:${seconds < 10 ? '0' : ''}${seconds}`;
    if (time > 0) time--;
}, 1000);/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-43a773a */# CSS básico
css_content = """
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    padding: 20px;
    color: #333;
}
h1 {
    color: red;
}
#timer {
    font-size: 24px;
    color: green;
    font-weight: bold;
}
#social-proof p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}
button {
    background-color: #ff0000;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}/* End custom CSS */