.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 64px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 14px;

    /* base discreta */
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.06),
    inset -1px -1px 0 rgba(0, 0, 0, 0.35);

    z-index: 1000;
}


.action-btn {
    width: 46px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;


    border-radius: 10px;


    cursor: pointer;
    font-size: 1.1rem;

    /* efeito tecla / bezel */
    background: linear-gradient(to bottom, var(--bs-tertiary-bg), var(--bs-secondary-bg-subtle));
    border: 1px solid var(--bs-border-color);
    color: var(--bs-body-color);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);

    transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.action-btn:hover {
    background: linear-gradient(to bottom, var(--bs-secondary-bg), var(--bs-body-bg));
    color: var(--bs-body-color);
    border-color: var(--bs-border-color);
}

.action-btn:active {
    transform: translateY(1px);
    background: linear-gradient(to top, var(--bs-tertiary-bg), var(--bs-secondary-bg-subtle));
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.35);
}

/* ajuste fino dos ícones */
.action-btn i {
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
}