/* Reset básico */

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

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

html{
  scroll-behavior: smooth;
  box-sizing: border-box;
}
section{
  margin-bottom: -1px;
}


/* Estilos globais */

body {
  font-family: var(--font-family-texto);
  line-height: 1.2;
  color: var(--text-color);
  margin: 0 auto;
  max-width: 100%;
  overflow-x: hidden;
}


/* Tipografia */

/* Definição dos tamanhos de fonte relativos ao tamanho base */
h1 { font-size: calc(var(--base-font-size) * 3.0); } 
h2 { font-size: calc(var(--base-font-size) * 2.5); }  
h3 { font-size: calc(var(--base-font-size) * 2.0); } 
h4 { font-size: calc(var(--base-font-size) * 1.75); }  
h5 { font-size: calc(var(--base-font-size) * 1.5); } 
h6 { font-size: calc(var(--base-font-size) * 1.25); }  
p  { font-size: calc(var(--base-font-size) * 1); }   

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-titulo);
  color: var(--title-color);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  margin-top: 20px;
  text-align: center;
}
p{
  margin-top: 20px;
  color: var(--text-color);
  line-height: 1.6;
}
li{
  font-size: var(--base-font-size);
}
