:root {
    /* Cores Base do Sistema */
    --primary-color: #941B80;
    --primary-hover: #7a1669;
    --secondary-color: #6c757d;

    /* Tons de Fundo e Containers */
    --bg-main: #f8f9fa; /* offwhite */
    --bg-sidebar: #ffffff;
    --bg-card: #ffffff;

    /* Cores de Texto */
    --text-main: #333333;
    --text-muted: #6c757d;
    --text-white: #ffffff;

    /* Status */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;

    /* Sombras e Bordas */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius-md: 0.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
}

/* Scrollbar Global Estilizada (Padrão Sistema) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(148, 27, 128, 0.2);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 27, 128, 0.4);
}
