/* Zerado · site institucional. Tokens iguais aos do app (design/tokens-e-componentes.css). */
:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface2: #f1f2f4;
  --line: #e5e6ea;
  --ink: #1b1f2a;
  --ink2: #4f5563;
  --ink3: #646a78;
  --primary: #2f5bea;
  --primary-hover: #1f43c0;
  --primary-ink: #ffffff;
  --primary-soft: #e8eeff;
  --primary-text: #2446c9;
  --pos-bg: #ddf3e5;
  --pos: #11643a;
  --zero-bg: #eceef1;
  --zero: #4b5260;
  --warn-bg: #fdf0c9;
  --warn: #774c00;
  --warn-bar: #e0a100;
  --neg-bg: #fde3e0;
  --neg: #ae2417;
  --tint: #eef1f8;
  --ink-section: #141a2e;
  --ink-section-text: #eef1ff;
  --ink-section-sub: #b7c0de;
  --t1: #ece8fd;
  --t1i: #5b45c9;
  --t2: #e2effc;
  --t2i: #1f63b5;
  --t3: #dff4e8;
  --t3i: #1a7a48;
  --t4: #fdebdd;
  --t4i: #b2521a;
  --t8: #ddf3f3;
  --t8i: #157273;
  --t9: #eceef1;
  --t9i: #4b5260;
  --shadow: 0 1px 2px rgba(20, 24, 36, 0.05), 0 8px 28px rgba(20, 24, 36, 0.07);
  --shadow-phone: 0 2px 6px rgba(20, 24, 36, 0.06), 0 24px 60px rgba(31, 67, 192, 0.14);
  --radius: 20px;
  --display: 'Bricolage Grotesque', 'Figtree', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --body: 'Figtree', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg: #111318;
    --surface: #1a1d24;
    --surface2: #232731;
    --line: #2d323d;
    --ink: #f1f2f5;
    --ink2: #bac0cb;
    --ink3: #a0a6b2;
    --primary: #7e9bff;
    --primary-hover: #a9bcff;
    --primary-ink: #0d1430;
    --primary-soft: #1f2a52;
    --primary-text: #a9bcff;
    --pos-bg: #143824;
    --pos: #86e0a8;
    --zero-bg: #282c36;
    --zero: #bac0cb;
    --warn-bg: #3a2e10;
    --warn: #f4cf6e;
    --warn-bar: #f4cf6e;
    --neg-bg: #46201b;
    --neg: #ffa296;
    --tint: #161a24;
    --ink-section: #0b0e1a;
    --ink-section-text: #eef1ff;
    --ink-section-sub: #a7b0cf;
    --t1: #2a2550;
    --t1i: #b8aaff;
    --t2: #1b2f48;
    --t2i: #8ec2ff;
    --t3: #16372a;
    --t3i: #86e0a8;
    --t4: #40291a;
    --t4i: #ffb27f;
    --t8: #133939;
    --t8i: #7fd8d8;
    --t9: #282c36;
    --t9i: #bac0cb;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    --shadow-phone: 0 2px 6px rgba(0, 0, 0, 0.4), 0 24px 60px rgba(0, 0, 0, 0.45);
    color-scheme: dark;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--primary-text);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

.num {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 50;
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 10px;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding-inline: 22px;
  border-radius: 16px;
  border: none;
  background: var(--primary);
  color: var(--primary-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.15s;
}
.btn:hover {
  background: var(--primary-hover);
}
.btn:active {
  transform: translateY(1px);
}
.btn-sm {
  height: 42px;
  padding-inline: 16px;
  border-radius: 13px;
  font-size: 15px;
}
.btn-lg {
  height: 58px;
  padding-inline: 30px;
  font-size: 18px;
}
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover {
  background: var(--surface2);
}
.btn-soft {
  background: var(--primary-soft);
  color: var(--primary-text);
}
.btn-soft:hover {
  background: var(--primary-soft);
  filter: brightness(0.97);
}

.link-quiet {
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  cursor: pointer;
  padding: 8px 4px;
}
.link-quiet:hover {
  color: var(--ink);
}

/* ---------- topo ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  padding-top: env(safe-area-inset-top, 0px);
}
.topbar-in {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #2f5bea;
  display: grid;
  place-items: center;
}
.brand-mark span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 3.5px solid #fff;
}
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.topnav {
  display: flex;
  gap: 22px;
  margin-left: 12px;
}
.topnav a {
  color: var(--ink2);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.topnav a:hover {
  color: var(--ink);
}
.topbar-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- hero ---------- */
.hero {
  padding-block: 56px 72px;
}
.hero-in {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-text);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(44px, 7.4vw, 84px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero h1 .u {
  background: linear-gradient(transparent 68%, var(--pos-bg) 68%, var(--pos-bg) 94%, transparent 94%);
  padding-inline: 2px;
}
.lede {
  margin-top: 22px;
  font-size: 20px;
  color: var(--ink2);
  max-width: 34ch;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-notes {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14px;
  color: var(--ink3);
}
.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-notes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pos);
}

/* ---------- demo (mini Plano) ---------- */
.demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.phone {
  width: 100%;
  max-width: 400px;
  background: var(--bg);
  border-radius: 36px;
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-phone), inset 0 0 0 1px var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-inline: 4px;
}
.phone-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
}
.phone-hint {
  font-size: 13px;
  color: var(--ink3);
}
.rta {
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #1b7a45;
  color: #fff;
  transition: background 0.35s;
}
.rta[data-state='zero'] {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.rta-label {
  font-size: 14px;
  opacity: 0.92;
}
.rta-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.rta[data-state='zero'] .rta-value {
  color: var(--pos);
}
.envelopes {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.envelopes li + li {
  box-shadow: inset 0 1px 0 var(--line);
}
.env {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.env:hover:not(:disabled) {
  background: var(--surface2);
}
.env:disabled {
  cursor: default;
}
.env-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.env-ico svg {
  width: 19px;
  height: 19px;
}
.env-name {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  font-size: 16px;
}
.t1 {
  background: var(--t1);
  color: var(--t1i);
}
.t2 {
  background: var(--t2);
  color: var(--t2i);
}
.t3 {
  background: var(--t3);
  color: var(--t3i);
}
.t4 {
  background: var(--t4);
  color: var(--t4i);
}
.t8 {
  background: var(--t8);
  color: var(--t8i);
}
.t9 {
  background: var(--t9);
  color: var(--t9i);
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s;
}
.p-zero {
  background: var(--zero-bg);
  color: var(--zero);
}
.p-pos {
  background: var(--pos-bg);
  color: var(--pos);
}
.p-warn {
  background: var(--warn-bg);
  color: var(--warn);
}
.demo-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-inline: 2px;
}
.demo-caption {
  font-size: 13px;
  color: var(--ink3);
}

/* ---------- seções ---------- */
.section {
  padding-block: 88px;
}
/* âncoras do menu não ficam sob o topo fixo */
section[id] {
  scroll-margin-top: 68px;
}
.section-tint {
  background: var(--tint);
}
.h2 {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.028em;
  max-width: 20ch;
}
.h3 {
  font-size: 24px;
  font-weight: 700;
}
.section-lede {
  margin-top: 18px;
  font-size: 19px;
  color: var(--ink2);
  max-width: 60ch;
}

.symptoms {
  list-style: none;
  padding: 0;
  margin: 44px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.symptoms li {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}
.symptoms strong {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
}
.symptoms span {
  font-size: 15.5px;
  color: var(--ink2);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  counter-reset: none;
}
.steps li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-n {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
}
.steps h3 {
  font-size: 21px;
  margin-top: 4px;
}
.steps p {
  color: var(--ink2);
  font-size: 16px;
}

.compare {
  margin-top: 56px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-head span {
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink3);
  background: var(--surface2);
}
.compare-head span + span {
  color: var(--primary-text);
}
.compare-row span {
  padding: 16px 22px;
  box-shadow: inset 0 1px 0 var(--line);
  font-size: 16.5px;
}
.compare-row span:first-child {
  color: var(--ink3);
}
.compare-row span + span {
  font-weight: 600;
}

/* ---------- recursos ---------- */
.feature {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.feature-flip .feature-copy {
  order: 2;
}
.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-copy p {
  color: var(--ink2);
  max-width: 50ch;
}
.feature-copy p + .h3 {
  margin-top: 18px;
}
.c-warn-text {
  background: var(--warn-bg);
  color: var(--warn);
  padding: 0 6px;
  border-radius: 6px;
  font-weight: 600;
}
.mock {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: 32px;
  background: var(--tint);
}
.mock-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-weight: 600;
  font-size: 16px;
}
.mock-row + .mock-row {
  box-shadow: inset 0 1px 0 var(--line);
}
.mock-row .grow {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-row small {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink3);
}
.mock-row small.c-warn {
  color: var(--warn);
}
.mock-strong {
  justify-content: space-between;
  background: var(--surface2);
  font-family: var(--display);
  font-size: 17px;
}
.mock-note {
  padding: 0 16px 14px;
  font-size: 13px;
  font-weight: 600;
}
.c-pos {
  color: var(--pos);
}
.bar {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: var(--surface2);
  overflow: hidden;
  margin: 0 16px 10px;
}
.bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--pos);
}
.bar-in {
  margin: 0;
  max-width: 220px;
}
.bar-warn > span {
  background: var(--warn-bar);
}
.tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 7px;
  background: var(--surface2);
  color: var(--ink2);
  font-size: 12px;
  font-weight: 700;
  vertical-align: 1px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.a1 {
  background: var(--t1);
  color: var(--t1i);
}
.a2 {
  background: var(--t4);
  color: var(--t4i);
}
.a3 {
  background: var(--t3);
  color: var(--t3i);
}

.grid-benefits {
  list-style: none;
  padding: 0;
  margin: 72px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.grid-benefits h3 {
  font-size: 19px;
}
.grid-benefits p {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--ink2);
}

/* ---------- privacidade ---------- */
.section-ink {
  background: var(--ink-section);
  color: var(--ink-section-text);
}
.section-ink .eyebrow {
  color: #a9bcff;
}
.section-ink .section-lede {
  color: var(--ink-section-sub);
}
.privacy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 17.5px;
  font-weight: 600;
}
.checks li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: #1b7a45
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}

/* ---------- para quem ---------- */
.personas {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.personas li {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.personas h3 {
  font-size: 21px;
}
.personas p {
  margin-top: 10px;
  color: var(--ink2);
  font-size: 16px;
}
.honest {
  margin-top: 28px;
  color: var(--ink2);
  max-width: 70ch;
}

/* ---------- FAQ ---------- */
.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-weight: 700;
  font-size: 18px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--primary-text);
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq details p {
  padding: 0 0 22px;
  color: var(--ink2);
  max-width: 60ch;
}

/* ---------- CTA final ---------- */
.final {
  padding-block: 96px 104px;
}
.final-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.final-zero {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(64px, 12vw, 136px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--pos);
}
.final .h2 {
  max-width: 18ch;
}
.final-note {
  font-size: 14px;
  color: var(--ink3);
}

/* ---------- rodapé ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 28px calc(28px + env(safe-area-inset-bottom, 0px));
}
.footer-in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  color: var(--ink3);
}
.footer-in nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
}
.footer-in nav a {
  color: var(--ink2);
  text-decoration: none;
  font-weight: 600;
}
.footer .brand-name {
  font-size: 18px;
}
.footer .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.footer .brand-mark span {
  width: 11px;
  height: 11px;
  border-width: 3px;
}

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .hero-in,
  .feature,
  .privacy,
  .faq-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .feature-flip .feature-copy {
    order: 0;
  }
  .symptoms,
  .steps,
  .grid-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .personas {
    grid-template-columns: minmax(0, 1fr);
  }
  .topnav {
    display: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .wrap {
    padding-inline: 16px;
  }
  .hero {
    padding-block: 32px 56px;
  }
  .lede {
    font-size: 18px;
  }
  .section {
    padding-block: 64px;
  }
  .symptoms,
  .steps,
  .grid-benefits {
    grid-template-columns: minmax(0, 1fr);
  }
  .compare-row span,
  .compare-head span {
    padding-inline: 14px;
    font-size: 15px;
  }
  .mock {
    padding: 14px;
    border-radius: 26px;
  }
  .topbar-cta .link-quiet {
    display: none;
  }
  .hero-actions .btn {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- páginas legais ---------- */
.legal {
  max-width: 780px;
  padding-block: 48px 80px;
}
.legal h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.legal-meta {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink3);
}
.legal-summary {
  margin-top: 32px;
  background: var(--primary-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.legal-summary h2 {
  font-size: 20px;
}
.legal section {
  margin-top: 40px;
}
.legal section h2 {
  font-size: 26px;
  font-weight: 700;
}
.legal h3 {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 700;
}
.legal p,
.legal li {
  color: var(--ink2);
}
.legal section p,
.legal section ul {
  margin-top: 12px;
}
.legal ul {
  padding-left: 22px;
}
.legal li + li {
  margin-top: 6px;
}
.legal-summary ul {
  margin: 10px 0 0;
}
.legal-summary li {
  color: var(--ink);
}
.legal strong {
  color: var(--ink);
}
.legal-table {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.legal-table > div {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
}
.legal-table span {
  padding: 12px 16px;
  font-size: 15.5px;
  color: var(--ink2);
}
.legal-table > div + div span {
  box-shadow: inset 0 1px 0 var(--line);
}
.lt-head span {
  background: var(--surface2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink3);
}
.legal-foot {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
/* dado a preencher antes de publicar */
.pend {
  background: var(--warn-bg);
  color: var(--warn);
  font-weight: 700;
  padding: 0 5px;
  border-radius: 5px;
}
@media (max-width: 560px) {
  .legal-table > div {
    grid-template-columns: minmax(0, 1fr);
  }
  .legal-table > div + div span + span {
    box-shadow: none;
    padding-top: 0;
    font-weight: 600;
    color: var(--ink);
  }
  .lt-head span + span {
    display: none;
  }
}
