.floating-bubble-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-bubble-btn {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, border-radius 0.3s ease, border 0.3s ease;
    white-space: nowrap;
}

/* Fallback redondeado si no hay estilos personalizados */
.layout-icon .floating-bubble-btn {
    border-radius: 50%;
}
.layout-text .floating-bubble-btn,
.layout-both .floating-bubble-btn {
    border-radius: 50px;
}

.floating-bubble-btn i,
.floating-bubble-btn svg {
    transition: transform 0.3s ease;
    display: block;
}

.floating-bubble-btn:hover {
    transform: scale(1.08);
}

.floating-bubble-btn:hover i,
.floating-bubble-btn:hover svg {
    transform: rotate(5deg) scale(1.05);
}

/* Pulsación de Fondo animada */
.bubble-pulse-984697cd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    animation: bubble-pulse-anim infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes bubble-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Botón de Cierre */
.bubble-close-btn-984697cd {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 100000;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bubble-close-btn-984697cd svg {
    width: 12px;
    height: 12px;
    display: block;
}

.bubble-close-btn-984697cd:hover {
    transform: scale(1.15);
}
