/* reset */
html, body, div, span,
*, *::before, *::after,
object, iframe,
h1, h2, h3, h4, p, a, img,
strong, cite, ul, li, form, embed,
header, section, footer,
audio, video	{ font-size: 100%; font: inherit; margin: 0; padding: 0; box-sizing: border-box; outline: none; }
ul				{ list-style: none; }

/* body */
body {
	background: #ffffff;
	font: normal 16px/26px "Freizeit";
	color: #00466e;
}

/* title */
h1 { font: normal 90px/90px "FreightBigProBold"; font-weight: normal; }
h2 { font: normal 52px/56px "FreightBigProBold"; font-weight: normal; }
h3 { font: normal 46px/50px "Freizeit"; font-weight: 500; }

/* transition */
a {
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-transition: all .3s ease;
			transition: all .3s ease;
}

/* header */
header {
	width: calc(100% - 30px);
    height: 90px;
    background: #ffffff;
	border-radius: 45px;
    position: absolute;
    padding: 10px 40px;
    top: 15px;
    left: 15px;
    z-index: 100;
}

header .logo {
	display: inline-block;
}
header .logo img {
	width: auto;
	height: 70px;
	display: block;
}

header nav {
    display: table;
	position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin: auto;
}
header nav ul li {
	float: left;
	margin: 0 60px 0 0;
	position: relative;
}
header nav ul li:last-child {
	margin: 0;
}
header nav ul li a {
	color: #00466e;
	font-size: 16px;
	line-height: 30px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
}
header nav ul li a::after {
	content: "";
	width: 0;
	height: 1px;
	background: #00466e;
	position: absolute;
	left: 0;
	right: auto;
	bottom: 0;
	transition: all .3s ease;
}
header nav ul li a:hover::after {
	width: 100%;
	left: 0;
}

header .wpp {
	float: right;
}
header .wpp img {
	width: auto;
	height: 70px;
	display: block;
	padding: 15px 0;
}



section#featured {
	width: 100%;
	height: 100vh;
	background: url(../img/img_featured.jpg) no-repeat center center;
	background-size: cover;
	color: #ffffff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
section#featured .container {
	width: 1200px;
	margin: 0 auto;
}
section#featured span {
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
	text-transform: uppercase;
	display: inline-block;
	margin: 90px 0 0 0;
}
section#featured h1 {
	margin: 15px 0;
}
section#featured p {
	font-size: 36px;
	line-height: 40px;
}
section#featured a.button {
	font-size: 16px;
	line-height: 70px;
	font-weight: 500;
	text-transform: uppercase;
	color: #00466e;
	background: #f9ae40;
	border-radius: 70px;
	display: inline-block;
	margin: 40px 0 0 0;
	padding: 0 40px;
}

section#featured a.scroll_button {
    color: #ffffff;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(90deg);
    transform-origin: 90% 50%;
    position: absolute;
    right: 90px;
    bottom: 65px;
    z-index: 1;
}
section#featured a.scroll_button::after {
	content: "";
	width: 120px;
	height: 1px;
	background: #f9ae40;
	position: absolute;
    right: -130px;
    bottom: 8px;
}



section#sobre {
	background: #e6edf1 url(../img/pattern_blue.png) no-repeat top center;
	background-size: cover;
	padding: 160px 0;
	position: relative;
}
section#sobre .container {
	width: 1600px;
	margin: 0 auto;
}
section#sobre .text {
	width: 840px;
	padding: 0 0 0 160px;
}
section#sobre .text p {
	margin: 40px 0;
}
section#sobre a.button {
	font-size: 16px;
	line-height: 70px;
	font-weight: 500;
	text-transform: uppercase;
	color: #00466e;
	background: #f9ae40;
	border-radius: 70px;
	display: inline-block;
	padding: 0 40px;
}

section#sobre img {
	display: block;
	position: absolute;
	top: 160px;
	right: 0;
}



section#produto {
	background: #e6edf1;
	padding: 80px 0 160px 0;
	text-align: center;
	display: flex;
	position: relative;
}
section#produto .container {
	width: 1600px;
	margin: 0 auto;
}
section#produto .left,
section#produto .right {
	width: 50%;
	float: left;
	padding: 0 40px;
}

section#produto img {
	width: 100%;
	height: auto;
	display: block;
	padding: 0 40px 0 0;
}
section#produto::before {
	content: "";
	width: 660px;
	height: 660px;
	border-radius: 50%;
	background: #f9ae40;
	mix-blend-mode: multiply;
	position: absolute;
	left: -330px;
	bottom: 330px;
}

section#produto .faq {
	text-align: left;
}
section#produto .faq li {
	border-bottom: 1px solid #ffffff;
	margin: 0 0 20px 0;
}
section#produto .faq li:last-child {
	border: 0;
}
section#produto .faq h2.question {
	line-height: 40px;
	position: relative;
	cursor: pointer;
	padding: 20px 0;
}
section#produto .faq h2.question span {
	color: #323031;
	font: normal 20px/26px "Freizeit";
}
section#produto .faq li.active .answer {
	max-height: 300px !important;
	padding: 0 0 20px 0;
	transition: all .6s ease;
}
section#produto .faq .answer {
	max-height: 0;
	overflow: hidden;
	transition: all .6s ease;
}

section#produto .faq .plus-minus-toggle {
	width: 60px;
	height: 60px;
	background: #ffffff;
	border-radius: 50%;
	position: absolute;
	top: 20px;
	right: 0;
	z-index: 2;
	cursor: pointer;
}
section#produto .faq .plus-minus-toggle:before,
section#produto .faq .plus-minus-toggle:after {
	content: "";
	width: 20px;
	height: 1px;
	background: #00466e;
	position: absolute;
	top: 30px;
	left: 20px;
	transition: transform .3s ease;
}
section#produto .faq .plus-minus-toggle:after {
	transform-origin: center;
}
section#produto .faq .plus-minus-toggle.collapsed:after {
	transform: rotate(90deg);
}
section#produto .faq .plus-minus-toggle.collapsed:before {
	transform: rotate(180deg);
}

section#produto a.button {
	background: #f9ae40;
	border-radius: 70px;
	font-size: 16px;
	line-height: 70px;
	font-weight: 500;
	text-transform: uppercase;
	color: #00466e;
	text-align: center;
	display: inline-block;
	margin: 80px 0 0 0;
	padding: 0 40px;
}



section#logos {
	padding: 160px 0;
	text-align: center;
}
section#logos .container {
	width: 1200px;
	margin: 0 auto;
}
section#logos h3 {
	color: #323031;
	margin: 0 0  80px 0
}

section#logos .logos {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-wrap: wrap;
}
section#logos .logos img {
	width: auto;
	height: 60px;
	display: block;
	margin: 40px;
}



section#depoimentos {
	background: #00466e url(../img/pattern_white.png) no-repeat top center;
	background-size: cover;
	text-align: center;
	padding: 160px 0;
}
section#depoimentos .container {
	width: 1200px;
	margin: 0 auto;
}
section#depoimentos h3 {
	color: #ffffff;
	margin: 0 0  80px 0
}

section#depoimentos .testimonial {
	margin: 0 20px;
}
section#depoimentos .testimonial .testimonial-content{
	text-align: left;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 15px;
	padding: 40px 40px 0 80px;
}
section#depoimentos .testimonial .description {
	color: #ffffff;
	font: normal 20px/26px "FreightBigProBold";
	font-weight: normal;
	margin: 0;
	position: relative;
}
section#depoimentos .testimonial .description::before {
	content: "";
	width: 39px;
	height: 30px;
	background: url(../img/icons/icon_depo.svg) no-repeat center center;
	background-size: cover;
	position: absolute;
	top: -10px;
	left: -50px;
}
section#depoimentos .testimonial .name {
	position: relative;
	left: -50px;
	margin: 20px 0 40px 0;
	display: flex;
    align-items: center;
}
section#depoimentos .testimonial .name img {
	width: 70px;
	height: 70px;
	float: left;
	display: block;
	margin: 0 15px 0 0;
}
section#depoimentos .testimonial .name .title {
    color: #f9ae40;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}
section#depoimentos a.button {
	background: #f9ae40;
	border-radius: 70px;
	font-size: 16px;
	line-height: 70px;
	font-weight: 500;
	text-transform: uppercase;
	color: #00466e;
	text-align: center;
	display: inline-block;
	margin: 40px 0 0 0;
	padding: 0 40px;
}

.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.grabbing {
	cursor: url(grabbing.png) 8 8, move;
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
}
.owl-theme .owl-controls {
	margin: 40px 0 0 0;
	text-align: center;
}
.owl-theme .owl-controls .owl-buttons div {
	color: #ffffff;
	display: inline-block;
	zoom: 1;
	*display: inline;
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);
	opacity: 0.5;
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	filter: Alpha(Opacity=100);
	opacity: 1;
	text-decoration: none;
}
.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline;
}
.owl-theme .owl-controls .owl-page span {
	display: block;
	width: 10px;
	height: 10px;
	margin: 5px 10px;
	opacity: 0.2;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #ffffff;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
	filter: Alpha(Opacity=100);
	opacity: 1;
}



section#equipe {
	text-align: center;
	display: flex;
	padding: 160px 0;
}
section#equipe .container {
	width: 1200px;
	margin: 0 auto;
}
section#equipe h3 {
	color: #323031;
	margin: 0 0  80px 0
}

section#equipe ul li {
	float: left;
	width: 25%;
	padding: 0 20px;
}
section#equipe ul li img {
	width: 100%;
	height: auto;
	display: block;
}
section#equipe ul li p {
	color: #323031;
	font-size: 30px;
	line-height: 34px;
	letter-spacing: 1px;
	margin: 20px 0 0 0;
}
section#equipe ul li span {
	color: #323031;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}



footer {
	background: #323031 url(../img/pattern_footer.png) no-repeat bottom center;
	background-size: auto 95%;
	color: #ffffff;
	text-align: center;
	display: flex;
	padding: 160px 0;
	position: relative;
}
footer .container {
	width: 1600px;
	margin: 0 auto;
}
footer img.icon_logo {
	width: 240px;
	height: auto;
	display: block;
	margin: 0 auto;
}
footer p {
	font-size: 30px;
	line-height: 40px;
	text-transform: uppercase;
	margin: 80px 0 40px 0;
}
footer p b {
	font-size: 66px;
	line-height: 72px;
	font-weight: 500;
	text-transform: none;
}

footer a.button {
	background: #f9ae40;
	border-radius: 70px;
	font-size: 16px;
	line-height: 70px;
	font-weight: 500;
	text-transform: uppercase;
	color: #00466e;
	text-align: center;
	display: inline-block;
	padding: 0 40px;
}

footer a.turn {
	color: #ffffff;
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 16px;
	padding: 5px 15px;
	position: absolute;
	left: 180px;
	bottom: 90px;
	transform: rotate(-90deg);
	transform-origin: 15% 50%;
}

footer ul.social {
	position: absolute;
	right: 180px;
	bottom: 90px;
}
footer ul.social li {
	width: 30px;
	margin: 30px 0 0 0;
}
footer ul.social li img {
	width: 100%;
	height: auto;
	display: block;
	padding: 5px;
}