/* ==========================================================================
   EMCASH ACADEMY — impressão
   Só o certificado vai para o papel (ou para o "Salvar como PDF" do navegador).
   ========================================================================== */
@media print {
  @page { size: A4 landscape; margin: 10mm; }

  :root { --sh-1: none; --sh-2: none; --sh-3: none; }

  body { background: #fff !important; color: #000; }

  .nav, .top, .toasts, .modal-bg, .vault, .no-print { display: none !important; }

  .shell { display: block; }
  .main { padding: 0 !important; }
  .main__inner { max-width: none; }

  /* quando um certificado está aberto, ele é a única coisa impressa */
  body.printing-cert .main__inner > *:not(.cert-wrap) { display: none !important; }
  body.printing-cert .cert-wrap { padding: 0; }
  body.printing-cert .cert {
    max-width: none; width: 100%; aspect-ratio: auto; height: 185mm;
    border-color: rgba(176, 138, 30, .8);
    box-shadow: none;
    break-inside: avoid;
  }

  a[href]::after { content: ""; }
}
