.whatsapp-float {
    position: fixed; 
    bottom: 20px;    
    right: 20px;      
    z-index: 1000;   
    display: block;
    width: 170px;     
    height: 60px;   
    transition: transform 0.3s;
    cursor: pointer;
}

.whatsapp-float> img {
    width: 180px;
    height: 100%;
    object-fit: cover;
}

.whatsapp-float:hover {
    transform: scale(1.2); 
}