Email copiado!
function copyEmail() {
var email = "geral@apollotec.biz"; // Email que será copiado
var tempInput = document.createElement("input");
tempInput.value = email;
document.body.appendChild(tempInput);
tempInput.select();
document.execCommand("copy");
document.body.removeChild(tempInput);
// Mostra a notificação de cópia
var notification = document.getElementById("copyNotification");
notification.style.display = "block";
// Esconde a notificação após 2 segundos
setTimeout(function() {
notification.style.display = "none";
}, 2000);
}