/* 3. base.css — tipografia global, links, seleção de texto */

body {
  font-family: var(--fonte-corpo);
  color: var(--cor-texto);
  background: var(--cor-fundo);
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  color: var(--cor-texto);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p {
  color: var(--cor-texto-secundario);
}

a {
  transition: color var(--transicao-rapida);
}

::selection {
  background: var(--cor-primaria);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--cor-primaria);
  outline-offset: 2px;
  border-radius: 2px;
}

strong {
  font-weight: 600;
}
