* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Lato", sans-serif;
  --background-50: #f5d0b3;
  --background-800: #E8772E;
}

html,
body {
  height: auto;
  background-color: #f5d0b3;
}

/****** CLASSES PADRÃO ******/


.center {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/****** CLASSES PADRÃO ******/


section.termos,
section.privacidade {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 150px;
}

section.termos h1,
section.privacidade h1,
section.termos h2,
section.privacidade h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  color: #333333;
  margin: 0;
  line-height: 25px;
  padding: 10px 0;

}