.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
   /* background: #25d366;*/
    border-radius: 50%;
   /* box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);*/
    transition: all 0.3s ease;
    background-image: url('../images/whatsapp.webp');
    background-size: 80px 80px;
    background-repeat: no-repeat;
    background-position: center;
}

.whatsapp-float a:hover {
   /* background-color: #128c7e;*/
    transform: scale(1.1);
  /*  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);*/
}

.whatsapp-float i {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        background-size: 28px 28px;
    }
}
