@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/anton.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/archivo.woff2') format('woff2');
}

:root {
  --ink:      #1A1622;
  --ink-soft: #4A4356;
  --accent:   #6B21A8; /* roxo escurecido — legível impresso, sem gastar tinta */
  --line:     #D8D0E0;
  --paper:    #FFFFFF;
  --backdrop: #EDEAE2;
  --font-display: 'Anton', Impact, 'Archivo', sans-serif;
  --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  background: var(--backdrop);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.4;
  padding: 28px 16px 60px;
}

.toolbar {
  max-width: 800px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.toolbar a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.toolbar a:hover { color: var(--accent); }

#btn-imprimir {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  cursor: pointer;
}
#btn-imprimir:hover { background: #4C1772; }

.sheet {
  max-width: 800px;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  padding: 20mm 16mm;
}

.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: 4px;
}
.head .logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: .03em;
}
.head .logo .dot { color: var(--accent); }
.head .tagline { font-size: 11px; color: var(--ink-soft); text-align: right; max-width: 240px; }

h1.title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .01em;
  text-transform: none;
  margin: 16px 0 4px;
}
.sub {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.grid {
  column-count: 2;
  column-gap: 22px;
}

.cat { break-inside: avoid; margin-bottom: 14px; }
.cat-head {
  display: flex;
  align-items: baseline;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  margin-bottom: 6px;
}
.cat-head .ic { font-size: 13px; }
.cat-head h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0;
}

.mod { break-inside: avoid; margin-bottom: 7px; }
.mod .name {
  font-weight: 800;
  font-size: 12.5px;
}
.mod .name .diff {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 800;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 0 5px;
  margin-left: 5px;
  vertical-align: 1px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.mod p {
  margin: 1px 0 0;
  font-size: 11px;
  color: var(--ink-soft);
}

.foot {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.foot .cta { font-size: 12px; }
.foot .cta b { display: block; font-size: 13.5px; }
.foot .contact {
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

@media print {
  body { background: #fff; padding: 0; }
  .toolbar { display: none; }
  .sheet { box-shadow: none; padding: 12mm 10mm; max-width: none; }
  @page { size: A4; margin: 0; }
  .cat, .mod { break-inside: avoid; }
}
