* { box-sizing: border-box; margin: 0; padding: 0; }
:root { color-scheme: dark; --bg: #0f0f0f; --ink: #f3f3f3; --muted: #a2a3aa; --line: #292a2d; --blue: #a8c8f8; }
body { background: var(--bg); color: var(--ink); font: 14px/1.6 Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
button, input { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
[hidden] { display: none !important; }
.container { width: min(880px, calc(100% - 48px)); margin-inline: auto; }
header { border-bottom: 1px solid var(--line); }
.header-inner { height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; font-size: 19px; font-weight: 800; letter-spacing: -.7px; }
.brand small { margin-left: 18px; padding-left: 18px; border-left: 1px solid var(--line); font: 9px monospace; letter-spacing: 1.5px; color: var(--muted); }
.social { font-size: 12px; color: var(--muted); }
.social span { margin-left: 8px; }
.hero { padding: 44px 0 26px; }
h1 { font-size: clamp(28px, 4vw, 38px); line-height: 1.15; letter-spacing: -1.3px; font-weight: 600; }
.hero p { margin-top: 10px; color: var(--muted); }
.search { display: flex; align-items: center; gap: 12px; border: 1px solid #37383c; border-radius: 4px; padding: 0 14px; background: #141415; }
.search:focus-within { border-color: var(--blue); }
.search svg { color: var(--muted); flex-shrink: 0; }
.search input { min-width: 0; width: 100%; height: 46px; border: 0; outline: none; background: transparent; color: var(--ink); font-size: 13px; }
.search input::placeholder { color: var(--muted); }
.search button { border: 0; background: transparent; color: var(--blue); font-size: 12px; padding: 10px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: center; padding: 24px 0 12px; }
.section-heading h2 { font-size: 13px; font-weight: 500; }
.section-heading > span { color: var(--muted); font-size: 12px; }
#catalogo { display: grid; gap: 16px; }
.featured { display: grid; grid-template-columns: .85fr 1.15fr; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.cover { background: #18212e; padding: 26px 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.cover-label, .cover-note { font: 9px/1.6 monospace; letter-spacing: 1.4px; color: #acbdd5; }
.cover-title { font-size: 29px; line-height: 1.12; letter-spacing: -.9px; }
.cover-title span { color: #a8bddb; }
.cover-note { font-size: 8px; letter-spacing: 1px; }
.featured-content { padding: 26px 30px; }
.category { font-size: 11px; color: var(--muted); }
.featured h3 { font-size: 23px; line-height: 1.25; font-weight: 500; letter-spacing: -.6px; margin: 8px 0 10px; }
.featured p { color: var(--muted); font-size: 13px; max-width: 380px; }
.meta { display: block; font-size: 11px; color: var(--muted); margin: 16px 0; }
.button { display: inline-flex; align-items: center; gap: 28px; padding: 8px 13px; border: 1px solid #46566e; border-radius: 4px; color: #c2d8f7; font-size: 12px; }
.button:hover { background: #1b2635; border-color: var(--blue); }
.empty { border: 1px dashed var(--line); border-radius: 4px; padding: 36px 20px; text-align: center; }
.empty h3 { font-size: 16px; font-weight: 500; }
.empty p { color: var(--muted); margin: 6px 0 16px; font-size: 13px; }
.empty button { border: 0; background: transparent; color: var(--blue); text-decoration: underline; text-underline-offset: 4px; padding: 6px; }
footer { display: flex; justify-content: space-between; gap: 16px; padding: 20px 0; margin-top: 36px !important; border-top: 1px solid var(--line); font-size: 11px; color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; top: -80px; left: 20px; padding: 12px; background: var(--ink); color: #111; z-index: 10; }
.skip:focus { top: 12px; }
@media (max-width: 600px) {
  .container { width: calc(100% - 36px); }
  .brand small { margin-left: 12px; padding-left: 12px; font-size: 8px; }
  .social { font-size: 11px; }
  .hero { padding-top: 30px; }
  .hero p { font-size: 13px; max-width: 300px; }
  .featured { grid-template-columns: 1fr; }
  .cover { min-height: 160px; padding: 20px 24px; gap: 12px; }
  .cover-title { font-size: 25px; }
  .cover-title br:last-child { display: none; }
  .cover-note { display: none; }
  .featured-content { padding: 22px 24px; }
  .featured h3 { font-size: 22px; }
  footer { font-size: 10px; }
}

