/* ============================================= */
/* MOBILE SIDEBAR FIX - FORÇA ESCONDER ========= */
/* ============================================= */
@media (max-width: 768px) {
    .sidebar {
        display: none !important;
    }

    .sidebar.active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        z-index: 9999;
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }
}