/* Célia — leitura no celular, olho de 50+.
   Regras que mandam aqui: corpo grande, contraste alto, nada piscando,
   nenhum pop-up, nenhuma coluna dupla, alvo de toque grande. */

:root {
  --papel: #FBF8F3;
  --tinta: #1E1B16;
  --tinta-suave: #4A443A;
  --verde: #2E6B4F;
  --verde-claro: #EAF2ED;
  --linha: #E2DBCF;
}

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

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

body {
  margin: 0;
  background: var(--papel);
  color: var(--tinta);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.7;
}

main, .topo, footer {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Topo */
.topo {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--linha);
  margin-bottom: 2rem;
}
.marca {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--verde);
  text-decoration: none;
}
.marca-sub { font-size: .95rem; color: var(--tinta-suave); }

/* Texto */
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 1.25rem;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 2.5rem 0 .75rem;
}
p { margin: 0 0 1.25rem; }
strong { font-weight: 700; }
.intro { font-size: 1.15rem; color: var(--tinta-suave); }

a { color: var(--verde); }

/* Listas numeradas: o número é âncora visual, não enfeite */
ol {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin: 2rem 0;
}
ol > li {
  counter-increment: item;
  position: relative;
  padding: 1.1rem 0 1.1rem 3.25rem;
  border-top: 1px solid var(--linha);
}
ol > li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 2.4rem;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--verde);
  background: var(--verde-claro);
  border-radius: 999px;
  line-height: 2rem;
  height: 2rem;
}
ol > li:last-child { border-bottom: 1px solid var(--linha); }

ul:not(.indice) { padding-left: 1.4rem; }
ul:not(.indice) li { margin-bottom: .6rem; }

/* Índice */
.indice { list-style: none; padding: 0; margin: 2rem 0; }
.indice li { border-top: 1px solid var(--linha); }
.indice li:last-child { border-bottom: 1px solid var(--linha); }
.indice a {
  display: block;
  padding: 1.1rem .25rem;
  font-size: 1.15rem;
  text-decoration: none;
  font-weight: 600;
}
.indice a:hover, .indice a:focus { background: var(--verde-claro); }

/* Oferta */
.oferta {
  margin: 3.5rem 0 2rem;
  padding: 1.75rem 1.5rem;
  background: var(--verde-claro);
  border: 2px solid var(--verde);
  border-radius: 14px;
}
.oferta h2 { margin-top: .25rem; }
.oferta-chapeu {
  margin: 0 0 .25rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--verde);
  font-weight: 700;
}
.botao {
  display: block;
  min-height: 60px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0 1rem;
  background: var(--verde);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}
.botao:hover, .botao:focus { background: #245740; }
.oferta-pe { margin: 0; font-size: .95rem; color: var(--tinta-suave); }

/* Rodapé */
footer {
  margin: 3rem auto 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linha);
}
.disclaimer { font-size: .95rem; color: var(--tinta-suave); }
.creditos { font-size: .9rem; color: var(--tinta-suave); margin: 0; }

/* Telas maiores: só respira mais, não vira duas colunas */
@media (min-width: 40rem) {
  body { font-size: 21px; }
  h1 { font-size: 2.4rem; }
}
