:root{

	--grey:#4d4d4d;
	--bege:#d7cbb7;
	--marrom:#a18f73;

}

*{
	margin: 0;
	padding: 0;
	font-family: 'League Spartan', sans-serif;
	color: var(--grey);
}

a{
	text-decoration: none;
	color: inherit;
}

h1, h2, h3{
	font-family: 'Oooh Baby', cursive;
	font-weight: 100;
}

.safe{
	max-width: 1000px;
	margin: 0 auto;
}

.top-header{
	background-color: var(--marrom);
	padding: 10px 0px;
}

.top-header .safe{
	display: flex;
	justify-content: space-between;
	color: white;
}

.bottom-header{
	padding: 5px 10px;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	position: fixed;
	right: 0;
	left: 0;
	background-color: white;
	z-index: 10;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav button{
	display: none;
}

nav p{
	margin-right: 15px;
	color: var(--marrom);
	cursor: pointer;
}

.cta{
	border-radius: 10px;
	padding: 15px 30px;
	background-color: var(--bege);
	color: white;
	display: block;
	text-align: center;
}

.hamb-con{
	border-radius: 10px;
	border: 1px solid var(--marrom);
	width: 40px;
	height: 40px;
	cursor:pointer;
	padding: 8px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	justify-content: space-between;
	display: none;
}

.hamb-con p{
	width: 100%;
	height: 2px;
	background-color: var(--marrom);
}

.inner-hero{
	width: 1000px;
	overflow: hidden;
	height: 380px;
}

.inner-hero .swiper-slide{
	display: flex;
	align-items: center;

}

.hero-con{
	margin-top: 83px;
}

.hero-text{
	opacity: 0;
	transform: translateY(30px);
	transition: all 1.5s;
	transition-delay: 1s;
	margin-right: 20px;
}

.hero-image{
	width: 454px;
	flex-shrink: 0;
}

.hero-image img{
	width: 100%;
	height: auto;
}

.swiper-slide-active .hero-text{
	opacity: 1;
	transform: translateY(0px);
}

.hero-text h1{
	font-family: 'Oooh Baby', cursive;
	font-weight: 100;
	font-size: 45px;
}

.hero-text h1 span{
	color: var(--marrom);
	font-family: inherit;
}

.hero-text p{
	margin-top: 30px;
}

.herocta{
	display: inline-block;
	margin-top: 20px;
}

.difs-con{
	text-align: center;
	margin: 30px auto;
	max-width: 700px;
}

.difs-con h2{
	font-size: 50px;
	color: var(--marrom);
}

.difs{
	display: flex;
	margin-top: 30px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.dif{
	width: 200px;
	margin-bottom: 30px;
}

.dif-title{
	font-size: 25px;
	color: var(--marrom);
	position: relative;
	text-align: left;
}

.dif-title:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 50px;
	height: 3px;
	background-color: var(--marrom);
	margin-top: 5px;
}

.dif-desc{
	text-align: left;
	margin-top: 20px;
}


.afbor{
	margin:20px auto;
}

.afbor h2{
	font-size: 50px;
	text-align: center;
	color: var(--marrom);
}

.afbor-effect{
	position: relative;
    width: 400px;
    height: 533px;
    border: 2px solid white;
    margin: 20px auto;
    overflow: hidden;
}

.afbor-effect .img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.background-img{
	background-image: url("images/before_img.jpg");
}

.img.foreground-img{
	background-image: url("images/after_img.jpg");
	border-right: 4px solid white;
	width: 49%;
}

.afbor-effect .slider{
	    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-button{
	    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    left: calc(50% - 18px);
    top: calc(50% - 18px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-button:before {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid #5D5D5D;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg);
}

.slider-button:after {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid #5D5D5D;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}

.page-cta{
	text-align: center;
	margin: 40px auto;
}

.page-cta strong{
	color: var(--marrom);
	font-size:25px;
}

.page-cta .cta{
	display: block;
	width: 200px;
	margin:0 auto;
	margin-top: 20px;
}

.about-con{
	background-color: var(--bege);
	padding: 30px 0px;
}

.inner-about{
	max-width: 600px;
	display: flex;
}

.about-img{
	margin-right: 20px;
}

.about-img img{
	height: 100%;
	width: auto;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.about-text h2{
	color: var(--grey);
	font-size: 40px;
	position: relative;
}

.about-text h2:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 50px;
	height: 3px;
	background-color: var(--marrom);
	margin-top: 5px;
}

.about-text > div{
	margin-top: 30px;
	margin-left: 30px;
}

.depos-con{
	background-color: var(--bege);
	padding: 40px 0px;
}

.inner-depo{
	display: flex;
	justify-content: space-between;
	width: 700px;
	margin-top: 40px;
	align-items: center;
}

.seta{
	width: 50px;
	height: 50px;
	background-color: white;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 100%;
	cursor: pointer;
	position: relative;
}

.seta:after{
	content: "";
    text-align: center;
    position: absolute;
    margin: 0 auto;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--grey);
    border-left: 2px solid var(--grey);
    transform:rotateZ(133deg);
    margin-top: 13px;
}

.seta.seta-esq:after{
	transform:rotateZ(315deg);
}

.seta-dir:after {
   
}

.depo-carrossel{
	width: 400px;
	overflow: hidden;
}

.depo-carrossel .swiper-slide{
	text-align: center;
}

.ambientes-con{
	margin: 30px auto;
}

.ambientes-con h2{
	font-size: 50px;
	text-align: center;
	color: var(--marrom);
}


.ambientes-carrossel{
	width: 800px;
	margin: 20px auto;
	overflow: hidden;
	padding: 20px 10px;

}

.ambiente{
	border-radius: 10px;
	background-color: white;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	max-width: 246px;
	overflow: hidden;
	transform:translateZ(0) scale(0.80) !important;
	transition: transform 0.5s;
}

.ambiente.swiper-slide-active{
	transform:translateZ(0) scale(1) !important;
}

.ambiente p{
	text-align: center;
	margin: 10px 0px;
}

.ambiente .cta{
	margin: 0px 5px;
	margin-bottom: 15px;
}

.ambiente-carrossel{
	width: 100%;
	height: 180px;
	overflow: hidden;
	text-align: center;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	background-color: var(--bege);
}

.setaamb{
	border-radius: 100%;
	background-color: white;
	width: 30px;
	height: 30px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	position: absolute;
	line-height: 1.55;
	cursor: pointer;
	z-index: 2;
}

.setaamb:after{
	content: "\2911";
    font-size: 20px;
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
}

.setaamb-esq{
	left:9px;

}

.setaamb-esq:after{
	transform: rotateY(180deg);
}

.setaamb-dir{
	right: 9px;
}

.ambiente-carrossel .swiper-wrapper{
	pointer-events: none;
}

.ambiente-carrossel img{
	height: 100%;
	width: auto;
}

.swiper-button-lock{
	display: initial;
}

.faq-con{
	margin-top: 30px;
}

.faq-con h2{
	font-size: 50px;
	color: var(--marrom);
	text-align: center;
}

.faq{
	margin: 0 auto;
	margin-top: 35px;
	text-align: center;
	max-width: 700px;

}

.pergunta{
	color: var(--azul);
	border-bottom: 2px solid var(--marrom);
	padding:20px;
	cursor: pointer;
	margin-bottom: 20px;
}

.resposta{
	margin-top: 20px;
	color: var(--grey);
	display: none;
}

footer{
	padding: 20px 5px;
	background-color: var(--bege);
}

.floating-elements{
	position: fixed;
	z-index:9;
	right: 27px;
	text-align: right;
	bottom:110px;
	
}

.wpp-floating{
  cursor: pointer;
  /*box-shadow:0px 5px 15px -3px #00000078;*/
  box-shadow:0 0 0 0 rgba(122, 237, 148, 0.29);
  overflow: hidden;
  display: block;
  border-radius: 100%;
  width:57px;
  height: 57px;
  animation: pulso 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
}

.wpp-floating > *{
	pointer-events: none;
}

.wpp-floating img{
	display: block;
	margin:-2px -3px;
}

@keyframes pulso{
	100%{
		box-shadow:0 0 0 45px rgba(232, 76, 61, 0);
	}
}

.inner-footer{
	text-align: center;
}

.inner-footer a{
	margin-top: 20px;
	display: inline-block;
}

@media only screen and (max-width:1020px){

	.hamb-con{
		display: flex;
	}

	header{
		margin: 0;
	}

	.top-header{
		padding: 10px 5px;
	}

	.bottom-header{
		align-items: center;
		margin: 0px 5px;
	}

	nav button{
		display: initial;
		margin-top: 20px;
		border-radius: 5px;
		padding: 10px 25px;
		background-color:#e74c3c;
		color: white;
		border: none;
		cursor: pointer;
	}

	header nav{
		display: none;
		text-align: center;
		padding: 0px 10px;
		box-sizing: border-box;
	}

	nav{
		
		position: fixed;
		background-color: white;
		width: 100%;
		height: 100vh;
		top: 0;
		z-index: 10;
		left: 0;
		flex-direction: column;
		justify-content: initial !important;
	}

	nav p{
		margin: 20px 0px;
		margin-right: 0px !important;
	}

	.inner-hero{
		width: initial;
		height: 600px;
		padding: 0px 5px;
		pointer-events: none;
	}

	.cta{
		pointer-events: initial;
	}

	.inner-hero .swiper-slide{
		margin: 0 auto;
		justify-content: center;
		flex-direction: column;
	}

	.hero-image{
		
	}

	.hero-text{
		text-align: center;
		margin-right: 0;
		margin-bottom: 10px;
	}

	.difs{
		flex-wrap: wrap;
		justify-content: center;
	}

	.dif{
		margin-right: 10px;
	}

	.page-cta  a{
		width: initial !important;
		margin:20px 5px 0px 5px !important;

	}

	.inner-about{
		flex-direction: column;
	}

	.about-img{
		margin: 0 auto;
	}

	.about-img img{
		width: 100%;
		height: auto;
	}

	.about-text{
		text-align: center;
	}

	.about-text h2{
		position: relative;
	}

	.about-text h2:before{
		left: initial;
	}

	.about-text div{
		margin:30px auto;
		padding: 0px 5px;
	}

	

}


@media only screen and (max-width:400px){

	.afbor-effect{
		padding: 0px 5px;
		box-sizing: border-box;
		width:100%;

	}

}

@media only screen and (max-width:720px){

	.inner-depo{
		width: initial;
		flex-wrap: wrap;
		justify-content: center;
	}

	.seta-esq{
		order:1;
		margin-right: 20px;
	
	}

	.seta-dir{
		order:2;
	}

	.depo-carrossel{
		order:3;
		margin-top: 20px;
		width: 100%;
	}

}

@media only screen and (max-width:840px){

	.ambientes-carrossel{
		width: initial;
	}

}

@media only screen and (max-width:454px){

	.hero-image{
		width: 100%;
	}

}