.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 10px;
    animation: pulsate 1.5s ease-in-out infinite;
    z-index: 10;
}

.floating-whatsapp img {
    width: 80px;
    height: 80px;
    cursor: pointer;
}

.floating-whatsapp-venda {
    position: fixed;
    bottom: 120px;
    right: 40px;
    animation: pulsate 1.5s ease-in-out infinite;
    z-index: 10;
}

.floating-whatsapp-venda img {
    width: 80px;
    height: 80px;
    cursor: pointer;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 13px;
    }
    .floating-whatsapp img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 768px) {
    .floating-whatsapp-venda {
        bottom: 83px;
        right: 13px;
    }
    .floating-whatsapp-venda img {
        width: 50px;
        height: 50px;
    }
}