*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
footer,
header,
section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

html {
	height: 100%;
}

body {
	line-height: 1;
	-webkit-text-size-adjust: none;
}
body.is-loading *,
body.is-loading *:before,
body.is-loading *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}
body {
	color: #000000;
	font-family:
		"Inter",
		system-ui,
		-apple-system,
		"Verdana",
		sans-serif;
	font-size: 12pt;
	letter-spacing: 0.2em;
	background-color: white;
	background-image: url("/background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	font-weight: 300;
}
h1 {
	font-weight: 200;
	font-size: 1rem;
	margin-bottom: 20px;
	color: #452d1d;
}
body.is-loading #main {
	opacity: 0;
	-moz-transform: rotateX(15deg);
	-webkit-transform: rotateX(15deg);
	-ms-transform: rotateX(15deg);
	transform: rotateX(15deg);
}
body.is-ie #wrapper {
	height: 100%;
}

a {
	-moz-transition:
		color 0.2s ease,
		border-color 0.2s ease;
	-webkit-transition:
		color 0.2s ease,
		border-color 0.2s ease;
	-ms-transition:
		color 0.2s ease,
		border-color 0.2s ease;
	transition:
		color 0.2s ease,
		border-color 0.2s ease;
	color: inherit;
	text-decoration: none;
	color: #452d1d;
}
a:hover {
	color: #a87b4f;
}

p {
	margin: 0 0 1em 0;
	font-size: 1.2rem;
	letter-spacing: 0px;
}
p i {
	margin-right: 1rem;
	color: #a87b4f;
}

.logo-principal {
	max-width: 100%;
	width: 80%;
	margin-top: -20px;
}

#separator {
	height: 150px;
}

#wrapper {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-perspective: 1000px;
	-webkit-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
	position: relative;
	min-height: 100%;
	height: 90vh;
	padding: 1.5em;
	z-index: 2;
}
#wrapper > * {
	z-index: 1;
}
#wrapper:before {
	content: "";
	display: block;
}

#main {
	position: relative;
	max-width: 35em;
	min-width: 27em;
	padding: 4.5em 3em 3em 3em;
	background: #ffffff;
	border-radius: 4px;
	cursor: default;
	opacity: 0.95;
	text-align: center;
	-moz-transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-moz-transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	-moz-transition:
		opacity 1s ease,
		-moz-transform 1s ease;
	-webkit-transition:
		opacity 1s ease,
		-webkit-transform 1s ease;
	-ms-transition:
		opacity 1s ease,
		-ms-transform 1s ease;
	transition:
		opacity 1s ease,
		transform 1s ease;
}

header {
	margin-bottom: 3rem;
}
.contato {
	margin-bottom: 2rem;
}
a.btnCatalogo {
	color: white;
	background-color: #452d1d;
	padding: 10px 15px;
	font-size: 1rem;
	display: block;
	width: fit-content;
	text-align: center;
	margin: auto;
	transition: background-color 0.3s ease;
	border-radius: 2px;
}
a.btnCatalogo:hover {
	background-color: #a87b4f;
	transition: background-color 0.3s ease;
}
footer {
	-moz-align-self: -moz-flex-end;
	-webkit-align-self: -webkit-flex-end;
	-ms-align-self: -ms-flex-end;
	align-self: flex-end;
	width: 100%;
	padding: 1.5em 0 0 0;
	text-align: center;
}
footer img {
	display: inline-block;
	width: 10%;
	margin-top: 20px;
	max-width: 150px;
}

#main .separator {
	position: relative;
	display: block;
	margin-top: 0.5rem;
	margin-bottom: 1.5em;
}
#main .separator:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: -3em;
	width: calc(100% + 6em);
	height: 1px;
	z-index: -1;
	background: #a97b50;
}

@media screen and (max-width: 360px) {
	body {
		background-repeat: no-repeat;
		background-size: 100vh;
	}
	#wrapper {
		padding: 0.75em;
	}
	footer img {
		width: 20%;
	}
}

@media screen and (max-width: 480px) {
	#main {
		min-width: 0;
		width: 100%;
		padding: 4em 2em 2.5em 2em;
	}

	#main .separator:before {
		left: -2em;
		width: calc(100% + 4em);
	}

	body {
		font-size: 10pt;
		line-height: 1.75;
	}
	html,
	body {
		min-width: 320px;
	}
	footer img {
		width: 30%;
	}
}

@media screen and (max-width: 760px) {
	footer img {
		width: 30%;
	}
}

@media screen and (max-width: 1680px) {
	body {
		font-size: 11pt;
	}
}
