.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active {
    background-color: #128c7e;
    color: #fff !important;
    text-decoration: none !important;
}

.whatsapp-float:visited {
    background-color: #25d366; /* Mantiene el verde original */
    color: #fff !important;
    text-decoration: none !important;
}

.whatsapp-float i {
    line-height: 1;
    color: #fff !important;
    text-decoration: none !important;
}

/* Responsive for smaller screens */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}
