*{
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: 'Hubballi', cursive;
	text-decoration: none;
	box-sizing: border-box;
}

.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.column{
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}


.logo{
	width: auto;
	height: auto;
	max-width: 100%;
	padding: 8px 8px 0px 8px;
	
	}

	
.logo img{
	width: 100px;
	height: auto;
	max-width: 100%;
	padding: 0px;
	transition: .5s;
	}
	
.cabecalho{
	position: fixed;
	width: 100%;
	height: auto;
	padding: 0px 10px 0px 10px;
	top: 0;
	transition: 1s;
	z-index: 999;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	
	}

.cabecalho.black{
	width: 100%;
	height:  auto;
	position: fixed;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background-color: #fff;
	padding: 0px 10px 0px 10px;
	top: 0;
	box-shadow: 0px 0px 6px #000;
}

.menu{
	margin: 0;
	height: auto;
	padding: 0;
	}
	
.menu ul{
	padding: 15px 0px 8px 0px;
	transition: .5s;
	}
	
.menu ul li{
	display: inline-table;
	list-style: none;
	margin: 8px;
	padding: 2px;
	}
	.menu ul li a{
		text-decoration: none;
		font-size: 16px;
		color: #fff;
		position: relative;
		transition: .5s;
		font-weight: bold;
		}
		
		.menu ul li a:before{
			content: '';
			width: 0px;
			height: 2px;
			background: #ff8800;
			position: absolute;
			top: 100%;
			left: 0;
			border-radius: 3px;
			transition: 0.5s;
			}
			
			.menu ul li:hover a:before{
				width: 30%;
				}
				
				
		
.banner{
	width: 100%;
	height: 100vh;
	max-width: 100%;
	background: url("../_img/banner.jfif") fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	}

.banner div{
    width: 100%;
    height: 100vh;
	padding: 10px;
	background: rgba(0, 0, 0, 0.5);
	position: relative;
}

.banner div figcaption{
	width: 600px;
	height: auto;
	max-width: 100%;
	padding: 10px 0px 10px 0px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	bottom: -40vh;
}

.banner div figcaption h1{
	color: #FFF;
	font-size: 30px;
	letter-spacing: 4px;
}

.banner div figcaption p{
	color: #fff;
	font-size: 20px;
	padding: 0px 10px 30px 10px;
}

.banner div figcaption a{
	color: #FFF;
	background-color: transparent;
	border: 1px solid #ff8800;
	border-radius: 2px;
	padding: 15px;
	font-size: 18px;
	transition: .3s;
}

.banner div figcaption a:hover{
	background-color: #ff8800;
	border: 1px solid #ff8800;
	transition: .3s;
}

.banner div figcaption a >.fa-whatsapp{
	color: #fff;
	font-size: 25px;
}

.sobre{
	width: 100%;
	height: auto;
	max-width: 100%;
	padding-bottom: 10vh;
	background-color: #EEE;
}

.sobre aside{
	width: 100%;
	height: auto;
	max-width: 100%;
	padding: 20px 20px 0px 20px;
}
.sobre aside h1{
padding: 80px 0px 5px 0px;
color: #444;
width: 1040px;
height: auto;
margin: 6px auto;
font-size: 25px;
max-width: 100%;
position: relative;
}

.sobre aside h1:before{
	content: '';
	width: 50px;
	height: 5px;
	background: #ff8800;
	position: absolute;
	top: 100%;
	left: 0;
	border-radius: 3px;
	}

.sobre article{
	width: 1080px;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
	padding: 10px 10px 20px 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
}

.sobre article div{
	width: 500px;
	height: auto;
	max-width: 100%;
	padding: 10px;
}

.sobre article div img{
	width: auto;
	height: auto;
	max-width: 100%;
}

.sobre article div p{
	padding: 3px;
	font-size: 18px;
	text-align: justify;
}

.sobre article div h2{
	padding-bottom: 20px;
	font-size: 35px;
	color: #3f3232;
}

.sobre article div h3{
	padding-bottom: 20px;
	font-size: 18px;
	color: #3f3232;
}

.sobre article div a{
	padding: 15px;
	background-color: #ff8800;
	border: 1px solid #ff8800;
	transition: .3s;
	color: #fff;
	border-radius: 2px;
}
.sobre article div a:hover{
	padding: 15px;
	background-color: #fff;
	border: 1px solid #ff8800;
	transition: .3s;
	color: #ff8800;
	border-radius: 2px;
}

.portfolio{
	width: 100%;
    height: auto;
    max-width: 100%;
    background-color: #DDD;
	margin: 0;
	}

	.portfolio aside{
		width: 100%;
		height: auto;
		max-width: 100%;
		padding: 20px 20px 0px 20px;
	}
.portfolio aside h1{
	padding: 80px 0px 5px 0px;
	color: #444;
	width: 1040px;
	height: auto;
	margin: 6px auto;
	font-size: 25px;
	max-width: 100%;
	position: relative;
	}

	.portfolio aside h1:before{
		content: '';
		width: 50px;
		height: 5px;
		background: #ff8800;
		position: absolute;
		top: 100%;
		left: 0;
		border-radius: 3px;
		}

.nav{
	width: 100%;
	height: auto;
	padding: 25px 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.nav p.active{
	background-color: #e67e22;
	color: white;
}

.nav p{
	width: 120px;
	height: auto;
	text-align: center;
	margin-right: 5px;
	border: 1px solid #ccc;
	background-color: #FFF;
	padding: 10px;
	color: #000;
	cursor: pointer;
}

	.figure-box{
		max-width: 100%;
		margin: 0 auto;
		display: grid;
		grid-gap: 10px;
		justify-content: center;
		justify-items: center;
		grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
		padding: 40px 10px 10px 10px;
		}

		.figure-box figure{
			width: auto;
			height: auto;
			max-width: 100%;
			overflow: hidden;
			margin: 2px;
			position: relative;
			transition: all 0.4s linear;
			}

		.figure-box figure span{
			position: absolute;
			width: 100%;
			height: 100%;
			top: 0;
			left: -100%;
			color: #DDDD;
			background: transparent;
			transition: 0.6s;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
		}

			.figure-box figure div img{
				width: 200px;
				height: auto;
				max-width: 100%;
				position: relative;
				transition: 0.6s;
				margin: 0px;
				}
				
				.figure-box figure:hover div img{
					transform: scale(1.1);
					transition: 0.6s;
					}

				.figure-box figure figcaption{
					max-width: 100%;
					position: relative;
					top: auto;
					bottom: 0;
					left: 0;
					width: 100%;
					height: auto;
					background-color: #FFF;
					padding: 8px 16px 10px 16px;
					font-size: 20px;
					transition: .6s;
					text-align: center;
					}

					.figure-box figure figcaption a{
						background-color: #ff8800;
						padding: 4px 5px 4px 5px;
						border-radius: 4px;
						font-size: 16px;
						color: #fff;
						transition: .3s;
					}

					.figure-box figure figcaption a:hover{
						background-color: #dd7601;
						transition: .3s;
					}

					.figure-box figure figcaption h4{
						top: 0;
						font-size: 18px;
						color: #3f3232;
						position: relative;
						text-align: left;
					}
					.figure-box figure figcaption h4:before{
						content: '';
						width: 10%;
						height: 3px;
						background: #ff8800;
						position: absolute;
						top: 100%;
						left: 0;
						border-radius: 3px;
						transition: 0.5s;
						}

					.figure-box figure figcaption p{
						padding: 10px 0px 10px 0px;
						font-size: 15px;
						color: #3f3232;
						text-align: left;
					}

					.fa-map-marker-alt{
						margin: 2px 4px 2px 2px;
						font-size: 17px;
						color: #FFD700;
					}

					
						.figure-box figcaption{
							text-align: left;
							}


/* Estilo do Fomulário */
.contato{
	width: 100%;
	height: auto;
	max-width: 100%;
	background-color: #EEE;
	padding: 10px 10px 20px 10px;
}

.contato aside{
	width: 100%;
	height: auto;
	max-width: 100%;
    padding: 20px 10px 10px 10px;
}

.contato aside h1{
	padding: 90px 0px 5px 0px;
	color: #000;
	width: 1040px;
	height: auto;
	margin: 6px auto;
	font-size: 25px;
	max-width: 100%;
	position: relative;
	}
	
	.contato aside h1:before{
		content: '';
		width: 50px;
		height: 5px;
		background: #ff8800;
		position: absolute;
		top: 100%;
		left: 0;
		border-radius: 3px;
		}

.contato div{
	width: auto;
	height: auto;
	max-width: 100%;
	display: grid;
	grid-gap: 10px;
	justify-content: center;
	justify-items: center;
	grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
}

.contato div iframe{
	width: 100%;
	height: 100vh;
	max-width: 100%;
}


.contato div form{
	width: auto;
	height: auto;
	display: grid;
	max-width: 100%;
	padding: 10px;
	background-color: #FFF;
	border-radius: 1px;
	border: 1px solid #DDD;
}

.contato div form h2{
	padding: 30px 10px 2px 10px;
	max-width: 100%;
	color: #000;
	font-size: 18px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	position: relative;
}

.contato div form h2:before{
	    content: '';
		width: 50px;
		height: 5px;
		background: #ff8800;
		position: absolute;
		top: 100%;
		left: 4;
		border-radius: 3px;
}

.cont_form{
	width: 100%;
	height: auto;
	max-width: 100%;
	padding-top: 10px;
}

.cont_form ul{
	width: 100%;
	height: auto;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.cont_form ul li{
	width: 240px;
	height: auto;
	max-width: 100%;
	margin: 4px;
}

.cont_form ul li h5{
	color: #3f3232;
	font-size: 15px;
	padding: 5px;
	margin-right: 2px;
}

.cont_form ul li h5 > .fa-envelope, .fa-whatsapp{
	color: #ff8800;
	font-size: 15px;
}

.contato div form span{
	max-width: 100%;
	padding: 10px 0px 0px 5px;
	color: #3f3232;
	font-size: 17px;
}

.contato div form .block{
	grid-column: 1 / 3;
	max-width: 100%;
}

.contato div form > p{
	padding: 0px 5px 3px 5px;
	max-width: 100%;
	
}

.contato div form select{
	width: 100%;
	padding: 0.5em;
	max-width: 100%;
	background: none;
	font-size: 15px;
	outline: 0;
	color: #080808;
	border: 1px solid #ccc;
	border-radius: 2px;
}

.contato div form label{
	color: #000;
	font-size: 12px;
	font-weight: 900;
}

.contato div form button,
.contato div form input,
.contato div form textarea{
width: 100%;
padding: 0.6em;
background: none;
outline: 0;
font-size: 15px;
color: #080808;
border: 1px solid #CCC;
border-radius: 2px;
max-width: 100%;
}

.contato div form select:focus,
.contato div form input:focus,
.contato div form textarea:focus{
	box-shadow: 0px 0px 2px #0deed0;
}

#btn_enviar{
	background:rgb(245, 130, 23);
	border: 0;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	max-width: 100%;
	padding: 1em;
	border-radius: 3px;
}

#btn_enviar:hover,
#btn_enviar:focus{
	background:rgb(250, 154, 45);
	color: #fff;
	transition: .5s ease-out;
	outline: none;
	cursor: pointer;
}

.sitesparceiros{
	width: 100%;
	height: auto;
	max-width: 100%;
	background-color: #FFF;
	padding-bottom: 20px;
}

.sitesparceiros aside{
	width: 100%;
	height: auto;
	max-width: 100%;
	padding: 20px 20px 0px 20px;
}
.sitesparceiros aside h1{
padding: 80px 0px 5px 0px;
color: #000;
width: 1040px;
height: auto;
margin: 6px auto;
font-size: 25px;
max-width: 100%;
position: relative;
}

.sitesparceiros aside h2{
	width: 1040px;
	height: auto;
	max-width: 100%;
	padding: 20px 0px 5px 0px;
	margin: 6px auto;
}

.sitesparceiros aside h1:before{
	content: '';
	width: 50px;
	height: 5px;
	background: #ff8800;
	position: absolute;
	top: 100%;
	left: 0;
	border-radius: 3px;
	}

.sitesparceiros div{
	width: 1080px;
	height: auto;
	max-width: 100%;
	padding: 10px;
	margin: 0 auto;
}

.sitesparceiros div ul{
	width: 100%;
	height: auto;
	max-width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.sitesparceiros div ul li{
	width: auto;
	height: auto;
	max-width: 100%;
	display: inline-table;
	margin: 5px auto;
}

.sitesparceiros div ul li img{
	width: 180px;
	height: auto;
	max-width: 100%;
}

.avaliacao_booking{
	width: 100%;
	height: auto;
	max-width: 100%;
	padding: 40px 10px 20px 10px;
}

.avaliacao_booking div{

}

.parceiros{
	width: 100%;
	height: auto;
	max-width: 100%;
	color: #000;
	background-color: #EEE;
	padding: 20px 10px 10px 10px;
}

.parceiros article{
	width: 1040px;
	height: auto;
	max-width: 100%;
	display: grid;
	grid-gap: 10px;
	justify-items: center;
	grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
}

.parceiros article div{
	width: auto;
	height: auto;
	max-width: 100%;
}
.parceiros article div h1{
	max-width: 100%;
	padding: 10px;
	font-size: 16px;
	color: #D4A408;
}

.parceiros article div img{
	width: 150px;
	height: auto;
	max-width: 100%;
}

.parceiros article div ul{
	width: 100%;
	height: auto;
	max-width: 100%;
	padding: 0px;
}
.parceiros article div ul li{
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
}
.parceiros article div ul li a{
	padding: 0px 10px 0px 10px;
	font-size: 15px;
	color: #000;
}

.parceiros article div ul li a:hover{
	text-decoration: underline;
}

.rdsocial ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: auto;
	height:  auto;
}

.fa-instagram, .fa-facebook-f, .fa-youtube, .fa-tripadvisor{
	font-size: 30px;
	transition: .3s;
}

.fa-instagram:hover{
	color: #ff5e57;
	transition: .3s;
}

.fa-facebook-f:hover{
	color: #3498db;
	transition: .3s;
}

.fa-youtube:hover{
	color: #ff3838;
	transition: .3s;
}
.fa-tripadvisor:hover{
    color: #3CB371;
	transition: .3s;
}

.rodape{
	width: 100%;
	height: auto;
	max-width: 100%;
	background-color: #EEE;
	padding: 10px;
}

.rodape div{
	width: 1040px;
	height: auto;
	max-width: 100%;
	border-top: 1px solid #705b5b;
	margin: 0 auto;
}

.rodape div aside{
	padding: 20px 10px 20px 10px;
	display: block;
	text-align: center;
}

.rodape div aside p{
	color: #000;
	font-size: 12px;
}

.rodape div aside img{
	width: 120px;
	height: auto;
	max-width: 100%;
	padding: 5px;
}


@media all and (max-width:890px)
{
	    .cabecalho{
			width: 100%;
			height: 100px;
			text-align: center;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			padding: 2px 2px 0px 2px;
			top: 0;
			transition: .5s;
		}
		.cabecalho.black{
			padding: 2px 2px 0px 2px;
			width: 100%;
			height: 100px;
		}
	.logo{
		width: auto;
		height: auto;
		max-width: 100%;
		padding: 20px 0px 20px 0px;
	}
	.logo img{
		width: 90px;
		height: auto;
		position: relative;

	}
	
			.menu{
				width: 100%;
				height: 0px;
				margin-top: 0px;
				float: none;
				overflow: hidden;
				text-align: center;
				z-index: 999;
				}
				.site-nav--open{
					height: auto;
				
					}
					.menu ul{
						z-index: 999;
						padding-top: 0px;
					}
			.menu ul li{
				display: block;
				padding: 10px;
				margin: 0px;
				transition: all linear 0.3s;
				border-bottom: #DDD solid 1px;
				background-color: #FFF;
				}
				
				.menu ul li a:before{
					width: auto;
					content: normal;
					}

					.cabecalho.black .menu ul{
						margin-top: 0px;
					}
					
					
					.nav-toggle{
						padding: 1em;
						top: 4em;
						left: .70em;
						position: absolute;
						cursor: pointer;
						z-index: 999;
						}
						.burger,
						.burger::before,
						.burger::after{
							content: '';
							display: block;
							background-color: #ff8800;
							height: 4px;
							width: 2.20em;
							border-radius: 3px;
							transition: all ease-in-out 500ms;
							z-index: 999;
							}
							.burger::before{
								transform: translateY(-6px);
								}
								.burger::after{
									transform: translateY(3px);
									}
									
									.open .burger{
										transform: rotate(45deg);
										}
									    .open .burger::before{
											opacity: 0;
											}
											.open .burger::after{
												transform: translateY(-3px) rotate(-90deg);
												}

												.figure-box{
													display: flex;
													flex-wrap: wrap;
													justify-content: center;
												}

												.parceiros{
													display: block;
												}
					
												.banner{
													height: 65vh;
												
													}
												
												.banner div{
													height: 65vh;
													
												}
												
												.banner div figcaption{
													bottom: -25vh;
												}

												.banner div figcaption h1{
													font-size: 20px;
												}

												.banner div figcaption p{
													font-size: 15px;
												}
	.sobre article div{
		text-align: left;
	}

	.figure-box{
		max-width: 100%;
		margin: 0 auto;
		display: grid;
		grid-gap: 5px;
		justify-content: center;
		justify-items: center;
		grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
		padding: 40px 10px 10px 10px;
		}

		.contato div form .block{
			grid-column: 1 / 1;
			}

		.parceiros article{
			justify-items: left;
		}
}
