/*
Theme Name: SoNick Marketing Divi Child
Theme URI: https://sonickmarketing.co.uk
Description: Divi Child Theme for carlosalexandre.co.uk. Developed by SoNick Marketing.
Author: SoNick Marketing
Author URI: https://sonickmarketing.com
Template: Divi
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ============================================================
   FIXED CONSULTATION BUTTON
   ============================================================ */

.fixed-consultation-btn {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    z-index: 2147483647 !important;
    background-color: #2E4057;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
    animation: sonick-pulse 2.5s ease-in-out 3;
}

.fixed-consultation-btn:hover {
    background-color: #1a2d3f;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

@keyframes sonick-pulse {
    0% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); }
    50% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); }
    100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25); }
}

@media (max-width: 767px) {
    .fixed-consultation-btn {
        bottom: 15px;
        right: 15px;
        font-size: 14px;
        padding: 10px 16px;
    }
}