/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
}

/* NAVBAR */
.navbar {
    background: #020617;
    border-bottom: 1px solid #1e293b;
    padding: 15px 0;
}

.navbar-content {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #38bdf8;
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

/* CARDS */
.card {
    background: linear-gradient(145deg, #020617, #0f172a);
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 25px;
}

/* GRID */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

/* CARDS STATS */
.stat-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #6366f1);
    bottom: 0;
    left: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #38bdf8;
}

.stat-label {
    color: #94a3b8;
    font-size: 13px;
}

/* BOTÕES */
.btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover {
    opacity: 0.9;
}

/* TABELA */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    color: #94a3b8;
    font-weight: 500;
    text-align: left;
    padding: 10px;
}

td {
    padding: 12px;
    border-top: 1px solid #1e293b;
}

tbody tr:hover {
    background: #020617;
}

/* BADGE */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.badge-success {
    background: #022c22;
    color: #22c55e;
}

.badge-warning {
    background: #3f2a00;
    color: #facc15;
}

.badge-danger {
    background: #2c0a0a;
    color: #ef4444;
}

/* INPUT */
input, select {
    background: #020617;
    border: 1px solid #1e293b;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
}

/* ALERT */
.alert {
    padding: 15px;
    border-radius: 10px;
    background: #020617;
    border: 1px solid #1e293b;
}

/* GRÁFICOS */
canvas {
    margin-top: 15px;
}