.btn-hamburger, .btn-logout-mobile {
    display: none;
}

 @media (max-width: 768px) {

    body {
        padding-top: 80px;
        margin: 0;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background-color: #284296;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        z-index: 10000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

         .nav-left, .btn-logout-desktop {
        display: none !important;
    }

         .nav-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: auto;
    }
    .nav-logo { height: 45px; }

         .btn-hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 5px;
        color: white;
        cursor: pointer;
        padding: 5px;
        z-index: 10001;
    }

         .nav-right {
        display: none;          position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #1f3375;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 10px;
        overflow-y: auto;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

         #menuNav.aberto {
        display: flex !important;
        animation: slideDown 0.3s ease-out;
    }

    .nav-icon {
        width: 100%;
        padding: 15px 25px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        color: white;
        font-size: 1rem;
    }
    .nav-icon:hover { background-color: rgba(255,255,255,0.1); }
    .nav-icon::after { content: attr(title); margin-left: 15px; font-weight: 500; }

         .btn-logout-mobile {
        display: flex !important;
        width: 100%;
        background: #c0392b !important;
        color: white !important;
        padding: 15px 25px;
        border: none;
        align-items: center;
        gap: 15px;
        font-size: 1rem;
        cursor: pointer;
        margin-top: auto;
        margin-bottom: 20px;
    }
    .btn-logout-mobile::after { content: "Sair do Sistema"; font-weight: bold; }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

         
    .main-content {
        padding: 15px;
        margin-left: 0;
        width: 100%;
    }

         .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .filter-group, .date-group, .actions-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
         .btn-group {
        justify-content: center;
    }

    .search-group input { width: 100%; }

    .actions-group {
        flex-direction: row;          justify-content: space-between;
        margin-left: 0;
    }

         .card-table {
        overflow-x: auto;
        padding: 0;
    }
    table { min-width: 600px; }

         .form-grid {
        grid-template-columns: 1fr;          gap: 15px;
        padding: 20px;
    }
}