/* ── Balón flotante global ──────────────────────────── */
#balon-flotante {
    position: fixed;
    border-radius: 50%;
    z-index: 9999;
    cursor: grab;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.38));
    transition: filter .15s, transform .1s;
    box-sizing: border-box;
}
#balon-flotante:active {
    cursor: grabbing;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,.25));
}
#balon-flotante img,
#balon-flotante span.balon-emoji {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    border-radius: 50%;
}
#balon-flotante span.balon-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

#balon-sombra-global {
    position: fixed;
    border-radius: 50%;
    background: rgba(0,0,0,.25);
    filter: blur(6px);
    z-index: 9998;
    pointer-events: none;
    transform: scaleY(0.35);
}

/* ── Balón dentro del slider ────────────────────────── */
.slider-balon-wrap {
    position: relative;
    overflow: hidden;
}
#balon-slider {
    position: absolute;
    border-radius: 50%;
    z-index: 10;
    cursor: grab;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    filter: drop-shadow(0 4px 10px rgb(153, 0, 18));
    box-sizing: border-box;
}
#balon-slider:active { cursor: grabbing; }
#balon-slider img,
#balon-slider span.balon-emoji {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    border-radius: 50%;
}
#balon-slider span.balon-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
#balon-sombra-slider {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,0,0,.3);
    filter: blur(5px);
    z-index: 9;
    pointer-events: none;
    transform: scaleY(0.35);
}