:root {
    --bg-dark: #0a0a0f;
    --bg-card: #15151e;
    --bg-light: #1e1e2b;
    --primary: #00e68a;    
    --secondary: #00cc77;
    --accent: #5e8cff;
    --warning: #ffb020;
    --danger: #ff5252;
    --success: #00d68f;
    --text: #f5f5f7;
    --text-muted: #a0a0b0;
    --border: #2a2a3a;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a25 100%);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon img {
    width: 80px;   /* ajuste como quiser */
    height: auto;  /* mantém proporção */
}


.logo h1 {
    font-size: 22px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.notifications {
    position: relative;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--bg-dark);
}

.logout-btn {
    padding: 8px 20px;
    background: rgba(255, 82, 82, 0.1);
    border: 1px solid rgba(255, 82, 82, 0.3);
    color: var(--danger);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.logout-btn:hover {
    background: rgba(255, 82, 82, 0.2);
    transform: translateY(-2px);
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 70px;
    width: 260px;
    height: calc(100vh - 70px);
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 20px 0;
    overflow-y: auto;
    transition: width 0.3s ease;
}

.nav-section {
    margin-bottom: 25px;
}

.nav-section-title {
    padding: 0 20px 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.nav-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding-left: 25px;
}

.nav-item.active {
    background: rgba(0, 230, 138, 0.1);
    color: var(--primary);
    border-left-color: var(--primary);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary);
}

.nav-text {
    font-size: 14px;
    font-weight: 500;
}

.nav-badge {
    margin-left: auto;
    background: var(--accent);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
}

/* Main Content */
.main-content {
    margin-left: 260px;
    margin-top: 70px;
    padding: 25px;
    min-height: calc(100vh - 70px);
    transition: margin-left 0.3s ease;
}

/* Login Page */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    padding: 20px;
}

.login-container {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a25 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 28px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Input Groups */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 230, 138, 0.1);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 230, 138, 0.3);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

.btn-small {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--bg-card);
}

.btn-danger {
    background: rgba(255, 82, 82, 0.1);
    color: var(--danger);
    border: 1px solid rgba(255, 82, 82, 0.3);
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-danger:hover {
    background: rgba(255, 82, 82, 0.2);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-muted);
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.divider span {
    padding: 0 15px;
    font-size: 12px;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.form-buttons button {
    flex: 1;
}

/* API Config */
.api-config {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid var(--border);
}

.api-config h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text);
}

/* Cards */
.card {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a25 100%);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);

}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.card-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg-light);
    border: none;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.card-action-btn:hover {
    background: var(--border);
    color: var(--text);
}

/* KPI Cards */
.kpi-card {
    text-align: center;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.kpi-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 230, 138, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary);
}

.kpi-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
    font-family: 'Segoe UI', sans-serif;
}

.kpi-label {
    font-size: 14px;
    color: var(--text-muted);
}

.kpi-detail {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Dashboard Header */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--text), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.action-btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border: none;
    font-weight: 600;
}

/* Grid System */
.grid {
    display: grid;
    gap: 25px;
    margin-bottom: 25px;
}

.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Tables */
.table-container {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a25 100%);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text);
}

table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* Badges */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge.entrada {
    background: rgba(0, 230, 138, 0.2);
    color: var(--success);
}

.badge.saida {
    background: rgba(255, 82, 82, 0.2);
    color: var(--danger);
}

/* Modals */
.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a25 100%);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--text);
    font-size: 20px;
}

.modal-body {
    padding: 20px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--danger);
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Alerts */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 3000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.alert button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-muted);
}

.alert-success {
    border-left: 4px solid var(--success);
    background: rgba(0, 230, 138, 0.05);
}

.alert-error {
    border-left: 4px solid var(--danger);
    background: rgba(255, 82, 82, 0.05);
}

.alert-warning {
    border-left: 4px solid var(--warning);
    background: rgba(255, 176, 32, 0.05);
}

.alert-info {
    border-left: 4px solid var(--accent);
    background: rgba(94, 140, 255, 0.05);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Progress Bars */
.progress-bar {
    height: 6px;
    background: var(--bg-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Status Indicators */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
}

.status-dot.pulsing {
    position: relative;
}

.status-dot.pulsing::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: var(--success);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Responsive */
@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .sidebar {
        width: 70px;
        overflow: hidden;
    }
    
    .sidebar .nav-text,
    .sidebar .nav-section-title,
    .sidebar .nav-badge {
        display: none;
    }
    
    .main-content {
        margin-left: 70px;
    }
}

@media (max-width: 768px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dashboard-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .user-info {
        gap: 10px;
    }
    
    .user-profile .username {
        display: none;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .login-container {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Checkbox Styles */
.input-group label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    accent-color: var(--primary);
}
/* Footer Styles */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
        flex-direction: column;
    }
}

/* Estilos para inputs no tema escuro */
.input-dark {
    background: var(--bg-light) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
}

.select-dark {
    background: var(--bg-light) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
}

.select-dark option {
    background: var(--bg-card) !important;
    color: var(--text) !important;
}
/* Estilos para badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.badge.entrada {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.badge.saida {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger);
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.badge.inativo {
    background: rgba(108, 117, 125, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(108, 117, 125, 0.2);
}

/* Botões pequenos */
.btn-small {
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-small:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-small.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-small.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-small.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text);
    border: 1px solid var(--border);
}

/* Modal de exclusão */
.modal-danger {
    border-left: 4px solid var(--danger);
}

.modal-warning {
    border-left: 4px solid var(--warning);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.3s ease forwards;
}
 .pwa-banner {
            background: linear-gradient(135deg, rgba(94, 140, 255, 0.1), rgba(0, 230, 138, 0.1));
            border: 1px solid rgba(94, 140, 255, 0.2);
            border-radius: 12px;
            padding: 15px;
            margin: 20px 0;
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .pwa-banner.show {
            display: block;
        }
        
        .pwa-banner-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .pwa-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #5e8cff, #0066ff);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }
        
        .pwa-info {
            flex: 1;
        }
        
        .pwa-title {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .pwa-description {
            color: var(--text-muted);
            font-size: 12px;
            margin-bottom: 10px;
        }
        
        .pwa-actions {
            display: flex;
            gap: 10px;
        }
        
        .pwa-install-btn {
            background: linear-gradient(135deg, #5e8cff, #0066ff);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .pwa-install-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(94, 140, 255, 0.3);
        }
        
        .pwa-later-btn {
            background: var(--bg-secondary);
            color: var(--text);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pwa-later-btn:hover {
            background: var(--border);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Floating Install Button para desktop */
        .pwa-floating-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #5e8cff, #0066ff);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(94, 140, 255, 0.3);
            z-index: 10000;
            display: none;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .pwa-floating-btn.show {
            display: flex;
        }
        
        
        
        .pwa-floating-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(94, 140, 255, 0.4);
        }
        /* Adicione no seu arquivo style.css */
.badge.transferencia {
    background: rgba(255, 176, 32, 0.15);
    color: var(--warning);
    border: 1px solid rgba(255, 176, 32, 0.3);
}
/* Adicione estas classes no seu arquivo style.css */
.badge.ajuste {
    background: rgba(32, 201, 151, 0.15);
    color: var(--info);
    border: 1px solid rgba(32, 201, 151, 0.3);
    font-weight: 500;
}

/* Se não tiver a variável --info definida, adicione: */
:root {
    --info: #17a2b8;
    --danger-light: #ff6b6b;
}

/* Para ajustes negativos (se quiser diferenciar) */
.badge.ajuste.negativo {
    background: rgba(255, 107, 107, 0.15);
    color: var(--danger-light);
    border: 1px solid rgba(255, 107, 107, 0.3);
}