/* =========================================================================
   TocaFiesta · print.css
   Vista de impresión / guardar como PDF del presupuesto.
   Solo se aplica al imprimir.
   ========================================================================= */
@media print {
  @page { size: A4; margin: 16mm; }

  /* Ocultar todo lo que no es el presupuesto */
  .confetti-layer,
  .site-header .brand .spark,
  .bottom-bar,
  .toast,
  .modal-backdrop,
  .result-actions,
  .result-foot-actions,
  .step-toolbar,
  .progress,
  .skip-link { display: none !important; }

  html, body {
    background: #fff !important;
    color: #000 !important;
  }
  .app { padding: 0 !important; max-width: 100% !important; }

  /* Encabezado impreso con el logo textual */
  .print-header { display: block !important; text-align: center; margin-bottom: 10mm; }
  .print-header .brand-print {
    font-family: var(--font-display); font-weight: 600; font-size: 20pt; color: #000;
  }
  .print-header .brand-print .accent { color: var(--brand); }

  .result-wrap { max-width: 100% !important; }
  .result-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    break-inside: avoid;
  }
  .result-top { background: #fff !important; }

  .result-meta { background: #fff !important; }

  .summary-section, .result-card, .result-includes, .result-summary {
    break-inside: avoid;
  }

  a[href]::after { content: ""; } /* no volcar URLs largas */

  .result-disclaimer { background: #fff !important; color: #333 !important; border: 1px solid #ddd; }
}

/* Oculto en pantalla; visible solo al imprimir */
.print-header { display: none; }
