/* ========= CALL TO ACTION ========= */

/* Default (desktop e in generale): nascondo i bottoni mobile */
.mobile-floating-buttons {
    display: none;
}

/* SOLO MOBILE: max 768px */
@media (max-width: 768px) {

    .mobile-floating-buttons {
        position: fixed !important;
        bottom: 11px !important;
        right: 9px !important;
        display: flex !important;
        flex-direction: row !important;
        /* affiancati */
        gap: 12px;
        z-index: 9999;
    }

    .mobile-floating-buttons a {
        width: 70px;
        height: 70px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none !important;
        color: #fff !important;
        font-size: 30px;
        line-height: 1;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .mobile-floating-buttons .btn-call {
        background: #007BFF;
    }

    .mobile-floating-buttons .btn-whatsapp {
        background: #25D366;
    }

    /* MOBILE: centro lo scroll-to-top sopra i bottoni */
    .scrollToTop2 {
        position: fixed !important;
        bottom: 25px !important;
        /* sopra WP + Tel */
        left: 50% !important;
        transform: translateX(-50%);
        right: auto !important;
        z-index: 9998;
    }
}

/* ========= CALL TO ACTION end ========= */