.va-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #1f6f5b 0%, #0f3f34 100%);
    box-shadow: 0 18px 45px rgba(15, 63, 52, 0.28), 0 8px 18px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-family: inherit;
    transform: translateY(0);
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.va-whatsapp-float:hover,
.va-whatsapp-float:focus {
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 63, 52, 0.34), 0 10px 22px rgba(0, 0, 0, 0.16);
    background: linear-gradient(135deg, #2b806b 0%, #123f35 100%);
    outline: none;
}

.va-whatsapp-float__icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
    flex: 0 0 auto;
}

.va-whatsapp-float__icon svg {
    width: 27px;
    height: 27px;
    fill: #ffffff;
    display: block;
}

.va-whatsapp-float__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    letter-spacing: .01em;
}

.va-whatsapp-float__text strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.va-whatsapp-float__text small {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.78);
    white-space: nowrap;
}

.va-whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(31, 111, 91, 0.22);
    animation: vaWhatsAppPulse 2.3s ease-out infinite;
    z-index: -1;
}

@keyframes vaWhatsAppPulse {
    0% {
        transform: scale(1);
        opacity: .8;
    }
    80%, 100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .va-whatsapp-float {
        right: 16px;
        bottom: 18px;
        min-height: 54px;
        padding: 9px 14px 9px 9px;
        gap: 8px;
    }

    .va-whatsapp-float__icon {
        width: 37px;
        height: 37px;
    }

    .va-whatsapp-float__icon svg {
        width: 25px;
        height: 25px;
    }

    .va-whatsapp-float__text strong {
        font-size: 13px;
    }

    .va-whatsapp-float__text small {
        font-size: 10px;
    }
}

@media (max-width: 420px) {
    .va-whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 10px;
    }

    .va-whatsapp-float__text {
        display: none;
    }
}
