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

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

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

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

:root {
	--color: #363636;
	--color-destaque: #005a96;
	--color-destaque-2: #18a0fb;
	--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';

	--primary: #ed1d2b;
	--primary-dark: #c51c27;
	--primary-light: #f44651;
	--secondary: #1B3A5F;
	--secondary-dark: #0F2341;
	--accent: #00A859;
	--accent-dark: #008C4A;
	--white: #FFFFFF;
	--light: #F8F9FA;
	--gray: #6C757D;
	--dark: #212529;
}

body {
	color: #333;
	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;
}

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

.btn {

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(247, 147, 30, 0.5);
}

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

.btn-secondary:hover {
	background: var(--secondary);
	color: var(--white);
}

.btn-accent {
	background: var(--accent);
	color: var(--white);
	box-shadow: 0 4px 15px rgba(0, 168, 89, 0.4);
}

.btn-accent:hover {
	background: var(--accent-dark);
	transform: translateY(-2px);
}

.btn-large {
	padding: 18px 40px;
	font-size: 1.05rem;
}

.btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

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

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-bold);
	font-weight: 700;
	line-height: 1.2;
}

.section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
}

.section-tag {
	display: inline-block;
	background: rgba(247, 147, 30, 0.1);
	color: var(--primary-dark);
	padding: 6px 16px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.section-header h2 {
	font-size: clamp(1.8rem, 4vw, 2.4rem);
	color: var(--secondary);
	margin-bottom: 16px;
}

.section-header h2 span {
	color: var(--primary);
}

.section-header p {
	color: var(--gray);
	font-size: 1.1rem;
}

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