/* Estilo das páginas de documento (termos, privacidade, uso de dados).
   Extraído da página de termos do parceiro, que veio antes e continua com a cópia
   própria: mexer nela agora seria mudar um documento publicado por motivo de estilo.
   Cor e espaçamento saem de /assets/tema.css — aqui não nasce token novo. */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif; color: #24352e; background: var(--green-light);
  font-size: 16px; line-height: 1.7;
}

header.topo { background: var(--green); color: white; padding: 22px 24px; }
.topo-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topo a.marca { color: white; text-decoration: none; font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 20px; }
.topo a.voltar { color: var(--green-mid); text-decoration: none; font-size: 13.5px; font-weight: 700; }
.topo a.voltar:hover { color: white; }

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

.doc {
  background: white; border-radius: 16px; padding: 40px; margin-bottom: 22px;
  box-shadow: 0 2px 14px rgba(21,59,45,0.06);
}
@media (max-width: 640px) { .doc { padding: 24px; } main { padding: 20px 14px 60px; } }

h1 {
  font-family: 'Quicksand', sans-serif; font-size: clamp(24px, 4vw, 32px); font-weight: 800;
  color: var(--green-deep); line-height: 1.2; margin-bottom: 10px;
}
h2 {
  font-family: 'Quicksand', sans-serif; font-size: 20px; font-weight: 800; color: var(--green-deep);
  margin: 34px 0 10px; padding-top: 18px; border-top: 1px solid var(--green-mid);
}
h2:first-of-type { border-top: none; padding-top: 0; }
h3 { font-size: 16px; font-weight: 800; color: var(--green); margin: 18px 0 6px; }
p { margin-bottom: 12px; }
ul, ol { margin: 0 0 14px 22px; }
li { margin-bottom: 6px; }
strong { font-weight: 800; }
a { color: var(--green); }

.atualizado { color: #667; font-size: 14px; margin-bottom: 22px; }

/* Dados que só a empresa tem. Ficam berrantes de propósito: documento jurídico
   publicado com lacuna é pior do que documento nenhum, e assim ninguém publica sem ver. */
.preencher {
  background: #fff3cd; border: 1px dashed #d39e00; border-radius: 5px;
  padding: 1px 7px; font-weight: 800; color: #7a5c00; font-size: 0.92em; white-space: nowrap;
}

.indice { background: var(--green-light); border-radius: 12px; padding: 18px 22px; margin-bottom: 28px; }
.indice h3 { margin-top: 0; }
.indice ol { margin-bottom: 0; }
.indice a { text-decoration: none; font-weight: 700; }
.indice a:hover { text-decoration: underline; }

/* Caixa de destaque para o que o leitor não pode deixar de ver — prazo de
   arrependimento, como apagar a conta. */
.destaque {
  background: var(--green-light); border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 18px 0;
}
.destaque p:last-child { margin-bottom: 0; }

table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; font-size: 14.5px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--green-mid); vertical-align: top; }
th { font-weight: 800; color: var(--green-deep); background: var(--green-light); }

/* Os três documentos do cliente se referenciam: quem chega em um precisa achar os
   outros dois sem voltar para o app. */
.veja-tambem { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.veja-tambem a {
  background: var(--green-light); border-radius: 999px; padding: 9px 18px;
  text-decoration: none; font-weight: 700; font-size: 14px;
}
.veja-tambem a:hover { background: var(--green-mid); }

footer.rodape { text-align: center; padding: 30px 24px 50px; font-size: 13.5px; color: #557; }
footer.rodape a { color: var(--green); font-weight: 700; }
