/* ======================================================
   CONFIGURAÇÕES GLOBAIS
====================================================== */

:root {

      --cor-primaria: #1f4d3a;
      --cor-secundaria: #d4a017;

      --cor-texto: #212529;
      --cor-texto-suave: #6c757d;

      --cor-fundo: #f8f9fa;

      --fonte-titulo: 'Merriweather', serif;
      --fonte-texto: 'Inter', sans-serif;
}


/* ======================================================
   BODY
====================================================== */

body {

      margin: 0;

      background-color: var(--cor-fundo);

      color: var(--cor-texto);

      font-family: var(--fonte-texto);

}


/* ======================================================
   TÍTULOS
====================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {

      font-family: var(--fonte-titulo);

}


/* ======================================================
   LINKS
====================================================== */

a {

      text-decoration: none;

}