/* Game Shark Store — sistema de estilo compartilhado */

@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/unbounded-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/plexsans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/plexsans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/plexmono-500.woff2') format('woff2');
}

:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-alt: #f2ece0;
  --ink: #201a29;
  --ink-muted: #665f72;
  --accent: #6d28d9;
  --accent-strong: #4c1d95;
  --accent-soft: #ede4fb;
  --line: #e6ddf0;
  --good: #16794f;
  --good-soft: #e3f5ec;
  --shadow: 0 1px 2px rgba(32, 26, 41, 0.05), 0 12px 28px -16px rgba(32, 26, 41, 0.18);
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plex Sans', -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent-soft); color: var(--accent-strong); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

.mono {
  font-family: 'Plex Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  font-family: 'Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

h1, h2, h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 0 16px;
  color: var(--ink);
}
h1 { font-size: clamp(34px, 5.4vw, 54px); line-height: 1.05; }
h2 { font-size: clamp(26px, 3.6vw, 34px); line-height: 1.12; }
h3 { font-size: 19px; line-height: 1.25; }
p { margin: 0 0 16px; max-width: 62ch; color: var(--ink); }
p.lede { color: var(--ink-muted); font-size: 18px; max-width: 56ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.wordmark {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800; font-size: 16.5px;
  letter-spacing: -0.005em;
  text-decoration: none; color: var(--ink);
  white-space: nowrap;
}
.wordmark .fin { height: 26px; width: auto; display: block; }
.wordmark .accent { color: var(--accent); }
nav.main-nav { display: flex; align-items: center; gap: 28px; }
nav.main-nav a {
  text-decoration: none;
  font-size: 14.5px; font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.15s ease;
}
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] { color: var(--accent); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plex Sans', sans-serif; font-weight: 600; font-size: 14.5px;
  padding: 11px 20px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn--good { background: var(--good); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; }
@media (max-width: 860px) {
  .site-header .bar { flex-wrap: wrap; row-gap: 12px; padding: 14px 0; }
  nav.main-nav {
    order: 3; width: 100%;
    gap: 20px; overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }
  nav.main-nav a { flex: none; }
}

/* ---------- Media band ---------- */
.media-band {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.media-band img { width: 100%; height: 340px; object-fit: cover; display: block; }
.media-credit {
  font-family: 'Plex Mono', monospace;
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 8px;
  text-align: right;
}
@media (max-width: 620px) { .media-band img { height: 220px; } }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px;
  font-family: 'Plex Mono', monospace; font-size: 12.5px; color: var(--ink-muted);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, transparent 55%);
  pointer-events: none;
}
.hero-panel .cart-glyph {
  font-family: 'Plex Mono', monospace;
  font-size: 12px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-panel dl { margin: 0; }
.hero-panel dt {
  font-family: 'Plex Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-muted); margin-top: 16px;
}
.hero-panel dt:first-child { margin-top: 0; }
.hero-panel dd { margin: 4px 0 0; font-weight: 600; font-size: 15px; }

/* ---------- Sections ---------- */
section.block { padding: 64px 0; border-bottom: 1px solid var(--line); }
section.block:last-of-type { border-bottom: none; }
section.block.alt { background: var(--surface-alt); }
.block-head { max-width: 640px; margin-bottom: 36px; }

/* ---------- Cards / grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card .num {
  font-family: 'Plex Mono', monospace; font-size: 12px; color: var(--accent);
  margin-bottom: 10px;
}
.card p { color: var(--ink-muted); font-size: 15px; margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:first-child { border-top: none; padding-top: 0; }
.faq-item h3 { margin-bottom: 8px; font-size: 16.5px; }
.faq-item p { color: var(--ink-muted); font-size: 15px; margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 44px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #c9c1d6; margin: 0; }
.cta-band .btn--primary { background: var(--accent); }

/* ---------- Footer ---------- */
footer.site-footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo { height: 104px; width: auto; display: block; margin-bottom: 14px; }
footer.site-footer h3 {
  font-family: 'Plex Mono', monospace; font-weight: 500; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px;
}
footer.site-footer a { text-decoration: none; }
footer.site-footer .flink { display: block; font-size: 14.5px; margin-bottom: 8px; color: var(--ink); }
footer.site-footer .flink:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: 'Plex Mono', monospace; font-size: 11.5px; color: var(--ink-muted);
}

/* ---------- Breadcrumb / page hero (inner pages) ---------- */
.page-hero { padding: 56px 0 48px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 14px; }

/* ---------- Service list ---------- */
.service-row {
  display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line);
}
.service-row:first-child { border-top: none; padding-top: 0; }
.service-row .tag {
  flex: none; width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plex Mono', monospace; font-weight: 600; font-size: 13px;
}
.service-row h3 { margin-bottom: 4px; }
.service-row p { color: var(--ink-muted); font-size: 15px; margin-bottom: 0; }

.notice {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.notice strong { color: var(--ink); }
