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: 25px;
	height: 25px;
}

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

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

:root {
	--navy: #0b1f3a;
	--deep: #0d2d4f;
	--ocean: #0e7490;
	--aqua: #06b6d4;
	--sky: #bae6fd;
	--white: #ffffff;
	--off: #f0f7ff;
	--muted: #64748b;
	--text: #1e293b;
	--border: #e2eaf3;
	--r-sm: 6px;
	--r-md: 12px;
	--r-lg: 20px;
	--shadow: 0 4px 24px rgba(11, 31, 58, .10);
	--shadow-lg: 0 12px 48px rgba(11, 31, 58, .18);
	--font-display: 'Montserrat Bold', Georgia, serif;
	--font-body: 'Montserrat Bold', system-ui, sans-serif;
	--max: 1160px;
	--trans: .28s cubic-bezier(.4, 0, .2, 1);
	--color: #1e293b;
	--color-destaque: #0e7490;
	--color-destaque-2: #06b6d4;
	--color-white: #fff;
	--color-black: #000;
	--transition-time: .30s;
	--font-family-thin: 'Montserrat Thin';
	--font-family-extra-light: 'Montserrat Extra Light';
	--font-family-light: 'Montserrat Light';
	--font-family: 'Montserrat Regular';
	--font-family-medium: 'Montserrat Medium';
	--font-family-semi-bold: 'Montserrat Semi Bold';
	--font-family-bold: 'Montserrat Bold';
	--font-family-extra-bold: 'Montserrat Extra Bold';
	--font-family-black: 'Montserrat Black';
}

body {
	background: var(--white);
	line-height: 1.65;
	color: var(--text);
	font-size: 16px;
	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;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

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;
}

.container {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ocean);
	margin-bottom: 14px;
}

.section-label::before {
	content: '';
	display: block;
	width: 24px;
	height: 2px;
	background: var(--aqua);
	border-radius: 2px;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--trans);
	white-space: nowrap;
}

.btn-primary {
	background: var(--aqua);
	color: var(--navy);
}

.btn-primary:hover {
	background: var(--ocean);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(6, 182, 212, .35);
}

.btn-outline {
	border: 2px solid var(--white);
	color: var(--white);
}

.btn-outline:hover {
	background: var(--white);
	color: var(--navy);
	transform: translateY(-2px);
}

.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.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;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}