/* Fontes servidas pelo próprio site (sem Google Fonts): mais privacidade (LGPD), mais rápido e
   compatível com a política de segurança (CSP) que só permite arquivos do próprio domínio.
   Fontes variáveis, subconjunto latino (cobre português). Licença: SIL Open Font License. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/roboto-mono.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --azul: #2C5F8A;
  --azul-escuro: #1B3A54;
  --paper: #F6F8FA;
  --ink: #16202B;
  --ink-soft: #5C6B79;
  --line: #DCE3E9;
  --card: #FFFFFF;
  --ok: #1C7A4D;
  --warn: #8A5A12;
}
/* Site sempre claro (decisão do João, 2026-09-18): sem modo escuro automático. */
:root { color-scheme: light; }

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.topbar {
  background: linear-gradient(135deg, var(--azul-escuro), var(--azul));
  color: white;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: white;
  opacity: 0.08;
  border-radius: 50%;
}
.topbar-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  color: white;
  font-weight: 600;
  font-size: 12.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.3);
}
h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 34px);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.sub {
  color: #D9E2F5;
  font-size: 15px;
  max-width: 62ch;
  line-height: 1.5;
  margin: 0;
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 48px 0 16px;
}
.section-heading:first-child { margin-top: 0; }
.section-heading h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}
.section-heading p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.section-tag {
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}

.panel h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--ink);
}

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Roboto Mono', monospace;
  background: var(--paper);
  color: var(--ink);
}
.field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
}
.field select:disabled {
  color: var(--ink-soft);
  cursor: not-allowed;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(0,48,135,0.12);
}
.field .hint {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 5px;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 16px;
}
.switch-row span {
  font-size: 13.5px;
  color: var(--ink);
}
.switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch-track {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 999px;
  transition: background 0.15s;
  cursor: pointer;
}
.switch-track::before {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.switch input:checked + .switch-track {
  background: var(--azul);
}
.switch input:checked + .switch-track::before {
  transform: translateX(18px);
}

.upgrade-block {
  display: none;
  border-left: 2px solid var(--line);
  padding-left: 14px;
  margin: -4px 0 16px;
}
.upgrade-block.open { display: block; }

.mode-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.mode-toggle button {
  flex: 1;
  padding: 11px 8px;
  border: none;
  background: var(--card);
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mode-toggle button.active {
  background: var(--azul);
  color: white;
}
.mode-toggle button:not(.active):hover {
  background: var(--paper);
}

.result-highlight {
  text-align: center;
  padding: 22px 16px 26px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 18px;
}
.result-highlight .label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.result-highlight .value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 700;
  color: var(--azul);
  letter-spacing: -0.01em;
}
.result-highlight .delta {
  font-size: 13.5px;
  color: var(--ok);
  margin-top: 6px;
  font-weight: 500;
}
.result-highlight.compact {
  padding: 10px 8px 16px;
}

.ledger {
  font-family: 'Roboto Mono', monospace;
  font-size: 13.5px;
}
.ledger-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row span:last-child {
  color: var(--ink);
  font-weight: 500;
}
.ledger-row.total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  border-bottom: none;
}
.ledger-row.total span {
  color: var(--ink);
  font-weight: 600;
}

.note {
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
  border-left: 3px solid var(--azul);
  padding: 12px 14px;
  border-radius: 0 6px 6px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) {
  .info-grid { grid-template-columns: 1fr; }
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
}
.info-card .kicker {
  font-family: 'Roboto Mono', monospace;
  font-size: 11.5px;
  color: var(--azul);
  margin-bottom: 6px;
}
.info-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
}
.info-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.disclaimer-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
}
.disclaimer-panel h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
}
.disclaimer-panel p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.disclaimer-panel p:last-of-type { margin-bottom: 0; }

.cta-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-button {
  background: var(--azul);
  color: white;
  border: none;
  padding: 13px 22px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.55;
}
.cta-note {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.action-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.pdf-btn, .share-btn {
  flex: 1;
  min-width: 130px;
  padding: 11px 14px;
  border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pdf-btn {
  background: var(--azul);
  color: white;
  border: none;
}
.pdf-btn:hover { background: var(--azul-escuro); }
.share-btn {
  background: var(--card);
  color: var(--azul);
  border: 1px solid var(--azul);
}
.share-btn:hover { background: var(--paper); }
.share-btn.copied {
  background: var(--ok);
  border-color: var(--ok);
  color: white;
}

footer {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 40px;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- Navegação entre as páginas ---------- */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.site-brand {
  color: white;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.site-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.site-links a {
  color: white;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}
.site-links a:hover { background: rgba(255,255,255,0.18); }
.site-links a[aria-current="page"] {
  background: white;
  color: var(--azul-escuro);
  border-color: white;
}

/* Chamada pra outra ferramenta, depois do resultado */
.cross-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--azul);
  border-radius: 10px;
}
.cross-link h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}
.cross-link p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.cross-link a {
  flex-shrink: 0;
  background: var(--azul);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 8px;
}
.cross-link a:hover { background: var(--azul-escuro); }

/* Página inicial: cartões das ferramentas */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) {
  .tool-grid { grid-template-columns: 1fr; }
}
.tool-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 22px 20px;
  transition: border-color 0.15s;
}
.tool-card:hover { border-color: var(--azul); }
.tool-card .kicker {
  font-family: 'Roboto Mono', monospace;
  font-size: 11.5px;
  color: var(--azul);
  margin-bottom: 8px;
}
.tool-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.tool-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.tool-card .go {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--azul);
}

@media (max-width: 480px) {
  .topbar { padding: 22px 16px; }
  main { padding: 24px 16px 64px; }
  footer { padding: 0 16px 32px; }
  .row2 { grid-template-columns: 1fr; gap: 0; }
}

/* Dica solta (fora de um .field), ex.: a do índice de reajuste */
.field.hint {
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Quando o resultado piora (parcela sobe), a linha de variação sai em âmbar, não em verde */
.result-highlight .delta.alerta { color: var(--warn); }

/* ---------- Projeção de reajuste (calculadora) ---------- */
.proj-indice {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.55;
}
.proj-indice strong { color: var(--ink); }
.proj-aviso {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink);
  background: #FBF6EC;
  border: 1px solid #EBDDBF;
  border-left: 3px solid var(--warn);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  margin: 0 0 18px;
}
.proj-resumo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 760px) {
  .proj-resumo { grid-template-columns: 1fr; }
}
.proj-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
}
.proj-tile .label {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.proj-tile .value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--azul);
  font-variant-numeric: tabular-nums;
}
.proj-tile .sub-value {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.proj-tabela-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.proj-tabela {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.proj-tabela th {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: right;
  padding: 8px 10px;
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}
.proj-tabela th:first-child,
.proj-tabela td:first-child { text-align: left; }
.proj-tabela td {
  text-align: right;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  white-space: nowrap;
}
.proj-tabela td:first-child { color: var(--ink-soft); }
.proj-tabela tr:nth-child(even) td { background: var(--paper); }

.indice-anos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.indice-anos span {
  font-family: 'Roboto Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 3px 7px;
}
.indice-anos span b {
  color: var(--ink);
  font-weight: 500;
}
.info-card .media {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink);
}

/* Celular: a coluna Parcela precisa caber sem rolagem lateral */
@media (max-width: 480px) {
  .proj-tabela { font-family: 'Inter', sans-serif; font-size: 12.5px; }
  .proj-tabela th, .proj-tabela td { padding: 7px 6px; }
  .proj-tabela .col-meses { display: none; }
}

/* ---------- Perguntas frequentes ---------- */
.faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--azul);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { background: var(--paper); }
.faq .resposta {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq .resposta p { margin: 0 0 10px; }
.faq .resposta p:last-child { margin-bottom: 0; }

.intro-texto {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 72ch;
  margin: 0 0 24px;
}
.intro-texto strong { color: var(--ink); font-weight: 600; }
.faq .resposta a { color: var(--azul); font-weight: 500; }

/* Antes eram estilos inline no HTML; aqui pra CSP poder bloquear style="" */
#indice-hint { margin-top: -10px; }


/* O atributo hidden sempre esconde, mesmo em elementos com display próprio (ex.: .mode-toggle) */
[hidden] { display: none !important; }

/* Campo calculado sozinho (ex.: lance em R$ quando a pessoa informa em %) */
.field input[readonly] {
  color: var(--ink-soft);
  background: var(--card);
  border-style: dashed;
}

/* Resumo do lance no simulador: do bolso, embutido e crédito que sobra */
.lance-resumo {
  display: grid;
  gap: 6px;
  font-size: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  margin: -4px 0 18px;
}
.lance-resumo div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
}
.lance-resumo div span:last-child {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.lance-resumo .aviso { color: var(--warn); font-weight: 500; }

/* Simulador: parcelas iniciais (sem/com seguro) como um par, destacado do total */
.ledger-parcelas {
  margin-top: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2px 12px;
}
.ledger-parcelas .ledger-row span:last-child {
  color: var(--azul);
  font-weight: 600;
}

/* Simulador: aviso do seguro abaixo do resultado (a parcela em destaque é sem seguro) */
.result-highlight .seguro-nota {
  margin: 10px auto 0;
  max-width: 40ch;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.result-highlight .seguro-nota strong { color: var(--ink); }

/* Opção do PDF (ex.: incluir a projeção de reajuste como página 2) */
.pdf-opcao {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
}
.pdf-opcao input {
  width: 16px;
  height: 16px;
  accent-color: var(--azul);
  cursor: pointer;
}

/* ---------- Página inicial: texto + imagem dos bens ---------- */
.hero-bens {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .hero-bens { grid-template-columns: 1fr; gap: 12px; }
}
.hero-texto .intro-texto { margin-bottom: 18px; }
.bens-titulo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 10px;
}
.bens-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bens-lista li {
  font-size: 13px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
}
/* A foto tem fundo branco: "multiply" faz o branco sumir no fundo cinza-claro da página. */
.hero-imagem {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* ---------- Rodapé ---------- */
.site-footer { line-height: 1.6; }
/* Linha divisória no primeiro item, pra ficar alinhada com o texto (não com o padding). */
.site-footer > :first-child {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.site-footer p { margin: 0 0 8px; }
.rodape-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 12px;
}
.rodape-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.rodape-links a:hover { color: var(--azul); text-decoration: underline; }
.rodape-direitos { font-size: 11.5px; }

/* ---------- Páginas de texto (política de privacidade etc.) ---------- */
.texto-legal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  max-width: 760px;
}
.texto-legal h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.texto-legal h2:first-of-type { margin-top: 8px; }
.texto-legal p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.texto-legal strong { color: var(--ink); font-weight: 600; }
.texto-legal a { color: var(--azul); font-weight: 500; overflow-wrap: anywhere; }
.texto-legal-data { font-size: 13px !important; }
@media (max-width: 480px) {
  .texto-legal { padding: 20px 16px; }
}
