﻿/*icone do whatsapp*/

#whatsapp-icon {
    position: fixed;
    z-index: 100;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}

    #whatsapp-icon img {
        width: 65px;
        height: 65px;
        margin: 5px;
    }

@keyframes jump {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.jumping-icon {
    animation: jump 1s infinite;
}
