:root{

	--verde: #3db380;
	--cinza:#757575;
}



*{
	padding: 0;
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
}

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

body{
	background-color: #F5FBFC;
}

.conversion > *{
	pointer-events: none;
}

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

.top-header > div{
	display: flex;
	padding: 10px 0px;
	justify-content: space-between;
	align-items: center;
}

.top-header > div > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-header-unids{
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid var(--verde);
	color: var(--verde);
	cursor: pointer;
}

.top-header-cta{
	background-color: var(--verde);
	color: white;
	padding: 10px 20px;
	border-radius: 10px;
	margin-left: 15px;
}

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

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

.main-header{
	background-color: var(--verde);
}

.main-header nav{
	display: flex;
	padding: 15px 0px;
	justify-content: space-between;
	color: white;

}

nav button{
	display: none;
}

nav p{
	cursor: pointer;
}

.hamb-con{
	display: none !important;
}

.hero-con{
	overflow: hidden;
}

.hero {
	max-width: 1000px;
	margin: 0 auto;
	height:auto;
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero > img{
	width: 100vw;

}

.hero-inner{
		position: absolute;
		left: 0;
		padding: 10px;
		color: white;
	}

.hero-inner h1{
	font-size: 30px;
}


.hero-inner > a{
	background-color: white;
	font-size: 15px;
	border: 1px solid white;
	border-radius: 10px;
	border-bottom-left-radius: 20px;
	transition: all 0.5s;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
	color: var(--anil);
	max-width: 250px;
}

.hero-inner > a img{
	margin-right: 10px;
}

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

.dif{
	background-color: white;
	padding: 15px 30px;
	border-radius: 10px;
	display: flex;
	color: var(--verde);
	align-items: center;
	justify-content: center;
	max-width: 180px;
	font-size: 15px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	flex-basis: 0;
 }

 .dif img{
 	margin-right: 10px;
 }

.cats-con{
	text-align: center;
	margin-top: 40px;
}

.cats-con h1{
	color: var(--verde);
}

.cats-list{
	display: flex;
	margin-top: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.cat{
	color: var(--verde);
	text-align: center;
	width: 180px;
	margin-bottom: 20px;
}

.cat div{
	border-radius: 100%;
	width: 80px;
	height: 80px;
	background-color: var(--verde);
	margin: 0 auto;
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cat img{
	text-align: center;
	height: 50px;
}

.banner-con{

}

.vendidos-con{
	margin-top: 40px;
	text-align: center;
}

.vendidos-con h1{
	color: var(--verde);
}

.prods-list{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.prod{
	padding: 10px;
	background-color: white;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 10px;
	transition: transform 0.5s;
	margin-bottom: 15px;
	margin-right: 10px;
	min-width:179px;
	flex-basis: 0;
}

.prod:hover{
	transform: scale(1.05);
}

.prod p{
	font-weight: bold;
	color: var(--verde);
}

.prod a{
	background-color: var(--verde);
	color: white;
	border-radius:8px;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 15px;
}

.unids-con{
	margin-top: 40px;
}

.unids-con h1{
	color: var(--verde);
}

.unids{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items:flex-start;
}

.unid{
	background-color: white;
	padding: 25px 45px;
	border-radius: 10px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	width: 200px;
	min-height: 60px;
}

.unid:before{
	position: absolute;
	content: "";
	height: 100px;
	width: 100px;
	background-image: url(images/logo_simbolo.svg);
	background-repeat: no-repeat;
	left: -40px;
	bottom: -35px;
	opacity: 0.25;
	z-index: 1;

}

.unid > *{
	z-index: 2;
}

.unid-title{
	text-align: center;
}

.unid-title strong{
	color: var(--verde);
	font-size: 25px;
	text-align: center;

}

.unid-info{
	border-top: 2px solid var(--verde);
	margin-top: 10px;
	color: var(--verde);
	display: none;
}

.parcs-con{
	margin-top: 40px;
	overflow: hidden;
	display: flex;
}

.parcs-con img{
	display: inline-block;
	animation: parceiros-car 20s linear infinite;
}

@keyframes parceiros-car{

	100%{
		transform: translateX(-100%);
	}

}

.about-con{
	border-top: 1px solid #858585;
	margin-top: 30px;
	display: flex;
	padding: 20px 0px;
	text-align: justify;
}

.about-con h1{
	color: var(--verde);
}

.about-con img{
	margin-right: 30px;
}

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

.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;
  border-radius: 100%;
  width:57px;
  height: 57px;
  display: block;
  pointer-events: initial;
  animation: pulso 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
}

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

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

footer{
	background-color: var(--verde);
	padding: 20px 0px;
}

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

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


	header{
		    position: fixed;
    top: 0;
    z-index: 9;
    left: 0;
    right: 0;
	}

	.top-header{
		background-color: white;
	}

	.top-header > div > div{
		display: none;
	}

	.hamb-con{
		display: flex !important;
	}

	.main-header{
		position: fixed;
		right: 0;
		left: 0;
		top: 0;
		height: 100%;
		display: none;
	}

	.main-header nav{
		flex-direction: column;
		align-items: center;
	}

	.main-header nav p{
		margin-bottom: 15px;
	}

	.main-header button{
			display: initial;
		margin-top: 15px;
		margin-bottom: 15px;
		border-radius: 5px;
		padding: 10px 25px;
		background-color:#e74c3c;
		color: white;
		border: none;
		cursor: pointer;
	}

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

	.hero{
		height: 200px;
		overflow: hidden;
	}

	.hero > img{
		width: initial;
		height: 100%;
	}

	.difs-con{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.dif{
		margin-bottom: 15px;
	}

	.prods-list{
		justify-content: center;
	}

	.banner-con{
		display: flex;
		justify-content: center;
		max-width: 100vw;
    overflow: hidden;
	}

	.unids{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.unid{
		margin-bottom: 20px;
	}

	.about-con{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

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

}