html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

svg {
	width: 18px;
	height: 18px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	margin: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
	--color: #3E4073;
	--color-destaque: #191D88;
	--color-destaque-2: #f7a400;
	--color-white: #fff;
	--color-black: #000;
	--transition-time: .30s;
	--font-family: 'Inter', sans-serif;
	--font-family-heading: 'Outfit', sans-serif;
}

body {
	color: #3E4073;
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
	font-family: var(--font-family);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: top center;
	word-break: break-word;
}

body.menu_active {
	width: 100VW;
	height: 100vh;
	overflow: hidden;
}

body main {
	position: relative;
	z-index: 0;
	margin-top: 107px;
}

@media only screen and (min-width: 769px) {
	body main {
		margin-top: 187px;
	}
}

@media only screen and (min-width: 992px) {
	body main {
		margin-top: 156px;
	}
}

a {
	color: #333;
	text-decoration: none;
}

form .campo label {
	font-size: 14px;
	color: #595959;
	line-height: 1;
	margin-bottom: 10px;
	display: block;
}

input,
select,
textarea {
	width: 100%;
	max-width: 100%;
	margin-bottom: 25px;
	border: 1px solid var(--color-destaque);
	border-radius: 50px;
	line-height: 50px;
	height: 50px;
	font-size: 16px;
	padding: 0 20px;
	font-family: var(--font-family);
	background-color: transparent;
}

textarea {
	min-height: 190px;
	resize: none;
	border-radius: 25px;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
}

input[type="submit"],
button {
	text-transform: uppercase;
}

form .alerta {
	text-align: center;
	width: 100%;
	padding: 10px 0;
	color: var(--color-white);
	margin-top: 10px;
	border-radius: 30px;
	display: none;
}

form .alerta.sucesso {
	background-color: #00b70085;
	display: block;
}

form .alerta.error {
	background-color: #ff000085;
	display: block;
}

form .alerta.errorLimite {
	display: block;
	color: red;
	text-align: left;
	font-size: 15px;
}

form .alerta.progress {
	display: block;
	margin-top: 15px;
	width: 0%;
	text-align: center;
	height: 44px;
	border-radius: 30px;
	background-color: #f7931e80;
	position: relative;
	padding: 0;
	transition: var(--transition-time);
	color: var(--color-white);
}

form .alerta.progress p {
	line-height: 44px;
}

form .campo {
	width: 100%;
}

.sub-title {
	display: block;
	text-transform: none;
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	color: var(--color-destaque-2);
	margin-bottom: 12px;
}

.titulo_principal {
	width: 100%;
	display: block;
	font-size: 36px;
	line-height: 30px;
	position: relative;
	font-family: var(--font-family-heading);
	font-weight: 700;
	color: var(--color-destaque);
	max-width: 100%;
}

@media only screen and (min-width: 768px) {
	.titulo_principal {
		font-size: 1.5em !important;
	}
}

@media only screen and (min-width: 1024px) {
	.titulo_principal {
		line-height: 1.2;
		font-size: 40px !important;
	}
}


.btn {
	user-select: none;
	-moz-user-select: none;
	background: var(--color-destaque) none repeat scroll 0 0;
	border: medium none;
	border-radius: 10px;
	color: var(--color-white);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 0;
	padding: 18px 24px;
	text-align: center;
	text-transform: uppercase;
	touch-action: manipulation;
	transition: .3s;
	vertical-align: middle;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn svg {
	fill: var(--color-white);
	width: 14px;
	margin-left: 7px;
	height: 14px;
	transform: translateY(-2px);
}

.btn:hover,
.btn:focus-visible {
	color: var(--color-white);
	background: var(--color-destaque);
}

.btn:hover:before,
.btn:focus-visible:before {
	top: -40%;
}

.btn.btn-two {
	background: var(--color-destaque-2);

}

.btn.btn-two:hover {
	background: var(--color-destaque-2);
}

.btn.btn-two:before {
	background: var(--color-destaque);
}

.btn.btn-login-social {
	background-color: var(--color-white);
	width: 100%;
	color: var(--color-destaque);
	justify-content: center;
	font-size: 16px;
	line-height: 28px;
	text-transform: capitalize;

}

.btn.btn-login-social img {
	margin-right: 15px;
}

.btn.btn-login-social:after {
	display: none;
}

.btn.btn-login-social:hover {
	color: var(--color-white);
}

.btn.btn-login {
	width: 100%;
	border-radius: 11px;
	padding: 20px 26px;
	justify-content: center;
	font-size: 18px;
	line-height: 28px;

}

.btn.btn-login:hover {
	background-color: var(--color-destaque-2);
}

.btn.border-yellow-btn {
	border: 1px solid var(--color-destaque);
	background: transparent;
	color: var(--color-destaque);
	padding: 17px 24px;

}

.btn.border-yellow-btn::before {
	background-color: var(--color-destaque);
}

.btn.border-yellow-btn:hover {
	color: var(--color-white);
}

.btn::before {
	content: "";
	position: absolute;
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	width: 200%;
	height: 200%;
	top: 110%;
	left: 50%;
	background: var(--color-destaque-2);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: -1;
}

.container {
	width: 100%;
	max-width: 1490px;
	margin: 0 auto;
	padding: 0 25px;
}

.descricao_principal img {
	max-width: 100%;
}

.descricao_principal b,
.descricao_principal strong {
	font-family: var(--font-family-heading);
	font-weight: 700;
}

.descricao_principal p {
	margin-bottom: 15px;
	font-family: var(--font-family);
}

.descricao_principal p:last-child {
	margin-bottom: 0px;
}

.descricao_principal p a {
	color: var(--color-destaque);
	text-decoration: underline;
}

.descricao_principal h2 {
	font-size: 36px;
	font-family: var(--font-family-heading);
	font-weight: 700;
	margin: 25px 0 15px 0;
	color: var(--color-destaque);
}

.descricao_principal h3 {
	font-size: 24px;
	font-family: var(--font-family-heading);
	font-weight: 700;
	margin: 25px 0 15px 0;
	color: var(--color-destaque);
}

.descricao_principal h4 {
	font-size: 22px;
	font-family: var(--font-family-heading);
	font-weight: 700;
	margin: 25px 0 15px 0;
	color: var(--color-destaque);
}

.descricao_principal h5 {
	font-size: 20px;
	font-family: var(--font-family-heading);
	font-weight: 700;
	margin: 25px 0 15px 0;
	color: var(--color-destaque);
}

.descricao_principal h6 {
	font-size: 18px;
	font-family: var(--font-family-heading);
	font-weight: 700;
	margin: 25px 0 15px 0;
	color: var(--color-destaque);
}

.descricao_principal ul,
.descricao_principal ol {
	list-style: circle;
	padding: 0 0 0 20px;
	margin-bottom: 15px;
	font-weight: bold;
}

.descricao_principal ol {
	list-style: radial-gradient;
}

.descricao_principal.center {
	text-align: center;
}

.paginacao {
	margin-top: 50px;
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.paginacao .btn {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.paginacao .btn.p-0 {
	padding: 0px;
}

.paginacao .btn svg {
	margin-left: 0;
	transform: translateY(0px);
}

.paginacao .btn.active {
	background-color: var(--color-destaque);
	color: var(--color-white);
}

.paginacao .btn:last-child {
	margin-right: 0px;
}

.animate__animated.animate__fadeIn,
.animate__animated.animate__fadeInUp {
	--animate-duration: 2s;
}