*{
	margin: 0 auto;
	font-family: Citizen;
}
h1, h2{
	font-family: Geliat;
}
.mob{
	display: none!important;
}

@font-face {
  font-family: Citizen;
  src: url(fonts/Citizen.otf);
}
@font-face {
  font-family: Geliat;
  src: url(fonts/Geliat.otf);
}

body{
}
header{
	width: 100%;
	height: 100px;
	padding: 8px 15%;
	box-sizing: border-box;
	background-color: #34637d;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
}
header img{
	margin-left: 0;
	cursor: pointer;
	transition: transform 0.4s;
}
header img:hover{
	transition: transform 0.2s;
	transform: scale(1.05);
}
header ul{
	display: flex;
	margin-right: 0;
}
header ul li{
	list-style: none;
	margin: 16px;
	cursor: pointer;
	transition: transform 0.4s;
}
header ul li:hover{
	transition: transform 0.2s;
	transform: scale(1.05);
}
header #menu{
	height: 64px;
	margin-right: 0;
}

#s1, #s1 img{
	width: 100%;
}
#s1 img{
	box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.1);
	padding-top: 100px;
}
#s2{
	width: 100%;
	display: flex;
	padding: 48px 10%;
	padding-left: 0;
	padding-bottom: 80px;
	padding-right: 10%;
	box-sizing: border-box;
}
#s2 img{
	width: 40%;
	margin-left: 0;
}
#s2 div{
	width: 60%;
	padding-left: 4%;
	box-sizing: border-box;
}
#s2 h1{
	margin-bottom: 32px;
}
.cotacao{
	width: fit-content;
	background-color: #34637d;
	color: #fff;
	padding: 12px 5%;
	border-radius: 32px;
	margin-bottom: 48px;
	text-decoration: none;
	font-size: 14pt;
	transition: transform 0.4s;
	display: inline-block;
}
.cotacao:hover{
	transform: scale(1.05);
	transition: transform 0.2s;
}
#s3{
	background-image: url(img/s3.png);
	background-size: 100% auto;
	background-position: center;
	color: #fff;
	text-align: center;
	padding: 48px 10%;
	padding-bottom: 280px;
	border-radius: 48px;
}
#s3 h1{
	margin-bottom: 48px;
}
#s3 .boxes{
	width: 100%;
	display: flex;
	justify-content: center;
}
#s3 .box{
	width: 30%;
	background-color: #fff;
	color: #000;
	margin: 0 32px;
	padding: 3%;
	box-sizing: border-box;
	border-radius: 24px;
	transition: scale 0.4s;
	text-align: center;
}
#s3 .box:hover{
	transition: scale 0.2s;
	scale: 1.1;
}
#s3 .box img{
	width: 64px;
	margin-bottom: 16px;
}
#s3 .box h2{
	margin-bottom: 16px;
	color: #34637d;
}
#s3 .box .box-line{
	width: 50%;
	height: 6px;
	border-radius: 6px;
	margin-left: 25%;
	background-color: #34637d;
	margin-bottom: 16px;
}
#s3 .box p{
	margin-bottom: 32px;
	text-align: justify;
	text-align-last: center;
}
#s3 .box a{
	background-color: #34637d;
	padding: 8px 32px;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	border-radius: 16px;
	transition: transform 0.4s;
	display: inline-block;
}
#s3 .box a:hover{
	transition: transform 0.2s;
	transform: scale(1.05);
}

.carrossel{
	border-radius:16px;
	padding: 40px 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin-top: -200px;
	margin-bottom: 48px;
}
.carrossel .row{
	display: flex;
	align-items: center;
	gap: 12px;
}
.carrossel button{
	background: none;
	border: none;
	cursor: pointer;
	user-select: none;
}
.carrossel .btn{
	font-size: 100pt;
	padding: 8px;
	font-weight: 100;
	color: #34637d;
	transition: scale 0.4s;
}
.carrossel .btn:hover{
	scale: 1.05;
	transition: scale 0.2s;
}
.carrossel .slides{
	flex:1;
	text-align:center;
	overflow:hidden;
	border-radius: 36px;
}
.carrossel .slide{
	display:none;
	animation:in .4s ease;
	border-radius: 36px;
}
.carrossel .slide.on{
	display: flex;
}
.carrossel .slide img{
	width: 100%;
}
footer{
	width: 100%;
}
footer .top{
	background-color: #34637d;
	color: #fff;
	display: flex;
	padding: 36px 10%;
	border-radius: 100px;
	align-items: center;
}
footer .socials img{
	width: 32px;
	margin: 2px;
	transition: transform 0.4s;
}
footer .socials img:hover{
	transform: scale(1.05);
	transition: transform 0.2s;
}
footer .bottom{
	text-align: center;
	padding: 16px 10%;
}
footer .bottom a{
	text-decoration: none;
	color: #000;
	font-weight: 900;
	transition: transform 0.4s;
	display: inline-block;
}
footer .bottom a:hover{
	transition: transform 0.2s;
	transform: scale(1.02);
}
@media only screen and (max-width: 1300px) {
	.mob{
		display: block!important;
	}
	.desk{
		display: none!important;
	}
	header{
		padding: 0 5%;
	}
	header ul{
		width: 60%;
		position: fixed;
		display: none;
		background-color: #fff;
		top: 99px;
		padding: 16px 32px;
		box-sizing: border-box;
		right: 0;
		border-bottom-left-radius: 16px;
		box-shadow: 0 16px 16px rgba(0, 0, 0, 0.5);
	}
	header ul li{
		width: 90%;
		margin-right: 0;
		text-align: right;
		margin-bottom: 32px;
		color: #000;
	}
	header #logo{
		max-height: 80px;
	}
	.menu-on{
	  display: block!important;
	  margin-right: 0;
	  transition: margin-right 0.6s;
	}
	.menu-off{
	  display: none;
	}
	.m-right {
	  display: block!important;
	  margin-right: -105%;
	  transition: margin-right 1s;
	}
	#s2{
		display: block;
		padding: 48px 5% 48px 0;
	}
	#s2 img{
		width: 95%;
		margin-left: 0;
		margin-bottom: 16px;
	}
	#s2 div{
		width: 100%
	}
	#s3{
		background-color: #34637d;
		background-image: none;
	}
	#s3 .boxes{
		display: block;
	}
	#s3 .box{
		width: 100%;
		margin: 0 0 36px 0;
	}
	.carrossel{
		width: 100%;
	}
	footer .top{
		display: block;
		text-align: center;
	}
	footer .top div, footer .top .logo{
		margin-bottom: 16px;
	}
}