/**
 * print.css — usado apenas por window.print() (ex.: imprimir o orçamento)
 */

@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .no-print {
    display: none !important;
  }

  body { background: #fff; color: #000; }
  .container { max-width: 100%; padding: 0; }

  .budget-item, .product-card {
    box-shadow: none !important;
    border: 1px solid #000;
    break-inside: avoid;
  }

  h1, h2, h3 { color: #000; }
}
