/* ========================================
   VARIÁVEIS DE CORES GLOBAIS
   ======================================== */

:root {
    /* Cores principais baseadas em #809e9e */
    --primary-color: #809e9e;
    --primary-light: #a8c0c0;
    --primary-dark: #6b8a8a;
    --primary-darker: #5a7a7a;
    
    /* Cores de texto */
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-tertiary: #95a5a6;
    
    /* Cores de fundo */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    
    /* Cores de status */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Cores de gradiente */
    --gradient-primary: linear-gradient(135deg, #809e9e 0%, #6b8a8a 100%);
    --gradient-light: linear-gradient(135deg, #a8c0c0 0%, #809e9e 100%);
    --gradient-dark: linear-gradient(135deg, #6b8a8a 0%, #5a7a7a 100%);
} 