Com relação aos seus dados pessoais de endereçamento, pagamento e conteúdo do pedido, você pode estar certo de que não serão utilizados para outros fins que não o de processamento dos pedidos realizados, não sendo portanto divulgados em hipótese alguma.

Com relação à segurança no tráfego de dados, toda transação que envolver pagamento, seja por cartão de crédito ou não, estará encriptada com a tecnologia SSL (Secure Socket Layer). Isso significa que só nossa empresa terá acesso a estes dados.

`; // Adicionar estilos var style = document.createElement('style' ); style.textContent = ` #whatsapp-floating-button { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; align-items: center; } .help-text { background-color: #25D366; color: white; padding: 5px 10px; border-radius: 15px; font-size: 14px; font-weight: bold; margin-bottom: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); animation: bounce 1.5s infinite; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } } #whatsapp-floating-button a { text-decoration: none; display: block; position: relative; } .whatsapp-icon-container { width: 60px; height: 60px; background-color: #25D366; border-radius: 50%; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.28); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; } .whatsapp-icon-container:hover { background-color: #22c15e; transform: scale(1.05); } .whatsapp-icon { width: 30px; height: 30px; color: white; } .pulse { position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50%; background-color: #25D366; opacity: 0.6; animation: pulse 1.5s infinite; } @keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 70% { transform: scale(1.3); opacity: 0; } 100% { transform: scale(1.3); opacity: 0; } } @media (max-width: 768px) { #whatsapp-floating-button { bottom: 15px; right: 15px; } .help-text { font-size: 12px; padding: 4px 8px; } .whatsapp-icon-container { width: 50px; height: 50px; } .whatsapp-icon { width: 25px; height: 25px; } } `; // Adicionar elementos ao body document.body.appendChild(style); document.body.appendChild(whatsappButton); });