:root {
    --primary: #FF0066;
    /* Rosa vibrante do Lead Stock */
    --secondary: #F8F9FA;
    --sidebar-bg: #FFFFFF;
    --body-bg: #F5F7FB;
    --card-bg: #FFFFFF;
    --text-main: #1A1D23;
    --text-muted: #8E95A2;
    --success: #00C853;
    --danger: #FF3D00;
    --border-color: #EDF0F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--body-bg);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
}

/* Sidebar Estilo Lead Stock */
.sidebar {
    width: 260px;
    background-color: var(--sidebar-bg);
    border-right: 1px solid var(--border-color);
    height: 100vh;
    position: fixed;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--primary);
}

.nav-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0 15px 10px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    margin-bottom: 5px;
    transition: all 0.2s;
    font-size: 14px;
    gap: 12px;
}

.nav-item i {
    font-size: 18px;
    color: var(--text-muted);
}

.nav-item:hover {
    background-color: var(--secondary);
}

.nav-item.active {
    background-color: #FFF0F5;
    color: var(--primary);
}

.nav-item.active i {
    color: var(--primary);
}

/* Main Content */
.main-content {
    margin-left: 260px;
    padding: 40px;
    width: calc(100% - 260px);
}

.header-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Cards Premium */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

.card-pink-border {
    border-left: 4px solid var(--primary);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #FF0066;
    /* Rosa pros números importantes */
}

/* Tabelas Clean */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 15px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

/* Inputs e Botões */
input,
select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: #F8F9FA;
    color: var(--text-main);
    outline: none;
    margin-top: 8px;
}

input:focus {
    border-color: var(--primary);
}

.btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.status-success {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-failed {
    background: #FFEBEE;
    color: #C62828;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.balance-badge {
    background: #FFF0F5;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid rgba(255, 0, 102, 0.1);
}