:root {
	--verde: #046A38;
	--verde-hover: #057A40;
	--verde-medio: #64A70B;
	--amarelo: #FCC630;
	--amarelo-hover: #FFE437;
	--marrom: #73381d;
	--rosa: #fff4d9;
	--preto: #231F20;
}
*{
	margin: 0;
	padding: 0;
	font-family: 'Gotham Book', Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 1.6em;
	-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%;
}
* html #divTudo{
	height: 100%;
}
h1, h2{
	display: inline-block;
}
#divTudo{
	position: relative;
	min-height: 100%;
}
#divGeral{
	position: relative;
	width: 100%;
}
.limite{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
.titulo{
	font-family: 'KoHo', Arial, Helvetica, sans-serif;
	font-size: 34px;
	line-height: 1.2em;
	font-weight: bold;
}
.subtitulo{
	font-family: 'Gotham Book', Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: bold !important;
}
.botao{
	display: inline-block;
	padding: 14px 27px 14px 27px;
	text-decoration: none !important;
	color: #fff;
	background: var(--verde);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}
.botao:hover{
	display: inline-block;
	padding: 14px 27px 14px 27px;
	text-decoration: none !important;
	color: #fff;
	background: var(--verde-hover);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

@media only screen and (min-width: 1025px), only screen and (min-device-width: 1025px) {
	.row{
		display: flex;
		flex-flow: nowrap;
		gap: 2em;
	}
	.col-lg-12, .col-md-12, .col-sm-12{ flex: 100% }
	.col-lg-8, .col-md-8, .col-sm-8{ flex: 66.6%; }
	.col-lg-6, .col-md-6, .col-sm-6{ flex: 50%; }
	.col-lg-4, .col-md-4, .col-sm-4{ flex: 33.3%; }
	.col-lg-3, .col-md-3, .col-sm-3{ flex: 25%; }
}
@media only screen and (max-width: 1024px), only screen and (max-device-width: 1024px) {
	.row{
		display: flex;
		flex-flow: wrap;
		gap: 2em;
	}
	.col-lg-12, .col-md-12, .col-sm-12{ flex: 100%; text-align: center; }
	.col-lg-8, .col-md-8, .col-sm-8{ flex: 66.6%; }
	.col-lg-6, .col-md-6, .col-sm-6{ flex: 50%; }
	.col-lg-4, .col-md-4, .col-sm-4{ flex: 33.3%; }
	.col-lg-3, .col-md-3, .col-sm-3{ flex: 50%; text-align: center; }
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
	.row{
		display: flex;
		flex-flow: wrap;
		gap: 2em;
	}
	.col-lg-12, .col-md-12, .col-sm-12{ flex: 100%; text-align: center; }
	.col-lg-8, .col-md-8, .col-sm-8{ flex: 100%; text-align: center; }
	.col-lg-6, .col-md-6, .col-sm-6{ flex: 100%; text-align: center; }
	.col-lg-4, .col-md-4, .col-sm-4{ flex: 100%; text-align: center; }
	.col-lg-3, .col-md-3, .col-sm-3{ flex: 100%; text-align: center; }
}
@media only screen and (min-width: 1025px), only screen and (min-device-width: 1025px) {
	.br{
		display: block;
	}
}

#tinymce h1,
.editor h1{
	font-family: 'KoHo', Arial, Helvetica, sans-serif;
	font-size: 34px;
	line-height: 1.2em;
	font-weight: bold;
}
#tinymce h2,
.editor h2{
	font-family: 'Gotham Book', Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 1.2em;
	font-weight: bold;
}
#tinymce p,
.editor p{
	font-family: 'Gotham Book', Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 1.6em;
}
picture img{
	display: block;
}