
.whatsapp{
	 position: fixed;
    bottom: 1.5em; right: 1.5em;
    background-color: #25d366;
    color: #ffffff;
    font-family: sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6em 1.2em;
    border-radius: 50px;
    min-height: 44px;
    text-decoration: none;
    box-shadow: 0 0.3em 0.6em rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
           animation: 5s linear infinite wiggle;
    transform-origin: 50% 5em;
}

@keyframes wiggle {
    0%, 100%, 40%, 7% {
    transform: rotateZ(0);
}
15% {
    transform: rotateZ(-15deg);
}
20% {
    transform: rotateZ(10deg);
}
25% {
    transform: rotateZ(-10deg);
}
30% {
    transform: rotateZ(6deg);
}
35% {
    transform: rotateZ(-4deg);
}


.whatsapp:hover{color: #25d366;background-color: #fff;}


@media screen and (min-width:360px) and (max-width:1024px) {
   

}