.whatsapp-floating {
    position: fixed;
    z-index: 1200;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px 11px 11px;
    color: #ffffff;
    background: #16a34a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(22, 163, 74, 0.3);
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.whatsapp-floating:hover {
    color: #ffffff;
    background: #15803d;
    box-shadow: 0 22px 48px rgba(22, 163, 74, 0.4);
    transform: translateY(-4px);
}

.whatsapp-floating-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.whatsapp-floating-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.whatsapp-floating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-floating-text small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
}

.whatsapp-floating-text strong {
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
}
