@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* Ajuste para o menu lateral no mobile */
#sidebar {
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        position: fixed;
        height: 100%;
        z-index: 999;
    }
    #sidebar.show {
        margin-left: 0;
    }
}