/* Fairplay Capital — Insights (editorial estático, sem JS obrigatório) */
:root {
  --black: #0F0F0F;
  --black-2: #1A1A1A;
  --offwhite: #F5F2ED;
  --offwhite-2: #EDE9E1;
  --green: #1F3A2E;
  --green-2: #2A4A3C;
  --green-tint: rgba(31, 58, 46, 0.08);
  --rule-light: rgba(15, 15, 15, 0.16);
  --rule-dark: rgba(245, 242, 237, 0.16);
  --muted-on-light: #6B6358;
  --muted-on-dark: #8C8478;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --measure: 62ch;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 var(--gutter); }

/* ── header ── */
.ins-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  border-bottom: 1px solid var(--rule-light);
  background: var(--offwhite);
}
.ins-nav__logo img { height: 26px; width: auto; }
.ins-nav__menu { display: flex; gap: 28px; font-size: 14px; }
.ins-nav__menu a { text-decoration: none; color: var(--muted-on-light); }
.ins-nav__menu a:hover, .ins-nav__menu a.is-active { color: var(--black); }
@media (max-width: 640px) { .ins-nav__menu a.hide-sm { display: none; } }

/* ── tipografia ── */
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted-on-light); font-weight: 500;
}
.eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); margin-right: 10px; transform: translateY(-2px);
}
.h-hero {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(38px, 5.4vw, 76px); line-height: 1.02;
  letter-spacing: -0.02em; text-wrap: balance;
}
.h-article {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(34px, 4.6vw, 62px); line-height: 1.04;
  letter-spacing: -0.02em; text-wrap: balance;
}
h2.h-sub {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(25px, 2.6vw, 36px); line-height: 1.12;
  letter-spacing: -0.015em; text-wrap: balance;
  margin: 2.4em 0 0.7em;
}
h3.h-min {
  font-family: var(--serif); font-weight: 420;
  font-size: clamp(20px, 1.9vw, 25px); line-height: 1.2;
  margin: 1.8em 0 0.5em;
}
.lead {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(19px, 1.6vw, 23px); line-height: 1.5;
  letter-spacing: -0.01em; max-width: 46ch; text-wrap: pretty;
  color: var(--black-2);
}

/* ── página hub ── */
.hub-head { padding: clamp(56px, 8vw, 120px) 0 clamp(36px, 5vw, 64px); }
.hub-head .lead { margin-top: 22px; }
.hub-list { padding-bottom: clamp(64px, 9vw, 140px); display: grid; gap: 0; }
.hub-card {
  display: block; text-decoration: none;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--rule-light);
}
.hub-card:last-child { border-bottom: 1px solid var(--rule-light); }
.hub-card__meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted-on-light); margin-bottom: 14px;
}
.hub-card__title {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(24px, 2.6vw, 36px); line-height: 1.12;
  letter-spacing: -0.015em; text-wrap: balance;
  max-width: 26ch;
}
.hub-card__desc { margin-top: 12px; max-width: var(--measure); color: var(--black-2); }
.hub-card__more {
  display: inline-block; margin-top: 18px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--green); text-transform: uppercase;
}
.hub-card:hover .hub-card__title { color: var(--green); }

/* ── página de artigo ── */
.art-head { padding: clamp(48px, 7vw, 100px) 0 clamp(28px, 4vw, 48px); }
.art-head .eyebrow { margin-bottom: 22px; }
.art-head .lead { margin-top: 24px; }
.art-byline {
  margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--rule-light);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--muted-on-light); display: flex; gap: 24px; flex-wrap: wrap;
  max-width: var(--measure);
}
.art-body { padding-bottom: clamp(40px, 6vw, 80px); }
.art-body p { max-width: var(--measure); margin-bottom: 1.4em; text-wrap: pretty; }
.art-body ul, .art-body ol { max-width: var(--measure); margin: 0 0 1.4em 1.2em; }
.art-body li { margin-bottom: 0.6em; }
.art-body li::marker { color: var(--green); }
.art-body strong { font-weight: 600; }
.art-body a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.art-body h2.h-sub { max-width: 30ch; }

.pull {
  font-family: var(--serif); font-weight: 380;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.3;
  letter-spacing: -0.01em; max-width: 34ch;
  margin: 2.2em 0; padding-left: 24px;
  border-left: 3px solid var(--green); color: var(--green);
  text-wrap: pretty;
}

.checklist {
  list-style: none; margin: 1.6em 0 !important; max-width: var(--measure);
  counter-reset: chk;
}
.checklist > li {
  counter-increment: chk;
  padding: 18px 0 18px 56px; position: relative;
  border-top: 1px solid var(--rule-light); margin: 0 !important;
}
.checklist > li:last-child { border-bottom: 1px solid var(--rule-light); }
.checklist > li::before {
  content: counter(chk, decimal-leading-zero);
  position: absolute; left: 0; top: 20px;
  font-family: var(--mono); font-size: 13px; color: var(--green);
}
.checklist strong { display: block; margin-bottom: 4px; }

/* FAQ (espelha o FAQPage schema) */
.faq { margin: 1.2em 0 2em; max-width: var(--measure); }
.faq details { border-top: 1px solid var(--rule-light); }
.faq details:last-child { border-bottom: 1px solid var(--rule-light); }
.faq summary {
  cursor: pointer; padding: 18px 32px 18px 0; font-weight: 600;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 16px;
  font-family: var(--mono); color: var(--green); font-size: 18px;
}
.faq details[open] summary::after { content: "−"; }
.faq .faq__a { padding: 0 0 20px; color: var(--black-2); max-width: 58ch; }

/* CTA final */
.art-cta {
  background: var(--black); color: var(--offwhite);
  padding: clamp(48px, 7vw, 96px) 0;
}
.art-cta .eyebrow { color: var(--muted-on-dark); margin-bottom: 18px; }
.art-cta__title {
  font-family: var(--serif); font-weight: 360;
  font-size: clamp(28px, 3.6vw, 52px); line-height: 1.06;
  letter-spacing: -0.02em; max-width: 22ch; text-wrap: balance;
}
.art-cta p { margin-top: 20px; max-width: 52ch; color: rgba(245,242,237,0.78); }
.art-cta__btn {
  display: inline-block; margin-top: 32px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--offwhite); border: 1px solid var(--rule-dark);
  padding: 14px 28px; transition: background 0.2s, color 0.2s;
}
.art-cta__btn:hover { background: var(--offwhite); color: var(--black); }

/* rodapé */
.ins-foot {
  background: var(--black); color: rgba(245,242,237,0.6);
  padding: 40px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; font-size: 13px;
  border-top: 1px solid var(--rule-dark);
}
.ins-foot img { height: 22px; width: auto; }
.ins-foot a { color: inherit; }
