/* NES — Documento clínico A4 (tela + impressão) */
.nes-doc-print-root {
  background: #eef4f2;
  padding: 16px;
}

.documento-a4 {
  width: 210mm;
  min-height: auto;
  padding: 12mm;
  margin: 0 auto;
  background: white;
  color: #0f2f3f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.doc-header {
  border-bottom: 2px solid #0f766e;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.doc-header h1 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #0f4c66;
}

.doc-header .doc-subtitulo {
  margin: 0;
  font-size: 13px;
  color: #334155;
}

.doc-header .doc-clinica {
  margin-top: 8px;
  font-size: 11px;
  color: #475569;
}

.doc-section {
  border: 1px solid #d9e8e4;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.doc-section h2 {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f766e;
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.doc-grid .doc-field {
  margin: 0;
}

.doc-grid .doc-label {
  font-weight: 700;
  color: #334155;
}

.doc-content {
  position: relative;
  z-index: 1;
  min-height: 0;
}

.doc-content .conteudo-corpo {
  white-space: pre-wrap;
}

.doc-assinatura {
  margin-top: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.doc-assinatura img {
  max-height: 42px;
  max-width: 180px;
  margin-bottom: 4px;
  object-fit: contain;
}

.doc-assinatura .linha-assinatura {
  border-top: 1px solid #94a3b8;
  width: 200px;
  margin: 4px auto;
}

.doc-footer {
  margin-top: 24px;
  font-size: 10px;
  color: #64748b;
  border-top: 1px solid #d9e8e4;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}

.watermark {
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  font-size: 180px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.watermark-svg {
  width: 280px;
  height: 280px;
  opacity: 0.08;
}

.doc-qr {
  margin-top: 8px;
}

.doc-qr img {
  width: 88px;
  height: 88px;
}

@media print {
  body {
    background: white !important;
  }

  .no-print {
    display: none !important;
  }

  .nes-doc-print-root {
    padding: 0;
    background: white;
  }

  .documento-a4 {
    width: 100%;
    min-height: 0;
    padding: 0;
    margin: 0;
    box-shadow: none;
    page-break-after: auto;
  }

  .documento-a4:last-child {
    page-break-after: avoid;
  }

  .doc-section,
  .doc-header,
  .doc-assinatura,
  .doc-footer {
    page-break-inside: avoid;
  }

  .doc-footer {
    position: static;
    margin-top: 10px;
    page-break-inside: avoid;
  }
}
