.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: block;
    width: 58px;
    height: 58px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: #d8a541;
    box-shadow: inset 0 0 0 1px rgba(255, 235, 177, .95), 0 11px 26px rgba(0, 0, 0, .28);
    clip-path: circle(50% at 50% 50%);
    transition: transform .25s ease;
}

.whatsapp-float > img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 25px;
    height: 29px;
    margin: 0;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.whatsapp-float:hover {
    transform: scale(1.07);
}

@media (max-width: 760px) {
    .whatsapp-float {
        display: none;
    }
}
