/* ════════════════════════════════════════════════════════════════════════════
   12true — site público (12true.com)

   Referência de layout: v2/management/visual/site.jpg.
   Paleta: a mesma do dash (v2/dash/src/index.css) — quando a marca mudar de
   tom, muda lá E aqui. São dois arquivos porque o site não tem Tailwind nem
   build de CSS, e trazer um só para compartilhar cinco cores seria caro.

   ⚠️ Contraste. O verde da marca (#2EA672) dá 3:1 sobre branco — passa em
   texto GRANDE e em ícone, reprova em texto corrido e em botão com letra
   branca. Por isso existe o `--verde-fundo`: é o mesmo verde, escurecido até
   o texto branco em cima dele passar AA (5,4:1). Texto pequeno em verde usa
   ele também.
   ════════════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --verde-escuro: #0E1F17;
  --verde:        #2EA672;
  --verde-fundo:  #1D7A50;
  --lima:         #A7E35E;
  --papel:        #F2F3EE;
  --borda:        #E2E5DF;
  --branco:       #FFFFFF;

  --ink:   var(--verde-escuro);
  --ink-2: #3A4640;
  --ink-3: #5F6B64;

  --shell: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 12px;

  color-scheme: light;
  accent-color: var(--verde);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--branco);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--verde); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--papel);
  padding: 10px 14px; border-radius: 8px; text-decoration: none;
}
.skip:focus { top: 12px; }

.shell {
  width: 100%;
  max-width: calc(var(--shell) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 112px); }

/* ── Tipografia ──────────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--verde-fundo);
}

.display-1 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 5.2vw, 3.55rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.display-2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.tone { color: var(--verde); }

.lede {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 34em;
  text-wrap: pretty;
}

/* ── Botões e links ──────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-primary { background: var(--verde-fundo); color: var(--branco); }
.btn-primary:hover { background: #17663F; }
.btn-ghost { border: 1px solid var(--borda); color: var(--ink); background: var(--branco); }
.btn-ghost:hover { border-color: var(--verde); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--verde-fundo);
  text-decoration: none;
}
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ════════════════════════════════════════════════════════════════════════════
   Masthead
   ════════════════════════════════════════════════════════════════════════════ */

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--borda);
}
.masthead .shell {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.wordmark { display: inline-flex; color: var(--ink); flex: none; }
.wordmark .logo { height: 34px; width: auto; }

.nav { display: flex; gap: 28px; margin-left: 12px; }
.nav a {
  font-size: 15px; font-weight: 500;
  color: var(--ink-2); text-decoration: none;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }

.masthead-actions { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.lang {
  font-size: 12.5px; font-weight: 650; letter-spacing: .06em;
  color: var(--ink-3); text-decoration: none;
  padding: 4px 8px; border: 1px solid var(--borda); border-radius: 6px;
}
.lang:hover { color: var(--ink); border-color: var(--ink-3); }
.login { font-size: 15px; font-weight: 500; text-decoration: none; }
.login:hover { color: var(--verde-fundo); }

/* Menu mobile: <details> nativo, sem JavaScript. */
.menu { display: none; position: relative; margin-left: auto; }
.menu summary {
  list-style: none; cursor: pointer;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--borda); border-radius: 10px;
}
.menu summary::-webkit-details-marker { display: none; }
.menu-panel {
  position: absolute; right: 0; top: calc(100% + 10px);
  min-width: 240px;
  display: flex; flex-direction: column;
  padding: 8px;
  background: var(--branco);
  border: 1px solid var(--borda); border-radius: var(--radius);
  box-shadow: 0 18px 40px -12px rgba(14, 31, 23, .22);
}
.menu-panel a { padding: 10px 12px; border-radius: 8px; text-decoration: none; font-weight: 500; }
.menu-panel a:hover { background: var(--papel); }
.menu-panel hr { border: 0; border-top: 1px solid var(--borda); margin: 6px 4px; }

@media (max-width: 980px) {
  .nav, .masthead-actions { display: none; }
  .menu { display: block; }
}

/* ════════════════════════════════════════════════════════════════════════════
   Hero
   ════════════════════════════════════════════════════════════════════════════ */

.hero {
  padding-block: clamp(48px, 7vw, 88px) clamp(56px, 7vw, 96px);
  background:
    radial-gradient(ellipse 70% 55% at 72% 100%, rgba(46, 166, 114, .13), transparent 70%),
    linear-gradient(180deg, var(--branco) 0%, #F8F9F5 100%);
  border-bottom: 1px solid var(--borda);
  overflow-x: clip;  /* o notebook sangra na borda direita, como na referência */
}
.hero-grid { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
  .hero-grid .hero-art { width: 122%; max-width: none; margin-inline: 0; }
}

.checks { margin-top: 28px; display: grid; gap: 12px; }
.checks li { display: flex; align-items: center; gap: 12px; color: var(--ink-2); }
.checks svg { flex: none; color: var(--verde); }

.actions { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; }

.secure {
  margin-top: 36px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-3);
}
.secure svg { flex: none; color: var(--verde-fundo); }

/* ── O mockup ──────────────────────────────────────────────────────────────
   Tudo dentro dele é medido em `em`, e o `em` é uma fração da LARGURA do
   container (cqw). Resultado: o desenho inteiro escala como uma imagem, do
   celular ao monitor largo, sem um breakpoint sequer. */

.hero-art {
  container-type: inline-size;
  position: relative;
  aspect-ratio: 100 / 76;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

.laptop, .phone { position: absolute; font-size: 1.3cqw; line-height: 1.3; }

.laptop { right: 0; top: 0; width: 88cqw; }
.laptop-screen {
  aspect-ratio: 16 / 10.4;
  background: #1B1F1D;
  border-radius: 1.4em 1.4em .4em .4em;
  padding: .9em;
  box-shadow: 0 3em 5em -2em rgba(14, 31, 23, .35);
}
.laptop-base {
  height: 1.5em;
  margin-inline: -6%;
  background: linear-gradient(180deg, #D5D8D3 0%, #B7BBB6 60%, #9DA29C 100%);
  border-radius: 0 0 2.2em 2.2em;
  position: relative;
}
.laptop-base::before {
  content: ""; position: absolute; left: 50%; top: 0; translate: -50% 0;
  width: 16%; height: .5em; background: #A8ADA7; border-radius: 0 0 .6em .6em;
}

.app {
  height: 100%;
  display: grid; grid-template-columns: 12em 1fr;
  background: var(--branco);
  border-radius: .5em;
  overflow: hidden;
}
.app-side {
  display: flex; flex-direction: column; gap: .15em;
  padding: 1.3em .9em;
  background: #FAFBF8;
  border-right: 1px solid var(--borda);
}
.app-logo { color: var(--ink); margin-bottom: 1.3em; padding-left: .5em; }
.app-logo svg { height: 2.1em; width: auto; }
.app-nav { font-size: .88em; color: var(--ink-3); padding: .5em .7em; border-radius: .5em; }
.app-nav.on { background: #E7F4EC; color: var(--verde-fundo); font-weight: 600; }

.app-main { padding: 1.1em 1.4em; display: flex; flex-direction: column; min-width: 0; }
.app-top { display: flex; justify-content: space-between; align-items: center; }
.app-search { width: 45%; height: 1.9em; border: 1px solid var(--borda); border-radius: .5em; }
.app-avatar { width: 1.9em; height: 1.9em; border-radius: 50%; background: var(--papel); border: 1px solid var(--borda); }
.app-h { margin: 1em 0 .8em; font-size: 1.35em; font-weight: 650; letter-spacing: -.02em; }

.app-grid {
  flex: 1;
  display: grid; gap: .8em;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 1.15fr 1fr;
  min-height: 0;
}
.card {
  border: 1px solid var(--borda); border-radius: .7em;
  padding: .9em 1em;
  display: flex; flex-direction: column; gap: .2em;
  min-width: 0; overflow: hidden;
}
.card .k { font-size: .78em; color: var(--ink-3); font-weight: 500; }
.card .v { font-size: 1.6em; font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.card .d { font-size: .75em; color: var(--verde-fundo); font-weight: 600; }
.card .spark { flex: 1; width: 100%; min-height: 3em; margin-top: .3em; }
.card .months { display: flex; justify-content: space-between; font-size: .66em; color: var(--ink-3); }

.card-country { align-items: flex-start; }
.card-country .donut { width: 6.2em; height: 6.2em; margin: .5em auto .6em; transform: rotate(-90deg); }
.legend { font-size: .72em; color: var(--ink-2); display: flex; align-items: center; gap: .5em; width: 100%; }
.legend b { margin-left: auto; font-weight: 600; }
.dot { width: .7em; height: .7em; border-radius: 50%; display: inline-block; }
.dot.us { background: var(--verde); }
.dot.br { background: var(--ink); }

.card .row, .phone .row {
  display: flex; justify-content: space-between; align-items: center; gap: .6em;
  font-size: .78em; font-variant-numeric: tabular-nums;
  padding-block: .45em;
  border-top: 1px solid #F0F2EE;
}
.card .row b { display: block; font-weight: 600; }
.card .row small { display: block; font-size: .85em; color: var(--ink-3); }
.row .in { color: var(--verde-fundo); font-weight: 600; }
.row .out { color: #B0453B; font-weight: 600; }  /* o tijolo do dash: dinheiro saindo */

.bars { flex: 1; display: flex; align-items: flex-end; gap: .28em; min-height: 2.5em; margin-top: .4em; }
.bars i { flex: 1; background: var(--verde); border-radius: .15em .15em 0 0; opacity: .85; }
.bars i:nth-child(3n) { background: var(--ink); opacity: .75; }

.phone {
  left: 0; top: 24cqw;
  width: 17.5em;
  aspect-ratio: 9 / 18.6;
  padding: .55em;
  background: #1B1F1D;
  border-radius: 2.4em;
  box-shadow: 0 3em 4em -1.5em rgba(14, 31, 23, .45);
}
.phone-screen {
  position: relative;
  height: 100%;
  background: var(--branco);
  border-radius: 1.9em;
  padding: 2.4em 1.1em 1em;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.phone-notch {
  position: absolute; left: 50%; top: .6em; translate: -50% 0;
  width: 5.5em; height: 1.3em; border-radius: 1em; background: #1B1F1D;
}
.phone-logo { color: var(--ink); }
.phone-logo svg { height: 1.7em; width: auto; }
.phone-hello { margin: 1em 0 .7em; font-size: .95em; font-weight: 650; }
.phone-nw {
  background: var(--ink); color: var(--papel);
  border-radius: .9em; padding: .9em 1em .6em;
  display: flex; flex-direction: column; gap: .1em;
}
.phone-nw .k { font-size: .68em; opacity: .75; }
.phone-nw .v { font-size: 1.35em; font-weight: 700; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.phone-nw .d { font-size: .66em; color: var(--lima); font-weight: 600; }
.phone-nw svg { width: 100%; height: 2em; margin-top: .3em; }
.phone-k { display: block; margin: 1em 0 .2em; font-size: .7em; font-weight: 600; color: var(--ink-3); }
.phone .row { font-size: .7em; }
.flag {
  display: inline-grid; place-items: center;
  width: 2em; height: 2em; margin-right: .6em;
  border-radius: 50%; background: var(--papel);
  font-style: normal; font-size: .75em; font-weight: 700; color: var(--verde-fundo);
}
.phone .row > span:first-child { display: inline-flex; align-items: center; }

.sample {
  position: absolute; left: 27cqw; bottom: 0;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ════════════════════════════════════════════════════════════════════════════
   Faixa de fatos
   ════════════════════════════════════════════════════════════════════════════ */

.strip { padding-block: 40px 44px; border-bottom: 1px solid var(--borda); text-align: center; }
.strip-title { font-size: clamp(1.05rem, 1.6vw, 1.2rem); font-weight: 500; color: var(--ink-2); }
.strip-list {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: center;
  row-gap: 12px;
}
.strip-list li {
  padding-inline: clamp(16px, 2.6vw, 34px);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 650; letter-spacing: -.01em;
  color: var(--ink);
}
.strip-list li + li { border-left: 1px solid var(--borda); }
@media (max-width: 640px) {
  .strip-list { flex-direction: column; }
  .strip-list li + li { border-left: 0; }
}

/* ════════════════════════════════════════════════════════════════════════════
   O que tem dentro
   ════════════════════════════════════════════════════════════════════════════ */

.features-grid { display: grid; gap: 48px; }
@media (min-width: 1040px) {
  .features-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 56px; }
  .features-intro { padding-top: 24px; }
  .features .trust { grid-column: 2; }
}

.modules { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
@media (min-width: 1040px) { .modules { grid-template-columns: repeat(3, 1fr); } }

.module {
  padding: 26px 24px 28px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.module:hover { border-color: #C9D7CD; box-shadow: 0 12px 30px -18px rgba(14, 31, 23, .3); }
.mic { display: inline-flex; color: var(--verde-fundo); }
.module h3 { margin-top: 20px; font-size: 16px; font-weight: 650; letter-spacing: -.01em; }
.module p { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }

.trust {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px;
  background: var(--papel);
  border-radius: var(--radius);
  font-size: 14.5px; color: var(--ink-2);
}
.trust svg { flex: none; margin-top: 2px; color: var(--verde-fundo); }

/* ════════════════════════════════════════════════════════════════════════════
   Crenças — rádio + seletor de irmão, sem JavaScript (mesma mecânica do v1)
   ════════════════════════════════════════════════════════════════════════════ */

.beliefs { background: var(--papel); }
.beliefs .link-arrow { margin-top: 36px; }

.claims { display: grid; margin-top: 44px; border-top: 1px solid #D6DAD2; }

/* Escondido, mas focável pelo teclado — as setas navegam entre os cinco. */
.claim-radio {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.claim-tab {
  cursor: pointer;
  display: flex; align-items: baseline; gap: 14px;
  padding: 22px 18px 24px;
  border-bottom: 1px solid #D6DAD2;
  border-radius: 10px 10px 0 0;
  transition: background .15s ease;
}
.claim-tab .n {
  flex: none;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  font-weight: 700; line-height: 1; letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  color: #BFC7BF;
  transition: color .15s ease;
}
.claim-tab .claim {
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  font-weight: 650; line-height: 1.25; letter-spacing: -.02em;
  text-wrap: balance;
}
.claim-tab:hover .n { color: var(--verde); }

.claim-panel { display: none; background: var(--branco); padding: clamp(22px, 2.8vw, 32px); border-radius: 0 0 var(--radius) var(--radius); }
.claim-panel p { color: var(--ink-2); font-size: 1.05rem; line-height: 1.65; max-width: 62em; margin-inline: auto; }

#belief-1:checked ~ .claim-panel:nth-of-type(1),
#belief-2:checked ~ .claim-panel:nth-of-type(2),
#belief-3:checked ~ .claim-panel:nth-of-type(3),
#belief-4:checked ~ .claim-panel:nth-of-type(4),
#belief-5:checked ~ .claim-panel:nth-of-type(5) { display: block; }

#belief-1:checked ~ .claim-tab:nth-of-type(1),
#belief-2:checked ~ .claim-tab:nth-of-type(2),
#belief-3:checked ~ .claim-tab:nth-of-type(3),
#belief-4:checked ~ .claim-tab:nth-of-type(4),
#belief-5:checked ~ .claim-tab:nth-of-type(5) { background: var(--branco); border-bottom-color: transparent; }

#belief-1:checked ~ .claim-tab:nth-of-type(1) .n,
#belief-2:checked ~ .claim-tab:nth-of-type(2) .n,
#belief-3:checked ~ .claim-tab:nth-of-type(3) .n,
#belief-4:checked ~ .claim-tab:nth-of-type(4) .n,
#belief-5:checked ~ .claim-tab:nth-of-type(5) .n { color: var(--verde); }

#belief-1:focus-visible ~ .claim-tab:nth-of-type(1),
#belief-2:focus-visible ~ .claim-tab:nth-of-type(2),
#belief-3:focus-visible ~ .claim-tab:nth-of-type(3),
#belief-4:focus-visible ~ .claim-tab:nth-of-type(4),
#belief-5:focus-visible ~ .claim-tab:nth-of-type(5) { outline: 2px solid var(--verde); outline-offset: -2px; }

/* Tela larga: cinco colunas, painel numa linha inteira abaixo. */
@media (min-width: 900px) {
  .claims { grid-template-columns: repeat(5, 1fr); column-gap: 8px; border-top: 0; }
  .claim-tab { grid-row: 1; flex-direction: column; gap: 16px; padding: 24px 20px 28px; border-bottom: 0; }
  .claim-panel { grid-row: 2; grid-column: 1 / -1; padding-inline: clamp(40px, 10vw, 140px); }
  #belief-1:checked ~ .claim-panel:nth-of-type(1) { border-top-left-radius: 0; }
  #belief-5:checked ~ .claim-panel:nth-of-type(5) { border-top-right-radius: 0; }
}

/* ════════════════════════════════════════════════════════════════════════════
   Por que existimos
   ════════════════════════════════════════════════════════════════════════════ */

.mission { background: var(--branco); }
.mission-text {
  margin-top: 22px;
  max-width: 26em;
  font-size: clamp(1.6rem, 3.3vw, 2.55rem);
  font-weight: 600; line-height: 1.22; letter-spacing: -.028em;
  text-wrap: pretty;
}

/* ════════════════════════════════════════════════════════════════════════════
   Convite — a banda escura
   ════════════════════════════════════════════════════════════════════════════ */

.cta {
  background: var(--verde-escuro);
  color: var(--papel);
  padding-block: clamp(64px, 8vw, 100px);
  overflow: hidden;
}
.cta-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1040px) { .cta-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.cta .eyebrow { color: var(--lima); }
.cta .display-2 { color: var(--branco); }
.cta .lede { color: rgba(242, 243, 238, .78); }
.cta .btn-primary { background: var(--verde); color: var(--verde-escuro); }  /* 5,9:1 */
.cta .btn-primary:hover { background: var(--lima); }

.fineprint { margin-top: 18px; font-size: 14.5px; color: rgba(242, 243, 238, .7); }
.fineprint a { color: var(--lima); }

.cta-checks { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; color: rgba(242, 243, 238, .82); }
.cta-checks li { display: inline-flex; align-items: center; gap: 8px; }
.cta-checks svg { color: var(--lima); }

.cta-art svg { width: 100%; max-width: 560px; margin-inline: auto; }
.cta-art .city { fill: var(--papel); fill-opacity: .75; font: 600 13px Inter, sans-serif; letter-spacing: .16em; }

/* ════════════════════════════════════════════════════════════════════════════
   Rodapé
   ════════════════════════════════════════════════════════════════════════════ */

.sitefoot {
  background: var(--verde-escuro);
  color: rgba(242, 243, 238, .72);
  border-top: 1px solid rgba(242, 243, 238, .1);
  padding-block: 56px 32px;
  font-size: 14.5px;
}
.sitefoot .cols { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
@media (min-width: 900px) { .sitefoot .cols { grid-template-columns: 1.6fr 1fr 1fr; } }
.sitefoot .wordmark { color: var(--papel); }
.sitefoot .about p { margin-top: 16px; max-width: 24em; }
.sitefoot h2 { font-size: 14px; font-weight: 650; color: var(--papel); margin-bottom: 14px; }
.sitefoot ul { display: grid; gap: 10px; }
.sitefoot a { text-decoration: none; }
.sitefoot a:hover { color: var(--lima); }
.sitefoot .fine {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(242, 243, 238, .1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════════════════════════
   Páginas de texto (crenças)
   ════════════════════════════════════════════════════════════════════════════ */

.doc { padding-block: clamp(48px, 7vw, 88px) clamp(64px, 8vw, 104px); }
.doc-col { max-width: 720px; margin-inline: auto; }

.masthead-doc { padding-bottom: 36px; border-bottom: 1px solid var(--borda); }
.masthead-doc h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.035em;
  text-wrap: balance;
}
.masthead-doc h1::before {
  content: ""; display: block;
  width: 36px; height: 3px; margin-bottom: 22px;
  background: var(--verde); border-radius: 2px;
}

.prose { color: var(--ink-2); font-size: 1.06rem; line-height: 1.72; }
.prose h2 {
  margin-top: 64px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  font-weight: 650; line-height: 1.2; letter-spacing: -.025em;
}
.prose p, .prose ul { margin-top: 18px; }
.prose strong { color: var(--ink); font-weight: 650; }

.turn {
  margin-top: 26px !important;
  padding: 22px 24px;
  background: var(--papel);
  border-left: 3px solid var(--verde);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
}
.turn .label {
  display: block; margin-bottom: 8px;
  font-size: 12px; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: var(--verde-fundo);
}
.kicker { font-size: 1.14rem; font-weight: 550; color: var(--ink); letter-spacing: -.01em; }

.conseq { display: grid; gap: 14px; }
.conseq li { position: relative; padding-left: 22px; }
.conseq li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--verde);
}

.aside {
  padding: 16px 20px;
  border: 1px solid var(--borda); border-radius: var(--radius);
  font-size: .95rem;
}
.aside b { color: var(--ink); }

.colophon { margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--borda); }

/* A barra de abas do celular: fecha a tela embaixo, como no app de verdade. */
.phone-tabs {
  margin-top: auto;
  display: flex; justify-content: space-around;
  padding-top: .8em;
  border-top: 1px solid var(--borda);
}
.phone-tabs i { width: 1.3em; height: 1.3em; border-radius: .35em; background: var(--borda); }
.phone-tabs i:first-child { background: var(--verde); }
