:root {
	--p: #a9cf38;
	--ph: #8fb030;
	--pc: #fff;
	--s: #317b38;
	--sh: #508f56;
	--sc: #fff;
	--m: #1d1d1b;
	--mh: #303030;
	--mc: #fff;
	--b: #f2f2f2;
	--bh: #ccc;
	--bc: #1d1d1d;
	--e: 2em;
}
*{
	margin: 0;
	padding: 0;
	font-family: Poppins, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: var(--m);
	-webkit-box-sizing:  border-box;
       -moz-box-sizing:  border-box;
            box-sizing:  border-box;
	transition:
			color 0.2s ease,
			background-color 0.2s ease,
			filter 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(--s);
}
a:hover{
	text-decoration: underline;
}
table{
	border-spacing: 0;
    border-collapse: separate;
}
html, body{
	width: 100%;
	height: 100%;	
	font-size: 68%;
}
* html #divTudo{
	height:  100%;
}
body{
	background: url("../imagens/bg-lines.webp") center center repeat;
}
#divTudo{
	position: relative;
	min-height: 100%;
}
#divGera{
	position: relative;
	width: 100%;
	font-size: 2em;
}
.limite{
	width: 100%;
	max-width: 1280px;
	padding: 0 2em 0 2em;
	margin: 0 auto;
}
.flex{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--e);
}
.titulo{
	margin-bottom: 1em;
	font-size: 2.5em;
	line-height: 1.2em;
}
.titulo span{
	font-weight: bold;
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
	.titulo{
		font-size: 1.5em;
		margin-bottom: 1.25em;
	}
}

.botao{
	display: inline-block;
	padding: 0.4em 0.8em 0.4em 0.8em;
	text-decoration: none;
	border-radius: 5px;
}
.botao:hover{
	text-decoration: none;
}
.botao.cheio{
	color: var(--pc);
	background: var(--p);
	border: 2px solid var(--p);
}
.botao.cheio:hover{
	background: var(--ph);
	border: 2px solid var(--ph);
}
.botao.preto{
	color: var(--mc);
	background: var(--m);
	border: 2px solid var(--m);
}
.botao.preto:hover{
	background: var(--mh);
	border: 2px solid var(--mh);
}