:root{
  --paper: #FBF6EC;
  --paper-2: #F3ECDC;
  --green: #4F6F52;
  --green-dark: #38502F;
  --mustard: #E8A33D;
  --mustard-dark: #C07D1E;
  --ink: #322B22;
  --ink-soft: #6B6052;
  --line: #DDD2BC;
  --white: #FFFFFF;
}

*{ box-sizing: border-box; }

html{ font-size: 19px; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.pagina{
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem 1rem 3rem;
}

/* ---------- Topo ---------- */
.topo{
  padding: 1.2rem 0;
  text-align: center;
}

.logo{
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-dark);
  text-decoration: none;
}

/* ---------- Artigo ---------- */
.artigo h1{
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--green-dark);
  line-height: 1.3;
  margin-top: 0.5rem;
}

.artigo h2{
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-top: 2rem;
}

.artigo p{
  font-size: 1.02rem;
  color: var(--ink);
}

/* ---------- Caixa de resposta ---------- */
.resposta{
  background: var(--green-dark);
  color: var(--white);
  border-radius: 1.1rem;
  padding: 1.3rem;
  text-align: center;
  margin: 1.3rem 0;
}

.resposta-pergunta{
  font-size: 1.02rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 0.3rem;
}

.resposta-valor{
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

/* ---------- Tabela ---------- */
table{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  margin: 0.8rem 0 1.2rem;
  background: var(--white);
  border-radius: 0.8rem;
  overflow: hidden;
}

th, td{
  text-align: left;
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid var(--line);
}

th{
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  color: var(--green-dark);
  background: var(--paper-2);
}

tr:last-child td{ border-bottom: none; }

/* ---------- Botão CTA ---------- */
.botao{
  display: block;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--white);
  background: var(--green);
  border-radius: 0.9rem;
  padding: 1rem;
  text-decoration: none;
  margin: 1.6rem 0;
}

.botao:active{ background: var(--green-dark); }

.botao-secundario{
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--mustard-dark);
  background: var(--white);
  border: 2px solid var(--mustard);
  border-radius: 0.8rem;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
}

/* ---------- Rodapé ---------- */
.rodape{
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.rodape p{
  font-weight: 700;
  color: var(--green-dark);
  margin: 0 0 0.6rem;
}

.rodape ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape li{
  margin-bottom: 0.5rem;
}

.rodape a{
  color: var(--green-dark);
  text-decoration: underline;
  font-size: 0.98rem;
}

.aviso{
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}
