:root {
--accent: #072a5a !important;
--primary: #5d5d5d !important;
--secondary: #000000 !important;
--primary-font: Figtree, sans-serif;
--secondary-font: Poppins, sans-serif;
}

/* Floating Buttons */
.cs_floating_btns {
    position: fixed;
    bottom: 30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.cs_floating_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: transform .3s ease, box-shadow .3s ease;
    text-decoration: none;
}

.cs_floating_btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(0,0,0,.35);
}

.cs_floating_whatsapp {
    background-color: #25d366;
}

.cs_floating_phone {
    background-color: var(--accent, #307bc4);
}

@media (max-width: 767px) {
    .cs_floating_btns {
        bottom: 20px;
        right: 16px;
    }
    .cs_floating_btn {
        width: 50px;
        height: 50px;
    }
}

/* Oculta busca e botão login no header */
.cs_search_toggle_btn,
.cs_header_user_btn.active.d-flex {
    display: none !important;
}

/* Header CTA Button */
.cs_header_cta_btn {
    padding: 10px 22px !important;
    font-size: 14px !important;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .cs_header_cta_btn {
        display: none !important;
    }
}

