:root {
	--dourado: #f5c84b;
	--dourado_hover: #f7d066;
	--principal: #191919;
	--principal_hover: #3B3B3B;
}
*{
	margin: 0;
	padding: 0;
	font-family: Poppins, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	color: var(--principal);
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
	transition:
			color 0.2s ease,
			background-color 0.2s ease;
}
b, strong{
	font-weight: bold;
}
i, em{
	font-style: italic;
}
img, table{
	border: none;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: var(--dourado);
}
a:hover{
	text-decoration: underline;
}
table{
	border-spacing: 0;
    border-collapse: separate;
}
html, body{
	height: 100%;
}
body{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: #FAF7F2;
}
.limite{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1em 0 1em;
}
.botao{
	display: inline-block;
	padding: 14px 27px 14px 27px;
	text-decoration: none !important;
	color: #fff;
	background: var(--dourado);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.botao:hover{
	background: var(--dourado_hover);
}
main{
	flex: 1;
}
h1{
	font-size: 1.5em;
	font-weight: bold;
}
h2{
	font-size: 1.1em;
	font-weight: bold;
}
h2{
	font-size: 1em;
	font-weight: bold;
}