.whatsapp-float {
    align-items: center;
    background-color: #25d366;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 8px 24px rgba(12, 35, 24, 0.22);
    color: #fff;
    display: inline-flex;
    height: 58px;
    justify-content: center;
    position: fixed;
    right: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 58px;
    z-index: 1050;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background-color: #20bd5a;
    box-shadow: 0 10px 28px rgba(12, 35, 24, 0.3);
    color: #fff;
    transform: translateY(-3px);
}

.whatsapp-float i {
    font-size: 30px;
}

@media (max-width: 575px) {
    .whatsapp-float {
        bottom: 16px;
        height: 52px;
        right: 16px;
        width: 52px;
    }

    .whatsapp-float i {
        font-size: 27px;
    }
}
