#whatsapp-popup {
position: fixed;
bottom: 20px;
right: 20px;
background: #fff;
border: 2px solid #25D366;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
z-index: 9999;
display: flex;
align-items: flex-start;
padding: 10px;
max-width: 300px;
font-family: Arial, sans-serif;
animation: slideIn 0.5s ease-out;
}
#whatsapp-popup img {
width: 60px;
height: auto;
margin-right: 10px;
border-radius: 50%;
}
#whatsapp-popup .text {
flex-grow: 1;
font-size: 15px;
color: #333;
}
#whatsapp-popup .text strong {
display: block;
color: #25D366;
margin-bottom: 5px;
}
#whatsapp-popup a {
display: inline-block;
background-color: #25D366;
color: white;
text-decoration: none;
padding: 8px 12px;
border-radius: 10px;
font-weight: bold;
margin-top: 8px;
}
/* Botão de fechar */
#close-popup {
position: absolute;
top: 5px;
right: 8px;
background: none;
border: none;
font-size: 16px;
color: #888;
cursor: pointer;
}
#close-popup:hover {
color: #333;
}
@keyframes slideIn {
from {
transform: translateY(100px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
document.getElementById(‘close-popup’).addEventListener(‘click’, function() {
document.getElementById(‘whatsapp-popup’).style.display = ‘none’;
});
Avaliações
Não há avaliações ainda.