/* ============================================================
   NINOT — ninotmedia.com
   Editorial / Swiss: papel, tinta, um acento. Hairlines de 1px.
   Serif (Newsreader) no display, sans (Archivo) no corpo.
   ============================================================ */

/* ---------- Fontes (self-hosted) ---------- */
@font-face { font-family: "Newsreader"; src: url(fonts/newsreader-v26-latin-regular.woff2) format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url(fonts/newsreader-v26-latin-600.woff2) format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Newsreader"; src: url(fonts/newsreader-v26-latin-italic.woff2) format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Archivo"; src: url(fonts/archivo-v25-latin-regular.woff2) format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Archivo"; src: url(fonts/archivo-v25-latin-500.woff2) format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Archivo"; src: url(fonts/archivo-v25-latin-600.woff2) format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Archivo", system-ui, -apple-system, sans-serif;
  --paper: #fbfaf7;
  --paper-2: #f3f1ea;
  --ink: #141311;
  --ink-2: #1d1b18;
  --ink-60: rgba(20, 19, 17, .62);
  --ink-30: rgba(20, 19, 17, .30);
  --accent: #c8360f;
  --ok: #2e7d4f;
  --hair: 1px solid rgba(20, 19, 17, .16);
  --hair-dark: 1px solid rgba(251, 250, 247, .18);
  --sp: 8px;
  --measure: 60ch;
  --wrap: 1120px;
  --pad: clamp(20px, 5vw, 56px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* scroll-behavior: smooth é aplicado via JS depois do load —
   no CSS ele cancela o salto de âncora inicial (bug do Chromium). */
body {
  margin: 0;
  font: 400 16px/1.6 var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* ---------- Header ---------- */
.site-head {
  display: flex; align-items: center; gap: calc(var(--sp) * 4);
  padding: calc(var(--sp) * 2) var(--pad);
  border-bottom: var(--hair);
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(6px);
}
.brand { font-family: var(--serif); font-weight: 600; font-size: 24px; text-decoration: none; letter-spacing: -0.01em; }
.brand__dot { color: var(--accent); }
.site-nav { display: flex; gap: calc(var(--sp) * 3); margin-inline: auto; }
.site-nav a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--ink-60); }
.site-nav a:hover { color: var(--ink); }
.head-right { display: flex; align-items: center; gap: calc(var(--sp) * 2); }
.lang { display: flex; border: var(--hair); }
.lang button { padding: 4px 10px; font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--ink-60); }
.lang button + button { border-left: var(--hair); }
.lang button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

/* ---------- Botões ---------- */
.btn {
  display: inline-block; background: var(--ink); color: var(--paper);
  padding: 12px 24px; font-weight: 600; font-size: 15px; text-decoration: none;
  border: 1px solid var(--ink); transition: background .15s, color .15s, border-color .15s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--small { padding: 8px 14px; font-size: 13px; }
.btn--big { padding: 16px 32px; font-size: 17px; }
.btn--paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--paper:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Hero ---------- */
.hero { padding: clamp(56px, 10vh, 120px) var(--pad) clamp(40px, 7vh, 80px); max-width: var(--wrap); margin-inline: auto; }
.kicker {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 calc(var(--sp) * 3);
}
.hero__title {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  max-width: 18ch;
}
.hero__title em { font-style: italic; font-weight: 400; }
.hero__points {
  list-style: none; margin: calc(var(--sp) * 5) 0 0; padding: 0;
  max-width: 62ch;
}
.hero__points li {
  padding: calc(var(--sp) * 1.5) 0 calc(var(--sp) * 1.5) calc(var(--sp) * 3);
  border-top: var(--hair);
  position: relative; font-size: 15.5px;
}
.hero__points li:last-child { border-bottom: var(--hair); }
.hero__points li::before {
  content: ""; position: absolute; left: 0; top: 1.35em;
  width: 10px; height: 1px; background: var(--accent);
}
.hero__cta { margin-top: calc(var(--sp) * 5); display: flex; align-items: center; gap: calc(var(--sp) * 3); flex-wrap: wrap; }
.hero__note { font-size: 13.5px; color: var(--ink-60); max-width: 34ch; }

/* ---------- Band ---------- */
.band {
  border-top: var(--hair);
  padding: calc(var(--sp) * 1.75) var(--pad);
  display: flex; justify-content: center; gap: calc(var(--sp) * 2); flex-wrap: wrap;
  font-size: 13px; letter-spacing: .05em;
  text-transform: uppercase; background: var(--ink); color: rgba(251,250,247,.75);
}
.band__sep { color: rgba(251,250,247,.3); }

/* ---------- Seções ---------- */
.section { padding: clamp(56px, 9vh, 104px) var(--pad); max-width: var(--wrap); margin-inline: auto; }
.section__head { display: flex; align-items: baseline; gap: calc(var(--sp) * 3); border-bottom: var(--hair); padding-bottom: calc(var(--sp) * 2); margin-bottom: calc(var(--sp) * 5); }
.section__num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--accent); }
.section__head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section__lead { max-width: var(--measure); color: var(--ink-60); margin-bottom: calc(var(--sp) * 5); }
.prose { max-width: var(--measure); font-size: 17px; }
.prose p + p { margin-top: 1em; }

/* Seção com tinta de papel */
.section--tint {
  max-width: none;
  background: var(--paper-2);
}
.section--tint > * { max-width: var(--wrap); margin-inline: auto; }

/* Seção escura */
.section--dark {
  max-width: none; background: var(--ink); color: var(--paper);
  padding: clamp(56px, 9vh, 104px) var(--pad);
}
.section--dark > * { max-width: var(--wrap); margin-inline: auto; }
.section--dark .section__head { border-bottom: var(--hair-dark); }
.section--dark .section__lead { color: rgba(251, 250, 247, .65); }

/* ---------- Demo layout ---------- */
.demo {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.demo__list { display: flex; flex-direction: column; }
.fmt {
  text-align: left; padding: calc(var(--sp) * 2) 0;
  border-top: var(--hair-dark);
  display: flex; flex-direction: column; gap: 2px;
  transition: padding-left .2s;
  scroll-margin-top: 140px; /* deep-link #fmt-<nome>: folga para o header fixo */
}
.fmt:last-child { border-bottom: var(--hair-dark); }
.fmt__name { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.fmt__tag { font-size: 12.5px; color: rgba(251, 250, 247, .55); }
.fmt[aria-selected="true"] { padding-left: calc(var(--sp) * 2); border-left: 2px solid var(--accent); }
.fmt[aria-selected="true"] .fmt__name { color: #ff6a3d; }
.fmt:hover .fmt__name { color: #e8d9c4; }
.fmt[aria-selected="true"]:hover .fmt__name { color: #ff6a3d; }

/* ---------- Spec panel ---------- */
.demo__spec { border-top: var(--hair-dark); padding-top: calc(var(--sp) * 2); }
.demo__spec-name { font-size: 22px; margin-bottom: calc(var(--sp) * 1); }
.demo__spec-desc { font-size: 14.5px; color: rgba(251, 250, 247, .72); }
.demo__spec-meta { margin: calc(var(--sp) * 3) 0 0; }
.demo__spec-meta div { border-top: var(--hair-dark); padding: calc(var(--sp) * 1.5) 0; }
.demo__spec-meta dt { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(251, 250, 247, .45); margin-bottom: 4px; }
.demo__spec-meta dd { margin: 0; font-size: 14px; }

/* ---------- Phone ---------- */
.demo__stage { display: flex; flex-direction: column; align-items: center; gap: calc(var(--sp) * 2); }
.phone {
  width: min(300px, 86vw);
  aspect-ratio: 9 / 18.5;
  border: 10px solid #000;
  border-radius: 40px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(251,250,247,.14), 0 24px 60px rgba(0,0,0,.5);
}
.phone__screen {
  position: relative; width: 100%; height: 100%;
  background: #fff; color: #141311;
  border-radius: 30px;
  overflow: hidden;
  transform: translateZ(0); /* ancora overlays internos no frame */
}
.phone__notch {
  position: absolute; top: 8px; left: 50%; translate: -50%;
  width: 36%; height: 20px; background: #000; border-radius: 11px; z-index: 60;
}
.phone__scroll {
  position: absolute; inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.phone__scroll::-webkit-scrollbar { display: none; }
.demo__toolbar { display: flex; gap: calc(var(--sp) * 1.5); }

/* ---------- Fake article ---------- */
.fake { padding: 40px 14px 24px; }
.bar {
  display: block; height: 9px; border-radius: 2px;
  background: #e7e4dc; margin-bottom: 7px;
}
.w20 { width: 20%; } .w30 { width: 30%; } .w40 { width: 40%; } .w50 { width: 50%; }
.w55 { width: 55%; } .w60 { width: 60%; } .w65 { width: 65%; } .w70 { width: 70%; }
.w75 { width: 75%; } .w80 { width: 80%; } .w85 { width: 85%; } .w90 { width: 90%; }
.w95 { width: 95%; } .w98 { width: 98%; } .w100 { width: 100%; }
.fake__mast {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid #141311; padding-bottom: 8px; margin-bottom: 14px;
}
.fake__logo { display: block; width: 34%; height: 14px; background: #141311; border-radius: 2px; }
.fake__mast .bar { margin: 0; }
.fake__headline .bar { height: 14px; background: #d8d4c9; }
.fake__byline { margin: 10px 0 12px; }
.fake__byline .bar { height: 7px; }
.fake__img {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 14px;
  background: linear-gradient(160deg, #dcd8ce 0%, #cfcabd 45%, #c4beae 100%);
}
.fake__img::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.18) 14px 28px);
}
.fake__p { margin-bottom: 16px; }
.fake__end { padding: 8px 0 4px; }

/* ---------- Rótulos de anúncio ---------- */
.ad-label {
  font-size: 8.5px; font-weight: 700; letter-spacing: .1em;
  background: var(--accent); color: #fff; padding: 2px 5px; border-radius: 2px;
  flex-shrink: 0;
}
.ad-copy { font-size: 12.5px; font-weight: 600; letter-spacing: .02em; }
.ad-copy--big { font-size: 17px; }
.ad-x {
  width: 20px; height: 20px; line-height: 1;
  display: grid; place-items: center;
  font-size: 14px; color: inherit; opacity: .7; flex-shrink: 0;
}

/* ---------- Demo: anchor ---------- */
.anchorAd {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 10px; background: #141311; color: #fff;
  border-top: 2px solid var(--accent);
  transform: translateY(102%);
  transition: transform .45s cubic-bezier(.22,.9,.3,1);
}
.anchorAd.is-on { transform: translateY(0); }
.anchorAd .ad-copy { margin-right: auto; }

/* ---------- Demo: in-article ---------- */
.slot { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .65s cubic-bezier(.25,.8,.25,1); margin-bottom: 0; }
.slot.is-open { grid-template-rows: 1fr; margin-bottom: 16px; }
.slot__inner { overflow: hidden; min-height: 0; }
.player { border: 1px solid #d8d4c9; padding: 8px; background: #faf9f6; }
.player .ad-label { margin-bottom: 6px; display: inline-block; }
.player__screen {
  aspect-ratio: 16 / 9; background: #141311; color: #fff;
  display: grid; place-items: center; gap: 4px; position: relative;
}
.player__play {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.85);
  display: grid; place-items: center;
}
.player__play::before {
  content: ""; margin-left: 3px;
  border-left: 9px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.player__screen .ad-copy { font-size: 10.5px; opacity: .8; }
.player__bar { height: 3px; background: #d8d4c9; margin-top: 8px; }
.player__progress { display: block; height: 100%; width: 0; background: var(--accent); }
.slot.is-open .player__progress { animation: prog 6s linear .6s forwards; }
@keyframes prog { to { width: 100%; } }

/* ---------- Demo: in-image ---------- */
.inimage {
  position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background: rgba(20, 19, 17, .92); color: #fff;
  display: flex; align-items: center; gap: 8px; padding: 0 10px;
  transform: translateY(102%);
  transition: transform .4s cubic-bezier(.22,.9,.3,1);
}
.inimage.is-on { transform: translateY(0); }
.inimage .ad-copy { margin-right: auto; font-size: 11.5px; }

/* ---------- Demo: native ---------- */
.native { border-top: 1px solid #d8d4c9; padding-top: 10px; margin-bottom: 16px; opacity: .35; transition: opacity .5s; }
.native.is-on { opacity: 1; }
.native__head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 8px;
}
.native__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.native__card { display: flex; flex-direction: column; }
.native__card .bar { height: 6px; margin-bottom: 4px; }
.native__thumb { aspect-ratio: 16/10; background: linear-gradient(140deg, #ddd9cf, #cac4b5); margin-bottom: 6px; display: block; }
.native.is-on .native__card { animation: fadeUp .45s both; }
.native.is-on .native__card:nth-child(2) { animation-delay: .08s; }
.native.is-on .native__card:nth-child(3) { animation-delay: .16s; }
.native.is-on .native__card:nth-child(4) { animation-delay: .24s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Demo: interstitial ---------- */
.interstitial {
  position: absolute; inset: 0; z-index: 50;
  background: var(--paper);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.interstitial.is-on { opacity: 1; pointer-events: auto; }
.interstitial__inner {
  width: 82%; aspect-ratio: 3 / 4;
  background: #141311; color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  position: relative; padding: 16px;
}
.interstitial__skip {
  position: absolute; top: 10px; right: 10px;
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,.14); padding: 4px 9px; border-radius: 999px;
}

/* ---------- Demo: rewarded wall ---------- */
.fake.is-walled .fake__p,
.fake.is-walled .native,
.fake.is-walled .fake__end { filter: blur(6px); user-select: none; pointer-events: none; }
.fake .fake__p, .fake .native, .fake .fake__end { transition: filter .5s; }
.wall {
  position: absolute; inset: 0; z-index: 30;
  display: grid; place-items: end center;
  padding-bottom: 18%;
  background: linear-gradient(rgba(255,255,255,0) 20%, rgba(255,255,255,.94) 62%);
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.wall.is-on { opacity: 1; pointer-events: auto; }
.wall__card {
  width: 80%; text-align: center; background: #fff;
  border: 1px solid #d8d4c9; padding: 16px 14px;
  box-shadow: 0 12px 32px rgba(20,19,17,.14);
}
.wall__card p { font-size: 12.5px; font-weight: 500; margin: 8px 0 12px; }
.wall__card .btn--small { background: var(--accent); border-color: var(--accent); }
.wall__card .btn--small.is-loading { opacity: .6; pointer-events: none; }

/* ---------- Replay / toolbar ---------- */
.replay {
  font-size: 13px; font-weight: 600; color: rgba(251,250,247,.6);
  padding: 6px 12px; border: var(--hair-dark);
  transition: color .15s, border-color .15s;
}
.replay:hover { color: var(--paper); }

/* ---------- Dashboard mock ---------- */
.ops { display: grid; grid-template-columns: minmax(0, 1.1fr) 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.dash {
  background: var(--ink-2); color: var(--paper);
  border: 1px solid rgba(20,19,17,.9);
  box-shadow: 0 24px 60px rgba(20,19,17,.22);
}
.dash__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-bottom: var(--hair-dark);
}
.dash__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(251,250,247,.25); }
.dash__title { margin-left: auto; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(251,250,247,.5); }
.dash__body { display: grid; grid-template-columns: 1fr 1.6fr; gap: 16px; padding: 16px; }
.dash__side { display: flex; flex-direction: column; gap: 12px; padding-right: 14px; border-right: var(--hair-dark); }
.dash__row { display: flex; align-items: center; gap: 8px; }
.dash__row .bar { margin: 0; height: 7px; background: rgba(251,250,247,.18); }
.dash__st { width: 7px; height: 7px; border-radius: 50%; background: rgba(251,250,247,.25); flex-shrink: 0; }
.dash__st--ok { background: #4ade80; }
.dash__chart { display: flex; align-items: flex-end; gap: 7px; height: 110px; margin-bottom: 14px; }
.dash__chart span { flex: 1; height: var(--h); background: rgba(251,250,247,.22); }
.dash__chart span:nth-child(6) { background: rgba(255,106,61,.75); }
.dash__chart span:nth-child(7) { background: var(--accent); }
.dash__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dash__card {
  border: var(--hair-dark); padding: 8px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.dash__k { font-size: 9.5px; letter-spacing: .12em; color: rgba(251,250,247,.5); }
.dash__v--ok { color: #4ade80; font-size: 13px; }
.ops__cols { display: flex; flex-direction: column; gap: calc(var(--sp) * 3); }
.ops__cols .col { border-top: var(--hair); padding-top: calc(var(--sp) * 2); }
.ops__cols .col h3 { font-size: 19px; margin-bottom: calc(var(--sp) * 1); }
.ops__cols .col p { font-size: 14.5px; color: var(--ink-60); margin: 0; }

/* ---------- Passos ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--sp) * 4);
}
.steps--five { grid-template-columns: repeat(5, 1fr); }
.step { border-top: 2px solid var(--ink); padding-top: calc(var(--sp) * 2); }
.step__num { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--accent); display: block; margin-bottom: calc(var(--sp) * 1); }
.step h3 { font-size: 20px; margin-bottom: calc(var(--sp) * 1); }
.step p { font-size: 14px; color: var(--ink-60); margin: 0; }

/* ---------- Colunas (05) ---------- */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--sp) * 4); }
.col { border-top: var(--hair); padding-top: calc(var(--sp) * 2); }
.col h3 { font-size: 19px; margin-bottom: calc(var(--sp) * 1); }
.col p { font-size: 14.5px; color: var(--ink-60); margin: 0; }

/* ---------- Contato (dark) ---------- */
.section--contact { padding: clamp(64px, 11vh, 128px) var(--pad) clamp(48px, 8vh, 88px); }
.contact__wrap { max-width: var(--wrap); margin-inline: auto; }
.contact__lead { font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1.3; max-width: 30ch; }
.contact__cta { margin-top: calc(var(--sp) * 4); display: flex; align-items: center; gap: calc(var(--sp) * 3); flex-wrap: wrap; }
.contact__mail { font-size: 15px; color: rgba(251,250,247,.65); }

/* ---------- Footer ---------- */
.site-foot {
  padding: calc(var(--sp) * 3) var(--pad);
  display: flex; align-items: center; gap: calc(var(--sp) * 3); flex-wrap: wrap;
  font-size: 13px;
}
.site-foot--dark { background: var(--ink); color: rgba(251,250,247,.6); border-top: var(--hair-dark); }
.site-foot--dark .brand { color: var(--paper); }
.brand--foot { font-size: 18px; margin-right: auto; }
.foot-links { display: flex; gap: calc(var(--sp) * 2); }
.foot-links a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(251,250,247,.25); }
.foot-links a:hover { color: var(--paper); }

/* ---------- Páginas legais ---------- */
.legal { max-width: 72ch; margin-inline: auto; padding: clamp(40px, 7vh, 72px) var(--pad); }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: calc(var(--sp) * 2); }
.legal h2 { font-size: 20px; margin: calc(var(--sp) * 4) 0 calc(var(--sp) * 1); }
.legal p, .legal li { font-size: 15.5px; color: var(--ink-60); }
.legal .kicker { margin-bottom: calc(var(--sp) * 2); }
.legal a { color: var(--ink); }

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .steps--five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .demo { grid-template-columns: 1fr; }
  .demo__list { flex-direction: row; overflow-x: auto; gap: 0; border-bottom: var(--hair-dark); }
  .fmt { border: 0 !important; padding: 10px 14px 12px; flex-shrink: 0; }
  .fmt[aria-selected="true"] { border-bottom: 2px solid var(--accent) !important; padding-left: 14px; }
  .fmt__name { font-size: 16px; }
  .fmt__tag { display: none; }
  .ops { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cols { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .site-head { flex-wrap: wrap; gap: calc(var(--sp) * 1.5); padding-block: calc(var(--sp) * 1.5); }
  .site-nav { order: 3; width: 100%; margin: 0; overflow-x: auto; gap: calc(var(--sp) * 2.5); padding-bottom: 2px; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { white-space: nowrap; }
  .head-right { margin-left: auto; }
  .steps, .steps--five { grid-template-columns: 1fr; }
  .hero__title { max-width: none; }
  .btn--big { padding: 14px 22px; font-size: 15px; }
}

/* ============================================================
   V2 — páginas de formato, animações, ticker, dashboard v2
   ============================================================ */

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Ticker (marquee de formatos) ---------- */
.ticker { overflow: hidden; border-top: var(--hair); border-bottom: var(--hair); background: var(--paper); }
.ticker__track { display: flex; width: max-content; animation: tick 36s linear infinite; }
.ticker__seq { display: flex; align-items: center; }
.ticker a {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 14px 28px; text-decoration: none; white-space: nowrap;
}
.ticker a .t-name { font-family: var(--serif); font-weight: 600; font-size: 19px; }
.ticker a .t-sep { color: var(--accent); }
.ticker a:hover .t-name { color: var(--accent); }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- Cards de formato (home) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--sp) * 3); }
.card {
  display: flex; flex-direction: column; gap: 6px;
  border: var(--hair-dark); padding: calc(var(--sp) * 3);
  text-decoration: none; position: relative;
  transition: border-color .2s, transform .2s;
  background: rgba(251, 250, 247, .02);
}
.card:hover { border-color: rgba(251, 250, 247, .45); transform: translateY(-3px); }
.card__name { font-family: var(--serif); font-weight: 600; font-size: 23px; }
.card__tag { font-size: 13px; color: rgba(251, 250, 247, .55); }
.card__go {
  margin-top: calc(var(--sp) * 2); font-size: 13px; font-weight: 600;
  color: #ff6a3d; display: inline-flex; gap: 6px; align-items: center;
}
.card:hover .card__go { gap: 10px; }
.card__go span { transition: inherit; }

/* ---------- Página de formato ---------- */
.fmt-hero { padding: clamp(48px, 8vh, 96px) var(--pad); }
.fmt-hero__wrap {
  max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: 1.1fr auto; gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.crumb { font-size: 13px; font-weight: 600; color: rgba(251,250,247,.55); text-decoration: none; display: inline-block; margin-bottom: calc(var(--sp) * 3); }
.crumb:hover { color: var(--paper); }
.fmt-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.fmt-hero__tag { font-family: var(--serif); font-style: italic; font-size: 20px; color: #ff6a3d; margin: calc(var(--sp) * 1) 0 calc(var(--sp) * 3); }
.fmt-hero__long { max-width: 56ch; font-size: 16.5px; color: rgba(251, 250, 247, .8); }
.fmt-hero .hero__cta { margin-top: calc(var(--sp) * 4); }

/* seletor de layout do publisher */
.layouts { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.layouts__label { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: rgba(251,250,247,.5); margin-right: 4px; }
.layouts__btn {
  font-size: 13px; font-weight: 600; padding: 6px 14px;
  border: var(--hair-dark); color: rgba(251,250,247,.7);
  transition: background .15s, color .15s;
}
.layouts__btn[aria-pressed="true"] { background: var(--paper); color: var(--ink); }

/* variações de layout do artigo fake */
.fake__img--extra, .fake__img--extra2 { display: none; position: relative; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 14px; }
.fake__img--extra { background: linear-gradient(200deg, #d5d0c4 0%, #c8c2b2 100%); }
.fake__img--extra2 { background: linear-gradient(120deg, #d9d5ca 0%, #cbc5b6 100%); }
.fake__img--extra::before, .fake__img--extra2::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255,255,255,.16) 14px 28px);
}
.fake.layout-blog .fake__img { aspect-ratio: 21 / 9; }
.fake.layout-blog .fake__headline .bar { height: 12px; }
.fake.layout-gallery .fake__img--extra,
.fake.layout-gallery .fake__img--extra2 { display: block; }
.fake.layout-gallery .fake__p .bar:nth-child(n+3) { display: none; }

/* especificações */
.specs { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 calc(var(--sp) * 6); }
.specs > div { border-top: var(--hair); padding: calc(var(--sp) * 2) 0; }
.specs dt { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 6px; }
.specs dd { margin: 0; font-size: 15.5px; }

/* lista "outros formatos" */
.fmt-links { display: flex; flex-direction: column; }
.fmt-link {
  display: flex; align-items: baseline; gap: calc(var(--sp) * 2);
  padding: calc(var(--sp) * 2) 0; border-top: var(--hair);
  text-decoration: none; transition: padding-left .2s;
}
.fmt-link:last-child { border-bottom: var(--hair); }
.fmt-link:hover { padding-left: calc(var(--sp) * 1.5); }
.fmt-link__name { font-family: var(--serif); font-weight: 600; font-size: 21px; }
.fmt-link__tag { font-size: 13.5px; color: var(--ink-60); }
.fmt-link__arrow { margin-left: auto; color: var(--accent); }

/* ---------- Dashboard v2 (dados + pagamentos) ---------- */
.dash__tabs { display: flex; gap: 2px; padding: 10px 14px 0; }
.dash__tab {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; color: rgba(251,250,247,.45);
}
.dash__tab--on { background: rgba(251,250,247,.08); color: var(--paper); border-bottom: 2px solid var(--accent); }
.dash__pay { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.dash__payrow {
  display: flex; align-items: center; gap: 8px;
  border: var(--hair-dark); padding: 7px 9px; font-size: 10.5px;
}
.dash__payrow .bar { margin: 0; height: 7px; background: rgba(251,250,247,.18); }
.chip {
  margin-left: auto; font-size: 8.5px; font-weight: 700; letter-spacing: .08em;
  padding: 2px 7px; border-radius: 999px; flex-shrink: 0;
}
.chip--ok { background: rgba(74, 222, 128, .16); color: #4ade80; }
.chip--wait { background: rgba(251, 250, 247, .1); color: rgba(251,250,247,.6); }
.dash__foot { display: flex; gap: 6px; padding: 10px 14px 14px; }
.dash__mini {
  font-size: 9px; font-weight: 600; letter-spacing: .08em;
  border: var(--hair-dark); padding: 3px 8px; color: rgba(251,250,247,.55);
}
.dash__mini b { color: #4ade80; font-weight: 700; }

/* ---------- Home: título da demo rápida ---------- */
.demo__quick {
  font-size: 15px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(251,250,247,.5); font-family: var(--sans); font-weight: 600;
  margin: calc(var(--sp) * 7) 0 calc(var(--sp) * 4);
  padding-top: calc(var(--sp) * 4); border-top: var(--hair-dark);
}

/* ---------- Página como-funciona ---------- */
.step__extra {
  margin-top: calc(var(--sp) * 1.5) !important;
  padding: calc(var(--sp) * 1.5); background: rgba(20, 19, 17, .045);
  border-left: 2px solid var(--accent);
  font-size: 14px !important;
}

/* ---------- Página contato ---------- */
.contact-page { min-height: 60vh; }
.contact-page .prose li { margin-bottom: 8px; }
.checklist { list-style: none; padding: 0; margin: calc(var(--sp) * 3) 0 0; max-width: var(--measure); }
.checklist li { border-top: var(--hair); padding: calc(var(--sp) * 1.5) 0 calc(var(--sp) * 1.5) calc(var(--sp) * 3); position: relative; font-size: 15px; }
.checklist li:last-child { border-bottom: var(--hair); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 1.4em; width: 10px; height: 1px; background: var(--accent); }
.section--dark .checklist li { border-color: rgba(251,250,247,.18); color: rgba(251,250,247,.85); }

/* ---------- V3: hero com demo em loop ---------- */
.hero3 { display: grid; grid-template-columns: 1.15fr auto; gap: clamp(28px, 5vw, 72px); align-items: center; max-width: var(--wrap); margin-inline: auto; padding: clamp(48px, 8vh, 96px) var(--pad) clamp(40px, 6vh, 72px); }
.hero3 .hero__title { font-size: clamp(2.4rem, 5.6vw, 4.2rem); }
.hero3 .demo__stage { transform: scale(.92); transform-origin: center; }
.hero3__foot { font-size: 12.5px; color: var(--ink-30); margin-top: 10px; text-align: center; }

/* ---------- Audiências ---------- */
.aud { display: grid; grid-template-columns: 1.4fr 1fr; gap: calc(var(--sp) * 3); }
.aud__card { border: var(--hair); padding: calc(var(--sp) * 3); display: flex; flex-direction: column; gap: 8px; }
.aud__card--pub { border-left: 3px solid var(--accent); }
.aud__card h3 { font-size: 21px; }
.aud__card p { font-size: 14.5px; color: var(--ink-60); margin: 0 0 8px; }
.aud__card .card__go { margin-top: auto; }

/* ---------- Processo em chips (home) ---------- */
.chips { display: flex; gap: calc(var(--sp) * 2); flex-wrap: wrap; align-items: stretch; }
.chip-step { border: var(--hair); padding: calc(var(--sp) * 1.5) calc(var(--sp) * 2); display: flex; align-items: baseline; gap: 10px; background: var(--paper); }
.chip-step b { font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--accent); font-size: 19px; }
.chip-step span { font-size: 14px; font-weight: 500; }

/* ---------- Device toggle: desktop ---------- */
.layouts__gap { width: 1px; height: 18px; background: rgba(251,250,247,.2); margin: 0 6px; }
.phone.device--desktop { width: min(620px, 92vw); aspect-ratio: 16 / 10.2; border-radius: 12px; border-width: 8px; }
.phone.device--desktop .phone__screen { border-radius: 5px; }
.phone.device--desktop .phone__notch { display: none; }
.phone.device--desktop .phone__screen::before {
  content: "● ● ●"; position: absolute; top: 0; left: 0; right: 0; height: 24px;
  background: #e9e6df; border-bottom: 1px solid #d8d4c9; z-index: 45;
  font-size: 7px; color: #b6b0a3; display: flex; align-items: center; padding-left: 10px; letter-spacing: 2px;
}
.phone.device--desktop .phone__scroll { top: 24px; background: #f0eee9; }
.phone.device--desktop .fake { max-width: 430px; margin-inline: auto; background: #fff; padding: 18px 18px 24px; min-height: 100%; }
.phone.device--desktop .interstitial__inner { width: 54%; aspect-ratio: 4 / 3; }
.phone.device--desktop .anchorAd { padding: 8px 14px; }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--sp) * 3); }
.post-card { border: var(--hair); padding: calc(var(--sp) * 3); display: flex; flex-direction: column; gap: 10px; text-decoration: none; transition: transform .2s, border-color .2s; background: var(--paper); }
.post-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.post-card__tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.post-card__title { font-family: var(--serif); font-weight: 600; font-size: 21px; line-height: 1.2; }
.post-card__date { font-size: 12.5px; color: var(--ink-30); }
.post-card__x { font-size: 14px; color: var(--ink-60); }
.post-card .card__go { color: var(--accent); margin-top: auto; }
.post { max-width: 68ch; margin-inline: auto; padding: clamp(40px, 7vh, 72px) var(--pad); }
.post h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.12; margin: 8px 0 10px; }
.post__meta { font-size: 13px; color: var(--ink-60); margin-bottom: calc(var(--sp) * 4); display: flex; gap: 12px; align-items: baseline; }
.post p { font-size: 16.5px; }
.post .sources { border-top: var(--hair); margin-top: calc(var(--sp) * 4); padding-top: calc(var(--sp) * 2); font-size: 13.5px; color: var(--ink-60); }
.post .sources a { color: var(--ink); }
.post__cta { margin-top: calc(var(--sp) * 4); }

/* ---------- Hero v4 (texto em destaque) ---------- */
.hero--v4 { padding: clamp(48px, 9vh, 110px) var(--pad) clamp(36px, 6vh, 64px); }
.hero__sub {
  font-size: clamp(16.5px, 2vw, 19px); line-height: 1.55;
  max-width: 58ch; color: var(--ink-60);
  margin: calc(var(--sp) * 3) 0 0;
}
.hero__points--compact { margin-top: calc(var(--sp) * 4); }
.hero__points--compact li { font-size: 14.5px; padding-block: calc(var(--sp) * 1.25); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink-30); }
.btn--ghost:hover { background: var(--paper-2); color: var(--ink); border-color: var(--ink); }
.demo__more { margin-top: calc(var(--sp) * 3); display: inline-block; }
@media (max-width: 700px) {
  .hero--v4 { padding: 36px var(--pad) 32px; }
  .hero--v4 .hero__title { font-size: clamp(2.1rem, 9.5vw, 2.6rem); }
  .hero__sub { font-size: 15.5px; margin-top: 14px; }
  .hero__cta { margin-top: 20px; gap: 10px; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .hero__points--compact { margin-top: 20px; }
  .section { padding-block: 44px; }
  .section__head { margin-bottom: 24px; }
  .demo__spec { padding-top: 16px; }
}

/* ---------- Mobile: o toque não pode ficar preso na demo ---------- */
@media (pointer: coarse) {
  .phone__scroll { overflow-y: hidden; touch-action: pan-y; }
  .phone { width: min(270px, 78vw); }
}

/* ---------- Dashboard interativo (página /dashboard) ---------- */
.dash--app .dash__tab { cursor: pointer; user-select: none; }
.dash__panel { display: none; padding: 16px; }
.dash__panel--on { display: block; }
.dash__chart--big { height: 150px; margin-bottom: 6px; }
.dash__chart span { position: relative; cursor: pointer; transition: opacity .15s; }
.dash__chart span:hover { opacity: .8; }
.dash__chart span:hover::after {
  content: attr(data-v); position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%); white-space: nowrap;
  background: var(--paper); color: var(--ink); font-size: 10px; font-weight: 700;
  padding: 3px 7px; border-radius: 2px; z-index: 5;
}
.dash__axis { display: flex; gap: 7px; }
.dash__axis span { flex: 1; text-align: center; font-size: 8px; color: rgba(251,250,247,.4); letter-spacing: .04em; }
.dash__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 14px; }
.dash__kpi { border: var(--hair-dark); padding: 10px; }
.dash__kpi b { display: block; font-family: var(--serif); font-size: 19px; font-weight: 600; }
.dash__kpi span { font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(251,250,247,.5); }
.inv { width: 100%; border-collapse: collapse; font-size: 12px; }
.inv th { text-align: left; font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(251,250,247,.45); padding: 8px 8px; border-bottom: var(--hair-dark); }
.inv td { padding: 9px 8px; border-bottom: var(--hair-dark); }
.inv tr:last-child td { border-bottom: 0; }
.inv .chip { margin-left: 0; }
.inv__pdf { font-size: 10px; font-weight: 700; border: var(--hair-dark); padding: 2px 8px; color: rgba(251,250,247,.65); }
.src__row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: var(--hair-dark); font-size: 12px; }
.src__row:last-child { border-bottom: 0; }
.src__name { width: 88px; flex-shrink: 0; color: rgba(251,250,247,.75); }
.src__meter { flex: 1; height: 6px; background: rgba(251,250,247,.12); position: relative; }
.src__meter i { position: absolute; inset: 0 auto 0 0; width: var(--w); background: var(--accent); }
.src__pct { width: 40px; text-align: right; font-weight: 700; color: rgba(251,250,247,.8); }
.dash__note { font-size: 11px; color: rgba(251,250,247,.4); padding: 0 16px 14px; }
.contact__mails { display: flex; flex-direction: column; gap: 6px; }
.contact__mails a { font-size: 15px; color: rgba(251,250,247,.75); }
.contact__mails .who { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(251,250,247,.45); margin-right: 8px; }

/* ---------- Responsivo v2 ---------- */
@media (max-width: 980px) {
  .fmt-hero__wrap { grid-template-columns: 1fr; }
  .fmt-hero .demo__stage { justify-self: center; }
  .cards { grid-template-columns: 1fr 1fr; }
  .specs { grid-template-columns: 1fr; }
  .hero3 { grid-template-columns: 1fr; }
  .hero3 .demo__stage { justify-self: center; }
  .aud { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .dash__body { grid-template-columns: 1fr; }
  .dash__side { border-right: 0; border-bottom: var(--hair-dark); padding: 0 0 12px; }
  .fmt-link__tag { display: none; }
}
