/* print-colors.css — Impressão/PDF: branco limpo, texto escuro
   Tira backgrounds cinzas e mantém apenas o necessário.
*/

@media print {
  :root {
    --color-background-primary: white !important;
    --color-background-secondary: white !important;
    --color-background-tertiary: white !important;
    --color-text-primary: #1A1A1A !important;
    --color-text-secondary: #1A1A1A !important;
    --color-text-tertiary: #1A1A1A !important;
    --bf-gray: #1A1A1A !important;
    --bf-ltbg: white !important;
  }

  body { background: white !important; }
  .wrap { background: white !important; border: none !important; }

  * {
    color: #1A1A1A !important;
    background-color: transparent !important;
  }

  /* Manter bordas sutis */
  .nav { border-bottom: 0.5px solid #ddd !important; }
  .block { border-bottom: 0.5px solid #ddd !important; }
  .block-header { background: white !important; border-bottom: 0.5px solid #ddd !important; }
  .kpi { background: white !important; }
  .ficha-item { background: white !important; }
}
