:root {
	--verde: #046A38;
	--verde-hover: #057A40;
	--verde-medio: #64A70B;
	--verde-medio-hover: #6EB80C;
	--amarelo: #FCC630;
	--amarelo-hover: #FFE437;
	--marrom: #73381d;
	--rosa: #fff4d9;
	--cinza: #bbb;
	--cinza-hover: #ccc;
	--preto: #231F20;
}
*{
	margin: 0;
	padding: 0;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: var(--preto);
	line-height: 1.2em;
	-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(--verde);
}
a:hover{
	text-decoration: underline;
}
table{
	border-spacing: 0;
    border-collapse: separate;
}
html, body{
	width: 100%;
	height: 100%;
}
@media only screen and (min-width: 541px), only screen and (min-device-width: 541px) {
	body.bg{
		background: url("../imagens/bg-desktop.webp") no-repeat fixed center center;
		background-size: cover;
	}
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
	body.bg{
		background: url("../imagens/bg-mobile.webp") center center no-repeat;
		background-size: cover;
	}
}
.titulo-maior{
	font-size: 1.8em;
	line-height: 1em;
	font-weight: bold;
}
.titulo-menor{
	font-size: 1.2em;
	font-weight: bold;
}
.botao{
	display: inline-block;
	padding: 14px 27px 14px 27px;
	text-decoration: none !important;
	color: #fff;
	background: var(--verde);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.botao:hover{
	background: var(--verde-hover);
}