.floating-support-bubble {
    position: fixed;
    bottom: 28px;
    z-index: 1055;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.01em;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 34px rgba(17, 15, 11, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 0;
    cursor: pointer;
}

.floating-support-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(17, 15, 11, 0.24);
}

.floating-support-bubble-chat {
    left: 24px;
    color: #fff7e2;
    background: rgba(33, 27, 18, 0.92);
    border: 1px solid rgba(201, 168, 76, 0.24);
    animation: floatingSupportDriftLeft 5.8s ease-in-out infinite;
}

.floating-support-bubble-whatsapp {
    right: 24px;
    color: #f4fff8;
    background: rgba(12, 78, 50, 0.92);
    border: 1px solid rgba(110, 231, 160, 0.22);
    animation: floatingSupportDriftRight 6.6s ease-in-out infinite;
}

.floating-support-bubble.is-disabled {
    opacity: 0.42;
    filter: saturate(0.7);
    cursor: not-allowed;
}

.floating-support-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.18);
    color: #f2d88f;
    flex-shrink: 0;
}

.floating-support-icon-whatsapp {
    background: rgba(110, 231, 160, 0.18);
    color: #9ef0c2;
}

.floating-support-label {
    display: none;
}

.floating-support-panel {
    position: fixed;
    left: 24px;
    bottom: 96px;
    z-index: 1054;
    width: min(320px, calc(100vw - 28px));
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-support-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.floating-support-panel-card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    background: rgba(18, 15, 10, 0.96);
    box-shadow: 0 28px 60px rgba(17, 15, 11, 0.26);
}

.floating-support-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.floating-support-panel-head strong {
    display: block;
    color: #fff7e2;
    font-size: 14px;
    font-weight: 700;
}

.floating-support-panel-head p {
    margin: 2px 0 0;
    color: rgba(255, 247, 226, 0.5);
    font-size: 12px;
}

.floating-support-panel-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 247, 226, 0.7);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.floating-support-panel-body {
    padding: 18px;
    background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.floating-support-message {
    display: inline-flex;
    max-width: 86%;
    padding: 12px 14px;
    border-radius: 18px 18px 18px 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff7e2;
    font-size: 14px;
    line-height: 1.5;
}

@keyframes floatingSupportDriftLeft {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes floatingSupportDriftRight {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@media (max-width: 768px) {
    .floating-support-bubble {
        bottom: 18px;
        width: 48px;
        height: 48px;
        font-size: 12px;
    }

    .floating-support-bubble-chat {
        left: 14px;
    }

    .floating-support-bubble-whatsapp {
        right: 14px;
    }

    .floating-support-icon {
        width: 32px;
        height: 32px;
    }

    .floating-support-panel {
        left: 14px;
        bottom: 78px;
        width: min(320px, calc(100vw - 28px));
    }
}

@media (max-width: 520px) {
    .floating-support-icon {
        width: 30px;
        height: 30px;
    }

    .floating-support-panel {
        right: 14px;
        left: 14px;
        width: auto;
    }
}
