.floating-actions {
    position: fixed;
    right: 24px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-actions__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    box-shadow: var(--shadow-md), 0 0 0 1.5px #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-actions__btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.floating-actions__btn--whatsapp {
    background: #25D366;
}

.floating-actions__btn--call {
    background: #7C3AED;
}

.floating-actions__btn--email {
    background: var(--color-accent);
}

@media (max-width: 640px) {
    .floating-actions {
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        gap: 7px;
    }

    .floating-actions__btn {
        width: 46px;
        height: 46px;
    }

    .floating-actions__btn .material-symbols-rounded {
        font-size: 22px;
    }

    .floating-actions__btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 380px) {
    .floating-actions {
        right: 12px;
        gap: 6px;
    }

    .floating-actions__btn {
        width: 40px;
        height: 40px;
    }

    .floating-actions__btn .material-symbols-rounded {
        font-size: 20px;
    }

    .floating-actions__btn svg {
        width: 19px;
        height: 19px;
    }
}
