.elo-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 10px 28px rgba(9, 30, 66, 0.3);
    text-decoration: none !important;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.elo-whatsapp-float:hover,
.elo-whatsapp-float:focus-visible {
    color: #fff !important;
    background: #1fbd59;
    box-shadow: 0 14px 34px rgba(9, 30, 66, 0.38);
    transform: translateY(-3px) scale(1.04);
}

.elo-whatsapp-float:focus-visible {
    outline: 3px solid #ff9d38;
    outline-offset: 4px;
}

.elo-whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.elo-whatsapp-float__label {
    position: absolute;
    right: calc(100% + 12px);
    width: max-content;
    padding: 9px 12px;
    color: #fff;
    border-radius: 5px;
    background: #181d4e;
    font-family: "Outfit", sans-serif;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.elo-whatsapp-float:hover .elo-whatsapp-float__label,
.elo-whatsapp-float:focus-visible .elo-whatsapp-float__label {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 720px) {
    .elo-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .elo-whatsapp-float svg {
        width: 31px;
        height: 31px;
    }

    .elo-whatsapp-float__label {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .elo-whatsapp-float,
    .elo-whatsapp-float__label {
        transition: none;
    }
}
