.whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
right: 40px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
z-index: 9999;
box-shadow: 0px 0px 15px rgba(0, 191, 255, 0.6);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
animation: pulse-planshopi 2s infinite;
}
.whatsapp-float img {
width: 35px;
}
.whatsapp-float:hover {
transform: scale(1.1);
background-color: #128c7e;
}
@keyframes pulse-planshopi {
0% {
box-shadow: 0 0 0 0 rgba(100, 149, 237, 0.7), 0 0 0 0 rgba(138, 43, 226, 0.7);
}
70% {
box-shadow: 0 0 0 15px rgba(100, 149, 237, 0), 0 0 0 15px rgba(138, 43, 226, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(100, 149, 237, 0), 0 0 0 0 rgba(138, 43, 226, 0);
}
}