@page {
  size: A4;
  margin: 18mm 15mm;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.pdf-document {
  color: #242424;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  line-height: 1.45;
}

.pdf-header {
  display: flex;
  min-height: 20mm;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10mm;
  padding-bottom: 5mm;
  border-bottom: 1px solid #d9d9d9;
}

.pdf-logo {
  width: 42mm;
  height: auto;
}

.pdf-header-content {
  color: #666;
  text-align: right;
}

.pdf-content h1 {
  margin: 0 0 7mm;
  font-size: 20pt;
  font-weight: 500;
}

.pdf-footer {
  position: fixed;
  right: 0;
  bottom: -11mm;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding-top: 3mm;
  border-top: 1px solid #d9d9d9;
  color: #777;
  font-size: 8pt;
}

.pdf-page-number::after {
  content: "Página " counter(page) " de " counter(pages);
}

.pdf-avoid-break {
  break-inside: avoid;
}

@media screen {
  body.pdf-document {
    width: 210mm;
    min-height: 297mm;
    margin: 12mm auto;
    padding: 18mm 15mm;
    box-shadow: 0 2px 18px rgb(0 0 0 / 12%);
  }
}
