@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

html, body {
	min-height: 100%;
}
body {
	background: #FFF;
	padding: 0px;
	margin: 0px;
	font-family: 'Montserrat', sans-serif;
  	font-size: 14px;
	position: relative;
	color: #000 !important;
	font-weight: 400;
	overflow-x: hidden;
}

/* Formatações gerais */
a {
	color: inherit;
	text-decoration: none !important;
	transition: all 0.5s;
}
a:hover {
	color: #468B9A;
}
h1 {
  font-size: 36px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
}
h2 {
  font-weight: 400;
  line-height: 1.5em;
  font-size: 28px;
  padding: 0px;
  margin: 0px;
  text-align: center;
  text-transform: uppercase;
}
.botoes {
	text-align: right;
	padding: 50px 0 0 0;
}
.botoes a {
	display: inline-block;
	vertical-align: top;
	padding: 7px 25px;
	border-radius: 100px;
	background: #000;
	color: #FFF;
	text-transform: uppercase;
	border: #000 1px solid;
}
.botoes a:hover {
	background: none;
	color: #000;
}

section {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 30px 0;
	padding: 50px;
	margin: 0px;
	justify-items: center;
}