.btn-whatsappFloat{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #00CF36;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: .3s ease all;
    @media (max-width: 1200px) {
        bottom: 40px;
        right: 40px;
    }
}
.btn-whatsappFloat:hover,
.btn-whatsappFloat:focus,
.btn-whatsappFloat:active{
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}