:root {
	--azul: #02084b;
	--azul_hover: #282d66;
	--verde: #2ecc71;
	--verde_hover: #4dd486;
	--principal: #404968;
	--principal_hover: #6f768d;
}
*{
	margin: 0;
	padding: 0;
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: var(--principal);
	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: 600;
}
i, em{
	font-style: italic;
}
img, table{
	border: none;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: var(--azul);
}
a:hover{
	text-decoration: underline;
}
table{
	border-spacing: 0;
    border-collapse: separate;
}
html, body{
	width: 100%;
	height: 100%;
}
* html #divTudo{
	height: 100%;
}
#divTudo{
	position: relative;
	min-height: 100%;
}
#divGeral{
	position: relative;
	width: 100%;
}
.limite{
	width: 100%;
	max-width: 1280px;
	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(--azul);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.botao:hover{
	background: var(--azul_hover);
}
.flex{
	display: flex;
	flex-flow: wrap;
}
.col-100 { flex: 100% }
.col-66 { flex: 66.6%; }
.col-60 { flex: 60%; }
.col-50 { flex: 50%; }
.col-40 { flex: 40%; }
.col-33 { flex: 33.3%; }
.col-25 { flex: 25%; }
.col-20 { flex: 20%; }
@media only screen and (max-width: 960px), only screen and (max-device-width: 960px) {
	.col-100 { flex: 100% }
	.col-66 { flex: 50%; }
	.col-60 { flex: 50%; }
	.col-50 { flex: 50%; }
	.col-40 { flex: 50%; }
	.col-33 { flex: 50%; }
	.col-25 { flex: 50%; }
	.col-20 { flex: 50%; }
}
@media only screen and (max-width: 540px), only screen and (max-device-width: 540px) {
	.col-100 { flex: 100% }
	.col-66 { flex: 100% }
	.col-60 { flex: 100% }
	.col-50 { flex: 100% }
	.col-40 { flex: 100% }
	.col-33 { flex: 100% }
	.col-25 { flex: 100% }
	.col-20 { flex: 100% }
}
input:not([type="radio"]):not([type="checkbox"]), textarea, select{
	width: 100%;
	height: 26px;
	padding: 2px 5px 2px 5px;
	font-size: 13px;
	background: #fff;
	border: 1px solid var(--azul);
}
input[type="radio"], input[type="checkbox"]{
	vertical-align: middle;
	margin-top: -2px;
}
input:not([type="radio"]):not([type="checkbox"]).erro, textarea.erro, select.erro, span.erro{
	border: 2px solid red !important;
}
label{
	white-space: nowrap;
}
label.erro{
	border-bottom: 2px solid red !important;
}
.obrigatorio{
	color: red;
}
h1,
.titulo-maior{
	display: inline-block;
	font-size: 2em;
	line-height: 1.2em;
	font-weight: 500;
}
h2,
.titulo-menor{
	display: inline-block;
	font-size: 1.2em;
	line-height: 1.2em;
	font-weight: 500;
}