/* Document template styles */
:root{
  --doc-primary:#0d6efd;
  --doc-text:#23262f;
  --doc-muted:#6b7280;
  --doc-border:#e5e7eb;
}
.doc-container{max-width:900px;margin:0 auto;background:#fff;color:var(--doc-text)}
.doc-header{display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--doc-border);padding:16px 0}
.doc-brand{display:flex;align-items:center;gap:12px}
.doc-brand img{width:64px;height:64px;object-fit:contain}
.doc-title{font-weight:700;font-size:20px;margin:0}
.doc-sub{color:var(--doc-muted);font-size:14px}
.doc-meta{display:flex;gap:24px;color:var(--doc-muted);font-size:14px}
.doc-section{padding:16px 0;border-bottom:1px solid var(--doc-border)}
.doc-section h4{font-size:16px;font-weight:600;margin:0 0 12px}
.kv{display:flex;justify-content:space-between;padding:6px 0}
.kv span:first-child{color:var(--doc-muted)}
.doc-footer{color:var(--doc-muted);font-size:12px;display:flex;justify-content:space-between;align-items:center;padding:12px 0}
.doc-actions{display:flex;gap:8px;justify-content:flex-end}

@media print{
  body{background:#fff}
  .no-print{display:none!important}
  .doc-container{padding:0}
  .print-header{position:fixed;top:0;left:0;right:0}
  .print-footer{position:fixed;bottom:0;left:0;right:0}
  .doc-body{margin-top:140px;margin-bottom:80px}
  .page-number::after{content:"Página " counter(page)}
}
