/*Estilos Próprios*/
.row{
	width: 100%;
	padding:0;
	margin:0;
}

.maxwidth{
	width: 100%;
	max-width: 1300px;
	margin:auto;
}

@media screen and (max-width: 1200px){
	.hidden-lg{
		display: none;
	}
}

@media screen and (max-width: 900px){
	.hidden-md{
		display: none;
	}
}

@media screen and (max-width: 600px){
	.hidden-sm{
		display: none;
	}
}

.hidden{
	display: none;
}

/*Fontes*/
@font-face {
  font-family: 'VelaSans-Light';
  src: url('../fonts/VelaSans-Light.woff2');
}

@font-face {
  font-family: 'VelaSans-Regular';
  src: url('../fonts/VelaSans-Regular.woff2');
}

@font-face {
  font-family: 'VelaSans-SemiBold';
  src: url('../fonts/VelaSans-SemiBold.woff2');
}

@font-face {
  font-family: 'VelaSans-Bold';
  src: url('../fonts/VelaSans-Bold.woff2');
}

*{
font-family: 'VelaSans-Regular', serif;
letter-spacing: .05em;
}

.bg-sucesso, .btn-sucesso{
	font-family: 'VelaSans-Regular';
	font-weight: bold;
	background-color: #269E97;
	color: #FFF;
}

.bg-erro, .btn-erro{
	font-family: 'VelaSans-Regular';
	font-weight: bold;
	background-color: #cb3d47; 
	color:#FFF;
}

.txt-sucesso{
	color: #269E97;
}

.txt-erro{
	color: #cb3d47;
}

.txt-preto{
	color: #333;
}

.strong{
	font-weight: bold;
}

/* Modal Mensagem */
.modal-dialog{
	display: flex !important;
	justify-content: center;
	align-items: center;
	height: auto;
}

.modal-content{
	border:none;	
	border-radius: 15px;
	box-shadow: 0px 0px 100px rgba(0,0,0,.1)
}

.modal-body,
.modal-header{
	font-family: 'VelaSans-Light' !important;
}

.modal-header{
	color: #FFF;
	border:none;	
	height: 30px;
}

.modal-header .modal-title{
	font-family: 'VelaSans-Bold';
}

.modal-header span{
	color: #FFF;
}

.modal-body{
	text-align: justify;
	border:none;	
	font-size: 1em;
	font-weight: bold;
	/*max-width: 300px;*/
	margin: auto;
}

.modal-body span{
	display: block;
	font-size: 3em;
	margin: auto;
	margin-bottom: 10px;
	text-align: center;
}

.modal-footer{
	padding-top: 0;
	padding-bottom: 1.5rem;
	border:none;
}

.modal-footer button{
	font-size: .9em;
	display: block;
	margin: auto;
	padding: 7px 30px;
	border-radius: 50px;
	transition: 0.2s all ease-in-out;
}

.modal-footer button:hover,
.modal-footer button:focus{
	transform: scale(1.15);
	color: #FFF;
	outline: none;
	box-shadow: none;
	/*border: none;*/
}

.modal-header .close:focus{
	outline: none;
}

.modal-header .close span{
	color: #AAA;
}


/* Modal Apresentação */
#modalApresentacaoFundo{
	background-color: #F7F7F7;
	position: fixed;
	top: 0;
	transform: translateX(-120vw);
	z-index: 9999;
	width: 100%;
	height: 100vh;
	transition: 1s transform;
	overflow-x: hidden;
	overflow-y: auto;
}


#modalApresentacaoFechar{
	color: #222;
	font-size: 2.8em;
	position: fixed;
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0px;
	top: 0px;
	cursor: pointer;
	z-index: 99;
	text-decoration: none;
}

#modalApresentacaoFechar:hover{
  -webkit-animation: girar 1s ease-in-out;
  -moz-animation: girar 1s ease-in-out;
  animation: girar 1s ease-in-out;
  opacity: 0.8;
}

#modalApresentacaoFundo.active{
	transform: translateX(0vw);
	visibility: visible;
	transition: 1s transform;
}

#modalApresentacaoFundo div.maxwidth{
	width: 100%;
	max-width: 1400px;
	margin: auto;
}

#modalApresentacaoFundo div.conteudo div.barrasuperior{
	width: 100%;
	height: 5px;
	background: rgb(213,196,146);
	background: linear-gradient(90deg, rgba(213,196,146,1) 0%, rgba(132,113,93) 100%);
  background-size: 400% 400%;
  -webkit-animation: gradient 10s ease infinite;
  -moz-animation: gradient 10s ease infinite;
  animation: gradient 10s ease infinite;
}

#modalApresentacaoFundo div.texto{
	width: 65%;
	padding: 50px;
	max-height: calc(100vh - 5px);
	overflow: auto;
}

/* -----------  ScrollBar Lateral Direita ------------*/
#modalApresentacaoFundo div.texto::-webkit-scrollbar-button{
  display: none;
}

#modalApresentacaoFundo div.texto::-webkit-scrollbar-track {
    background-color: #EEE;
    width: 5px;
}

#modalApresentacaoFundo div.texto::-webkit-scrollbar {
    width: 5px;
    background-color: #EEE;
}

#modalApresentacaoFundo div.texto::-webkit-scrollbar-thumb {
    background-color: #DDD;
    width: 5px;
    border-radius: 4px;
}


#modalApresentacaoFundo div.texto h2{
	color: #1B1D1E;
	font-size: 1.6em;
	line-height: 35px;
	max-width: 300px;
}

#modalApresentacaoFundo div.texto p{
	font-size: 1em;
	color: #4E5051;
	text-align: justify;
	margin-top: 25px;
	line-height: 30px;
	max-width: 1000px;
}


#modalApresentacaoFundo div.imagem{
	width: 35%;
	height: 100vh;
	overflow: hidden;
	margin-top: -5px;
}

#modalApresentacaoFundo div.imagem img{
	height: 100vh;
	object-fit: cover;
  -webkit-animation: imagemVideo 20s ease infinite;
  -moz-animation: imagemVideo 20s ease infinite;
  animation: imagemVideo 20s ease infinite;	
}

@media screen and (max-width: 992px){
	#modalApresentacaoFundo div.texto{
		padding: 50px 16px;
		overflow: hidden;
		height: auto;
		max-height: initial;
	}

	#modalApresentacaoFundo div.texto,
	#modalApresentacaoFundo div.imagem{
		width: 100%;
		margin: 0 auto;
		min-height: 300px;
	}

	#modalApresentacaoFundo div.imagem{
		height: auto;
	}

	#modalApresentacaoFundo div.texto p{
		font-size: 1.1em;
		margin-bottom: 0;
	}

	#modalApresentacaoFundo div.imagem img{
		height: auto;
		max-height: 400px;
		width: 100%;
	}
}

.fixed-bottom{
	z-index: 99999;
}

/* Aceitar Políticas */
div.aceitarpolitica{
	background-color: #434343;
	padding: 5px;
}

div.aceitarpolitica div.maxwidth{
	max-width: 1300px;
	padding: 0 15px;
}

div.aceitarpolitica div.maxwidth p{
	color: #FFF;
	text-align: justify;
}

div.aceitarpolitica div.maxwidth p a{
	color: #C9AC7C;
	text-decoration: underline;
}

div.aceitarpolitica div.maxwidth p a:hover{
	color: #A88D63;
}

div.aceitarpolitica div.maxwidth button{
	color: #FFF;
	cursor: pointer;
	background-color: #C9AC7C;
	border-color: #C9AC7C;
	border-radius: 40px;
	background-image: linear-gradient(to left, transparent, transparent 50%, #A88D63 50%, #A88D63);
	background-position: 100% 0;
	background-size: 200% 100%;
	transition: 0.5s;
	padding: 5px 20px;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
}

div.aceitarpolitica div.maxwidth button:hover{
	border-color: #A88D63;
	background-position: 0 0;
	transition: 0.5s;
}

div.aceitarpolitica div.maxwidth button:active:not(:disabled):not(.disabled):active,
div.aceitarpolitica div.maxwidth button:focus{
	box-shadow: none;
}


@media screen and (max-width: 450px) {
	div.aceitarpolitica{
		padding-top: 15px;
		padding-bottom: 15px;
	}
	
	div.aceitarpolitica div.maxwidth p{
		font-size: 0.8em;
	}
	
	div.aceitarpolitica div.maxwidth button{
		margin-left: auto;
		margin-top: 5px;
	}
}
/* Aceitar Políticas */

/*Nav Topo*/
/*
div.fixed-top{
	display: none;
}*/

div.fixed-top nav.menutop{
	background-image: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 70%, rgba(255,255,255,.99) 100%), url("../imgs/pattern-menu.jpg");
	background-size: cover;
	background-color: #FFF;
	flex-wrap: wrap;
	padding: 0px;
	margin-bottom: -100px;
	top: 0;
	z-index: 9;
	transition: 0.3s all ease-in-out;
}

div.fixed-top nav.menutop.active{	
	box-shadow: 0px 0px 5px 5px rgba(0,0,0,.1);
}

nav.menutop div.navmenu{
	padding: 0px 16px;
}

nav.menutop div.navbar-controls, nav.menutop a.navbar-brand, nav.menutop div.telefones{
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
}

nav.menutop div.navbar-controls, nav.menutop a.navbar-brand, nav.menutop div.telefones a{
	color: #000;
}

nav.menutop div.navbar-controls{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;	
	width: 100%;
}

nav.menutop div.navbar-controls div.menupc{
	width: 100%;
}


nav.menutop a.navbar-brand{
	display: flex;
	width: 30%;
} 

nav.menutop div.telefones{
	width: 100%;
	margin-top: 0px;
	background-color: #269E97;
	margin-left: auto;
	padding: 5px 25px;
}

nav.menutop div.telefones div.maxwidth{
	padding: 0px 8px;
}

nav.menutop div.telefones a{
	color: #FFF;
	font-size: 0.8em;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "VelaSans-Light";
	margin-left: 15px;
}

nav.menutop div.telefones a span.fa,
nav.menutop div.telefones a span.fab{
	margin-right: 5px;
	font-size: 1.1em;
}

nav.menutop div.navbar-toggler{
	border:0;
	outline:none;
	font-size: 1.4em;
	color: #434343;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

nav.menutop div.navbar-toggler small{
	font-size: 0.7em;
	margin-left: 5px;
}


nav.menutop div.navbar-toggler.active{
	color: #434343;
  	animation: navbar-control .8s;
}

nav.menutop .navbar-nav{
	justify-content: flex-end;
	align-items: center;
}

nav.menutop li.nav-item a{
	font-family: "VelaSans-SemiBold";
	cursor: pointer;
	font-size: .85em;
	color: #434343;
	padding-left: 8px;
	border-bottom: 3px solid transparent;
	padding-right: 8px;
	margin-top: 4px;
	/*line-height: 30px;*/
	text-transform: uppercase;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
	z-index: 5;
}

nav.menutop li.nav-item a:hover{
	color: #666;
	/*border-bottom: 3px solid #D89A09;*/
}


nav.menutop li.nav-item a.btn-orcamentogratis{
	border: none;	
	font-family: "VelaSans-Regular";
	background-color: #C9AC7C;
	line-height: 30px;
	color: #FFF;
	margin-right: 0;
	margin-left: 15px;
	border-radius: 30px;
	padding: 5px 15px;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
	transition: all 0.2s ease-in-out;
}

nav.menutop li.nav-item a.btn-orcamentogratis:hover{
	background-color: #A88D63;
	color: #FFF;
	/*transform: scale(1.05);*/
}

div.fixed-top nav.menutop figure figcaption{
	display: none;
}

div.fixed-top nav.menutop figure{
	display: flex;
	align-items: center;
	margin: 0px;
	padding: 0;
	height: 100px;
	border-radius: 0px 0px 20px 20px;
	/*background-color: #434343;*/
	margin-top: -2px;
}

div.fixed-top nav.menutop figure img{
	width: 300px;
	padding: 20px 0px;
	transition: 0.5s ease-in-out;
}

@media screen and (max-width: 992px){
	div.fixed-top nav.menutop figure{
		width: 100%;
		height: auto;
	}

	div.fixed-top nav.menutop figure img{
		display: block;
		width: 100%;
		max-width: 200px;
	}
}

nav.menutop .fecharmenu{
	position: relative;
	right: -100px;
	transition: 0.2s;
}


/* Menu Celular */

div.fundomenu{
	visibility: hidden;
	background-color: transparent;
	top: 0;
	padding-top: 75px;
	width: 100vw;
	height: 105vh;
  position: fixed;
	z-index: 999;
	transition: 1.5s visibility, background-color 0.5s;
}

div.fundomenu.active{
	visibility: visible;
	background-image: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.95) 70%, rgba(255,255,255,.99) 100%), url("../imgs/pattern-menu.jpg");
	background-color: #F2EEE7;
	background-position: top;
	background-size: 100%;
	transition: 0.5s visibility, background-color 1.5s;
}

div.fundomenu nav{
	width: 100%;
	height: 102vh;
	position: absolute;
	right:-100vw;
    /*top: 100px;*/
    /*padding: 50px 16px;*/
    padding-top: 10px;
	overflow-x: hidden;
	overflow-y: auto;
	transition: all 0.5s;
}

div.fundomenu nav div.menucelulartotal{
	max-width: 1300px;
	margin: auto;
}

div.fundomenu.active nav{
	right:0px;	
	transition: all 0.5s;
}

div.fundomenu nav hr{
	border:0.5px solid #FFF;
	background: #FFF;
	margin-bottom: 0px;
	width: 100%;
}

div.fundomenu nav li.nav-item a{
	font-size: 1.3em;
	cursor: pointer;
	color: #434343;
	/*padding-left: 8px;*/
	padding-right: 8px;
	padding-bottom: 2px;
	text-transform: uppercase;
	margin-top: 5px;
	line-height: 30px;
	transition: all 0.5s;
}

div.fundomenu nav li.nav-item a span{
	margin-right: 5px;
	margin-left: 5px;
}


div.fundomenu nav li.nav-item.socialicones{
	font-size: 1.4em;
	margin-top: 15px;
	position: absolute;
	bottom: 200px;
	width: 100%;
	max-width: 1300px;
}

div.fundomenu nav li.nav-item.socialicones a{
	border-right: 2px solid #AAA;
	padding-top: 3px;
	padding-left: 8px;
	font-size: 1.3em;
}

div.fundomenu nav li.nav-item.socialicones a:last-child{
	border-right: none;
}

div.fundomenu nav li.nav-item.socialicones .fa-whatsapp{
	/*font-size: 1.2em;*/
	/*margin-top: -5px;
	margin-bottom: 5px;*/
}

@media screen and (max-width: 992px){
	nav.menutop{
		z-index: 1000 !important;
	    display: block;
	    position: absolute;
	    width: 100%;
	}

	nav.menutop div.navmenu{
		/*display: block !important;*/
		width: 100%;
	}

	nav.menutop a.navbar-brand,
	nav.menutop div.navbar-controls{
		width: 100%;
		align-items: flex-end;
	}
	
	nav.menutop div.navbar-controls .navbar-toggler{
		display: flex;
		color: #434343;
	}
	
	nav.menutop div.menupc{
		display: none;
	}
	
	nav.menutop div.telefones{
		flex-direction: row;
		display: none;
	}
	
	nav.menutop div.telefones a span.texto{
		display: none;
	}
	
	nav.menutop div.telefones a span.fa,
	nav.menutop div.telefones a span.fab{
		font-size: 1.4em;
	}
	
	nav.menutop div.telefones a span.fa{
		margin-right: 15px;
		font-size: 1.2em;
	}
	
	div.fundomenu nav div.menucelulartotal{
		padding: .5rem 1rem;
	}
	
	div.fundomenu nav li.nav-item a{
		cursor: pointer;
		font-size: 1em;
	}
	
	div.fundomenu nav li.nav-item.socialicones{
		bottom: 200px;
		padding: .5rem 1rem;
	}
}

/*Carousel PC*/
header{
	overflow: hidden;
	margin-top: 120px;
}

div.carouselconteudo{
	overflow: hidden;
}

header .bannertotal{
	overflow: hidden;
	display: block;
	flex-wrap: wrap-reverse;
	justify-content: center;
	align-items: center;
	/*margin-top: 100px;*/
}

header .bannerrecorte{
	position: relative;
	margin: auto;
	display: block;
	height: 40px;
	object-fit: cover;
	margin-top: -45px;
	background-image: url("../imgs/banner_recorte.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 2;
	opacity: 0.99;
}

header .bannerrecorte a,
header .bannerrecorte span{
	max-width: 50px;
	display: block;
	margin: auto;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	transition: 0.2s all ease-in-out;
}

header .bannerrecorte span{
	background-color: #269E97;
	max-width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	padding: 16px 15px 14px 15px;
	position: relative;
}

header .bannerrecorte a:hover span{
	transform: scale(1.2);
}

header .bannertotal.maxwidth{
	max-width: 100%;
	width: 100%;
	height: 500px;
	margin-bottom: -500px;
}

header video{
	width: 100%;
	height: 100%;
	height: 450px;
	object-fit: cover;
	z-index: -1;
}

header .bannertotal .bannerescrito{
	width: 100%;
	color: #FFF;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	z-index: 1;
	height: 500px;
	background-image: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.3) 100%);
	background-size: 100%;
}

header .bannertotal .bannerescrito h1{
	font-family: "VelaSans-Bold";
	text-align: left;
	font-size: 2.4em;
	line-height: 35px;
	margin-bottom: 20px;
	color: #FFF;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
}

header .bannertotal .bannerescrito h1 strong{
	font-family: "VelaSans-Bold";
	color: #C9AC7C;
}

header .bannertotal .bannerescrito h1 i{
	font-family: "VelaSans-Bold";
}

header .bannertotal .bannerescrito h1 span{
	width: 100%;
	display: block;
	font-size: .8em;
	font-family: "VelaSans-Light";
	color: #FFF;
	text-align: center;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
	/*background-color: #269E97;*/
}

header .bannertotal .bannerescrito p{
	font-family: "VelaSans-Light";
	font-size: 1.2em;
	color: #FFF;
	line-height: 25px;
	margin-bottom: 20px;
}

header .bannertotal .bannerescrito a{
	width: 100%;
	max-width: 300px;
	text-decoration: none;
}

header .bannertotal .bannerescrito button{
	font-family: "VelaSans-SemiBold";
	width: 100%;
	max-width: 235px;
	color: #FFF;
	border-radius: 50px;
	padding: 10px 15px;
	font-size: .9em;
	border-color: transparent;
	outline: none;
	box-shadow: 0px 0px 5px rgba(0,0,0,.1);
	display: block;
	margin: auto;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
	background-color: #269E97;
	transition: all 0.2s ease-in-out;
	letter-spacing: 0.15em;
}
	
header .bannertotal .bannerescrito button:hover{
	background-color: #056e68;
	color: #FFF;
	/*transform: scale(1.05);*/
}

/*Carousel Tablet*/
@media screen and (max-width: 992px){
	header{
		margin-top: 75px;
	}

	header .bannerrecorte{
		background-size: 992px;
		background-position: center bottom;
	}

	header .bannertotal{
		background-image: none;
		background-color: #2F3929;
	}

	header .bannertotal .bannerescrito{
		width: 100%;
		margin-top: 25px;
		padding: 0px 0px 30px 0px;
	}

	header .bannertotal .imagem{
		height: auto;
		width: 100%;
		padding: 155px 0px 0px 0px;
	}

	header .bannertotal .imagem img{
		height: auto !important;
		margin: auto !important;
		width: 100% !important;
		height: auto !important;
		object-fit: contain;
		max-width: 300px;
		position: initial;
		display: block;
	}

	header .bannertotal .imagem img:last-child{
		display: none;
	}

	header .bannertotal .bannerescrito h1{
		font-size: 2em;
		text-align: center;
		width: 100%;
		margin: auto;
		margin-top: 0px;
		margin-bottom: 15px;
		line-height: 40px;
	}

	header .bannertotal .bannerescrito h1 span{
		font-size: .5em;
		line-height: 40px;
		margin-top: 5px;
		margin-bottom: 15px;
	}

	header .bannertotal .bannerescrito p{
		font-size: 1em;
		text-align: center;
		line-height: 20px;
	}

	header .bannertotal .bannerescrito button{
		padding: 10px 0px;
		margin-top: 20px;
		margin-bottom: 10px;
		font-size: 0.85em;
		max-width: 200px;
		text-shadow: none;
		display: block;
		margin: auto;
	}
}

@media screen and (max-width: 500px){
	header .bannerrecorte{
		background-size: 500px;
		background-position: center bottom;
	}
}


/* Quem Somos */
section.quemsomos{
	padding: 0;
	overflow: hidden;
	display: block;
	margin: auto;
	background-image: linear-gradient(90deg, rgba(242,238,231,.99) 0%, rgba(242,238,231,.95) 70%, rgba(242,238,231,.95) 100%), url("../imgs/pattern-menu.jpg");
	background-color: #F2EEE7;
}

section.quemsomos div.maxwidth{
	max-width: 1600px;
	padding: 0;
}

section.quemsomos div.titulo{
	/*max-width: 500px;*/
	padding: 50px;
	width: 50%;
}

section.quemsomos div.titulo img{
	max-width: 30px;
	position: relative;
	display: block;
} 

section.quemsomos div.titulo .square-left{
	/*margin-bottom: -10px;*/
	/*margin-right: auto;*/
	margin-right: 10px;
	height: auto;
	max-width: 50px;
}

section.quemsomos div.titulo .square-right{
	margin-top: -10px;
	margin-left: auto;
}

section.quemsomos div.titulo h2{
	line-height: 30px;
	color: #434343;
	font-family: "VelaSans-SemiBold";
	font-size: 1.4em;
	margin-bottom: 0;
	padding: 0px 20px;
	margin-top: 30px;
	margin-bottom: 10px;
	padding-left: 0;
	letter-spacing: .15em;
}

section.quemsomos div.titulo h2:first-child{
	margin:0;
}

section.quemsomos div.titulo h3{
  font-family: 'VelaSans-Light';
	line-height: 30px;
	width: 100%;
	max-width: 950px;
	font-size: .9em;
	color: #A88D63;
	padding: 0px;
	letter-spacing: .25em;
}

section.quemsomos div.titulo p{
  font-family: 'VelaSans-Light';
	margin: 0 auto;
	display: block;
	font-size: 1em;
	color: #5D5D5D;
	margin-top: 0px;
	line-height: 30px;
	text-align: justify;
}


section.quemsomos div.titulo p.descricaonome{
	margin-bottom: 35px;
	color: #A88D63 !important;
	letter-spacing: .2em;
	line-height: 25px;
	margin-top: 10px;
	text-align: left;
}

section.quemsomos div.titulo p span{
	letter-spacing: .07em;
	color: #555;
}

section.quemsomos div.imagemquemsomos{
	width: 50%;
	position: relative;
	height: 100%;
}

section.quemsomos div.imagemquemsomos img{
	width: 100%;
	object-fit: cover;
	margin-left: auto;
}

section.quemsomos div.itensquemsomos{
	width: 100%;
	max-width: 650px;
	padding: 0px 20px;
}

section.quemsomos div.itensquemsomos div.itemquemsomos{
	width: 100%;
	max-width: 300px;
	padding: 20px;
	transition: transform 0.25s ease-in-out;
}

section.quemsomos div.itensquemsomos img{
	max-width: 30px;
	position: relative;
	display: block;
	object-fit: contain;
}

section.quemsomos div.itensquemsomos .square-left{
	margin-top: -10px;
	margin-right: auto;
	align-self: flex-start;
}

section.quemsomos div.itensquemsomos .square-right{
	margin-bottom: -25px;
	margin-left: auto;
	align-self: flex-end;
}

section.quemsomos div.itensquemsomos div.itemquemsomos div.texto{
	max-width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

section.quemsomos div.itensquemsomos div.itemquemsomos div.texto span{
	font-size: 2.5em;
	color: #269E97;
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.quemsomos div.itensquemsomos div.itemquemsomos div.texto h4{
	color: #000;
	font-weight: bold;
	font-size: 1em;
	margin: 0;
	margin-top: 10px;
	text-align: center;
}



@media screen and (max-width: 992px){
	section.quemsomos{
		background-image: linear-gradient(90deg, rgba(242,238,231,.99) 0%, rgba(242,238,231,.97) 70%, rgba(242,238,231,.99) 100%), url("../imgs/pattern-menu.jpg");
	}

	section.quemsomos div.maxwidth{
		flex-direction: column;
	}

	section.quemsomos div.titulo{
		width: 100%;
		margin: auto;
		padding: 50px 16px;
	}
	
	section.quemsomos div.titulo h2{
		font-size: 1.2em;
		padding: 0;
	}

	section.quemsomos div.titulo p.descricaonome{
		font-size: .95em;
		letter-spacing: .05em;
	}

	section.quemsomos div.titulo p span{
		font-weight: normal;
		font-family: "VelaSans-Light";
		color: #777;
	}
	
	section.quemsomos div.titulo h3{
		font-size: .95em;
		letter-spacing: .05em;
	}

	section.quemsomos div.imagemquemsomos{
		width: 100%;
	}

	section.quemsomos div.imagemquemsomos img{
		object-position: top;
		object-fit: cover;
		height: 500px;
		width: 100%;
	}

	section.quemsomos div.itensquemsomos{
		justify-content: center !important;
		margin-top: 20px;
		display: block !important;
	}

	section.quemsomos div.itensquemsomos div.itemquemsomos{
		width: 100%;
		flex-direction: column;
		border-bottom: 1px solid #F5F5F5;
		margin: auto;
		margin-bottom: 20px;
		padding-bottom: 70px;
	}

	section.quemsomos div.itensquemsomos div.itemquemsomos:last-child{
		border-bottom: 0px;
		padding-bottom: 20px;
		margin-bottom: 0px;
	}

	section.quemsomos div.itensquemsomos div.itemquemsomos span{
		margin-bottom: 20px;
	}

	section.quemsomos div.itensquemsomos div.itemquemsomos div.texto h4,
	section.quemsomos div.itensquemsomos div.itemquemsomos div.texto p{
		text-align: center;
	}

	section.quemsomos div.economize{
		justify-content: center;
		background-color: #000;
		background-image: none;
	}

	section.quemsomos div.economize div.texto{
		padding: 50px 5%;
	}

	section.quemsomos div.economize div.texto div.titulo{
		padding: 0px;
		margin-bottom: 20px;
		max-width: 500px;
	}
}


/* Parceiro */
section.parceiro{
	padding: 15px 16px;
	display: block;
	margin: auto;
	border: #EEE;
	background-color: #FFF;
}

section.parceiro div.maxwidth{
	padding: 0;
	max-width: 1600px;
	border-radius: 10px;
	overflow: hidden;
}

section.parceiro div.titulo{
	width: 100%;
	max-width: 600px;
	margin: auto;
	margin-bottom: 20px;
}

section.parceiro div.titulo img{
	max-width: 30px;
	position: relative;
	display: block;
} 

section.parceiro div.titulo .square-left{
	margin-bottom: -10px;
	margin-right: auto;
}
section.parceiro div.titulo .square-right{
	margin-top: -10px;
	margin-left: auto;
}

section.parceiro div.titulo h2{
	text-align: center;
	line-height: 30px;
	color: #434343;
	font-family: "VelaSans-Bold";
	font-size: 1.8em;
	margin-bottom: 0;
	padding: 0px 20px;
}

section.parceiro div.titulo hr{
	width: 100%;
	max-width: 100px;
	height: 3px;
	background-color: #269E97;
	margin-top: .5rem;
	border: none;
}

section.parceiro div.titulo p{
	line-height: 20px;
	width: 100%;
	max-width: 950px;
	text-align: center;
	font-size: 1.4em;
	margin: auto;
	color: #5D5D5D;
  font-family: 'VelaSans-Regular';
	padding: 0px 20px;
}


section.parceiro div.parceirotodos{
	width: 100%;
	/*max-width: 1200px;*/
	display: block;
	margin: auto;
}

section.parceiro div.parceirotodos div.item{
	padding: 10px;
}

section.parceiro div.parceirotodos div.item img{
	border-radius: 5px;
}

section.parceiro div.parceirotodos button{
	font-size: 1em;
	font-weight: bold;
	display: block;
	margin: auto;
	color: #000;
	border: 2px solid #000;
	width: 100%;
	max-width: 200px;
	margin-top: 15px;
	padding: 5px 10px;
	border-radius: 50px;
	transition: 0.3s all ease-in-out;
}


section.parceiro div.parceirotodos a:hover button{
	border-color: #000;
	background-color: #000;
	color: #FFF;
}

section.parceiro a.btn{
	font-size: 1em;
	font-weight: bold;
	display: block;
	margin: auto;
	background-color: #000;
	color: #FFF;
	max-width: 200px;
	padding: 5px 10px;
	border-radius: 50px;
	/*text-shadow: 0px 0px 3px #000;*/
}

section.parceiro a.btn:hover{
	color: #FFF;
}

@media screen and (max-width: 992px){
	section.parceiro div.maxwidth{
		flex-direction: column;
		padding: 0;
	}

	section.parceiro div.titulo{
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}

	section.parceiro div.titulo h2{
		max-width: 500px;
		font-size: 1.4em;
		text-align: center;
		margin: auto;
		padding: 0;
	}

	section.parceiro div.titulo p, section.parceiro div.titulo hr{
		text-align: center;
		margin: auto;
	}

	section.parceiro div.titulo p{
		margin-top: 0px;
		line-height: 25px;
		font-size: 1.1em;
		padding: 5px 0px;
	}
	
	section.parceiro div.parceirotodos h3,
	section.parceiro div.parceirotodos button{
		font-size: 0.9em;
	}
}


/* Atividades */
section.atividade{
	padding: 50px 16px;
	background-color: #FFF;
}

section.atividade div.maxwidth{
	max-width: 1600px;
}

section.atividade div.titulo{
	max-width: 350px;
	margin: auto;
}

section.atividade div.titulo img{
	max-width: 30px;
	position: relative;
	display: block;
} 

section.atividade div.titulo .square-left{
	margin-bottom: -10px;
	margin-right: auto;
}
section.atividade div.titulo .square-right{
	margin-top: -10px;
	margin-left: auto;
}

section.atividade div.titulo h2{
	line-height: 30px;
	color: #434343;
	font-family: "VelaSans-Bold";
	text-align: center;
	font-size: 1.8em;
	margin-bottom: 0;
	display: block;
	margin: auto;
	padding: 0px 20px;
}

section.atividade div.titulo h3{
	line-height: 20px;
	width: 100%;
	max-width: 950px;
	text-align: center;
	font-size: 1.4em;
	margin: auto;
	color: #5D5D5D;
  font-family: 'VelaSans-Regular';
	padding: 5px 20px;
}

section.atividade div.titulo hr{
	width: 100%;
	max-width: 200px;
	height: 3px;
	background-color: #269E97;
	margin-top: .5rem;
	border: none;
}

section.atividade div.titulo a{
	text-decoration: none;
	margin-top: 10px;
}

section.atividade div.titulo button{
	font-weight: bold;
	width: 100%;
	max-width: 235px;
	color: #FFF;
	border-radius: 50px;
	padding: 10px 15px;
	font-size: 1em;
	border-color: transparent;
	outline: none;
	box-shadow: 0px 0px 5px rgba(0,0,0,.1);
	display: block;
	margin: auto;
	margin-bottom: 25px;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
	background-color: #269E97;
	transition: all 0.2s ease-in-out;
}

section.atividade div.atividadetodos{
	margin: 25px auto;
	width: 100%;
	max-width: 850px;
}

section.atividade div.atividadetodos div.item{
	margin: 15px;
}

section.atividade div.atividadetodos{
	margin:  auto;
}

section.atividade div.atividadetodos a{
	/*background-color: #000;*/
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 190px;
	height: 190px;
	border-radius: 100%;
	overflow: hidden;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
	transition: 0.3s all ease-in-out;
}

section.atividade div.atividadetodos a img{
	width: 100%;
	object-fit: cover;
	transition: 0.3s all ease-in-out;
}

section.atividade div.atividadetodos a:hover{
	transform: scale(1.05);
	box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
}

section.atividade div.atividadetodos div.texto{
	text-align: center;
	width: 100%;
	padding: 15px;
	/*background-color: #F5F5F5;*/
	z-index: 1;
}

section.atividade div.atividadetodos div.texto h3{
	font-family: "VelaSans-SemiBold";
	margin: 0;
	font-weight: bold;
	font-size: 1.2em;
	color: #FFF;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
}

section.atividade div.atividadetodos div.texto h3 color{
	font-family: "VelaSans-Bold";
	color: #269E97;
}

section.atividade div.atividadetodos div.texto p{
	color: #000;
	text-align: justify;
	min-height: 70px;
}

section.atividade div.atividadetodos button{
	font-size: 1em;
	font-weight: bold;
	display: block;
	margin: auto;
	color: #000;
	border: 2px solid #000;
	width: 100%;
	max-width: 200px;
	margin-top: 15px;
	padding: 5px 10px;
	border-radius: 50px;
	transition: 0.3s all ease-in-out;
}


section.atividade div.atividadetodos a:hover button{
	border-color: #000;
	background-color: #000;
	color: #FFF;
}

section.atividade a.btn{
	font-size: 1em;
	font-weight: bold;
	display: block;
	margin: auto;
	background-color: #000;
	color: #FFF;
	max-width: 200px;
	padding: 5px 10px;
	border-radius: 50px;
	/*text-shadow: 0px 0px 3px #000;*/
}

section.atividade a.btn:hover{
	color: #FFF;
}

@media screen and (max-width: 992px){
	section.atividade div.titulo h2{
		max-width: 500px;
		font-size: 1.4em;
		margin-bottom: 0px;
	}

	section.atividade div.titulo h3{
		max-width: 400px;
		font-size: 1.1em;
	}

	section.atividade div.atividade{
		flex-direction: column;
	}

	section.atividade div.atividadetodos a{
		max-width: 300px;
		display: block;
		margin: auto;
	}
	
	section.atividade div.atividadetodos button{
		font-size: 0.9em;
	}

	section.atividade a.btn{
		font-size: .9em;
	}
}
/* Produtos */
section.produto{
	padding: 50px 16px;
	background-color: #FFF;
}

section.produto div.maxwidth{
	max-width: 1600px;
}

section.produto div.titulo{
	max-width: 600px;
	margin: auto;
}

section.produto div.titulo img{
	max-width: 30px;
	position: relative;
	display: block;
} 

section.produto div.titulo .square-left{
	margin-bottom: -10px;
	margin-right: auto;
}
section.produto div.titulo .square-right{
	margin-top: -10px;
	margin-left: auto;
}


section.produto div.titulo h2{
	text-align: center;
	line-height: 30px;
	color: #434343;
	font-family: "VelaSans-Light";
	font-size: .85em;
	margin-bottom: 15px;
	padding: 0px 20px;
	line-height: 25px;
	letter-spacing: .15em;
}

section.produto div.titulo h2 strong{
	color: #A58C69;
	font-size: 1.7em;
	display: block;
	font-family: "VelaSans-Bold";
	letter-spacing: .1em;
}

section.produto div.titulo hr{
	width: 100%;
	max-width: 100px;
	height: 3px;
	background-color: #269E97;
	margin-top: .5rem;
	border: none;
}

section.produto div.titulo p{
	line-height: 25px;
	width: 100%;
	max-width: 950px;
	text-align: center;
	font-size: 1em;
	margin: auto;
	color: #434343;
  font-family: 'VelaSans-Light';
	padding: 0px 20px;
	margin-bottom: 25px;
}

section.produto div.titulo a{
	text-decoration: none;
	margin-top: 10px;
}

section.produto div.titulo button{
	font-weight: bold;
	width: 100%;
	max-width: 235px;
	color: #FFF;
	border-radius: 50px;
	padding: 10px 15px;
	font-size: 1em;
	border-color: transparent;
	outline: none;
	box-shadow: 0px 0px 5px rgba(0,0,0,.1);
	display: block;
	margin: auto;
	margin-bottom: 25px;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
	background-color: #269E97;
	transition: all 0.2s ease-in-out;
}

section.produto div.produtotodos{
	margin: 25px auto;
	width: 100%;
}

section.produto div.produtotodos div.item{
	margin: 25px 15px;
}

section.produto div.produtotodos{
	margin:  auto;
}

section.produto div.produtotodos a{
	/*background-color: #000;*/
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 300px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	background-color: #434343;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
	transition: 0.3s all ease-in-out;
}

section.produto div.produtotodos a img{
	width: 100%;
	object-fit: cover;
}

section.produto div.produtotodos a:hover{
	transition: 0.3s all ease-in-out;
	/*background-image: none !important;*/
	transform: scale(1.05);
	box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
}

section.produto div.produtotodos div.texto{
	width: 100%;
	padding: 15px;
	/*background-color: #F5F5F5;*/
	z-index: 1;
}

section.produto div.produtotodos div.texto h3{
	font-family: "VelaSans-SemiBold";
	margin: 0;
	font-weight: bold;
	font-size: 1.2em;
	color: #FFF;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
}


section.produto div.produtotodos div.texto h4{
	color: #FFF;
	background-color: #915CCE; 
	font-size: .65em;
	padding: 8px 5px;
	width: auto;
	display: block;
	margin-right: auto;
	text-align: center;
	max-width: 120px;
	margin-bottom: 15px;
	border-radius: 100px;
}

section.produto div.produtotodos div.texto p{
	color: #FFF;
	line-height: 25px;
	font-size: .9em;
	min-height: 100px;
	margin-top: 10px;
	opacity: 0;
	transition: 0.3s all ease-in-out;
}

section.produto div.produtotodos button{
	opacity: 0;
	font-size: .75em;
	display: block;
	margin: auto;
	color: #FFF;
	border: 1px solid #FFF;
	width: 100%;
	max-width: 150px;
	margin-top: 15px;
	padding: 7px 10px;
	border-radius: 50px;
	letter-spacing: .15em;
	transition: 0.3s all ease-in-out;
	box-shadow: none;
}

section.produto div.produtotodos a:hover div.texto p{
	opacity: .8;
}

section.produto div.produtotodos a:hover button{
	opacity: 1;
	border-color: #269E97;
	background-color: #269E97;
	color: #FFF;
}

section.produto a.btn{
	font-size: 1em;
	font-weight: bold;
	display: block;
	margin: auto;
	background-color: #000;
	color: #FFF;
	max-width: 200px;
	padding: 5px 10px;
	border-radius: 50px;
	/*text-shadow: 0px 0px 3px #000;*/
}

section.produto a.btn:hover{
	color: #FFF;
}

@media screen and (max-width: 992px){
	section.produto div.titulo{
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}

	section.produto div.titulo h2{
		max-width: 500px;
		font-size: .9em;
		text-align: center;
		margin: auto;
		margin-bottom: 15px;
		padding: 0;
	}

	section.produto div.titulo p, section.produto div.titulo hr{
		text-align: center;
		margin: auto;
	}

	section.produto div.titulo p{
		margin-top: 0px;
		line-height: 30px;
		font-size: 1em;
		padding: 5px 0px;
	}

	section.produto div.produto{
		flex-direction: column;
	}

	section.produto div.produtotodos a{
		max-width: 300px;
		display: block;
		margin: auto;
	}

	section.produto div.produtotodos div.texto p,
	section.produto div.produtotodos button{
		opacity: 1;
	}
	
	section.produto div.produtotodos button{
		font-size: 0.75em;
		letter-spacing: .1em;
	}

	section.produto a.btn{
		font-size: .9em;
	}
}

/* Introdução */
section.introducao{
	padding: 50px 16px;
	background-color: #FBFBFC;
}

section.introducao h2{
	font-size: 1.3em;
	max-width: 400px;
	margin: auto;
	text-align: center;
	color: #434343;
	line-height: 27px;
}

section.introducao h2 strong{
	font-weight: bold;
	color: #A58C69;
	letter-spacing: .1em;
}

section.introducao p{
	margin: auto;
	margin-top: 25px;
	margin-bottom: 25px;
	max-width: 600px;
	text-align: justify;
	color: #434343;
	line-height: 27px;
	font-family: "VelaSans-Light";
}

section.introducao a{
	display: block;
	text-decoration: none;
	text-align: center;
	font-family: "VelaSans-SemiBold";
	width: 100%;
	max-width: 235px;
	color: #FFF;
	border-radius: 50px;
	padding: 10px 15px;
	font-size: .9em;
	border-color: transparent;
	outline: none;
	box-shadow: 0px 0px 5px rgba(0,0,0,.1);
	display: block;
	margin: auto;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
	background-color: #269E97;
	transition: all 0.2s ease-in-out;
	letter-spacing: 0.15em;
}
	
section.introducao a:hover{
	background-color: #056e68;
	color: #FFF;
}

@media screen and (max-width: 992px){
	section.introducao h2{
		font-size: 1.1em;
	}
}


/* Galeria */
section.galeria{
	padding: 50px 16px;
	display: block;
	margin: auto;
	background-color: #FBFBFC;
}

section.galeria div.maxwidth{
	max-width: 1600px;
	/*background-color: #F5F5F5;*/
	border-radius: 10px;
	overflow: hidden;
}

section.galeria div.titulo{
	width: 100%;
	max-width: 600px;
	margin: auto;
	margin-bottom: 20px;
}

section.galeria div.titulo img{
	max-width: 30px;
	position: relative;
	display: block;
} 

section.galeria div.titulo .square-left{
	margin-bottom: -10px;
	margin-right: auto;
}
section.galeria div.titulo .square-right{
	margin-top: -10px;
	margin-left: auto;
}

section.galeria div.titulo h2{
	text-align: center;
	line-height: 30px;
	color: #434343;
	font-family: "VelaSans-Light";
	font-size: .85em;
	margin-bottom: 15px;
	padding: 0px 20px;
	line-height: 25px;
	letter-spacing: .15em;
}

section.galeria div.titulo h2 strong{
	color: #A58C69;
	font-size: 1.7em;
	display: block;
	font-family: "VelaSans-Bold";
	letter-spacing: .1em;
}

section.galeria div.titulo hr{
	width: 100%;
	max-width: 100px;
	height: 3px;
	background-color: #269E97;
	margin-top: .5rem;
	border: none;
}

section.galeria div.titulo p{
	line-height: 25px;
	width: 100%;
	max-width: 950px;
	text-align: center;
	font-size: 1em;
	margin: auto;
	color: #434343;
  font-family: 'VelaSans-Light';
	padding: 0px 20px;
	margin-bottom: 25px;
}


section.galeria div.galeriatodos{
	width: 100%;
	/*max-width: 1200px;*/
	display: block;
	margin: auto;
}

section.galeria div.galeriatodos div.item{
	padding: 10px;
}

section.galeria div.galeriatodos div.item img{
	border-radius: 5px;
}

section.galeria div.galeriatodos button{
	font-size: 1em;
	font-weight: bold;
	display: block;
	margin: auto;
	color: #000;
	border: 2px solid #000;
	width: 100%;
	max-width: 200px;
	margin-top: 15px;
	padding: 5px 10px;
	border-radius: 50px;
	transition: 0.3s all ease-in-out;
}


section.galeria div.galeriatodos a:hover button{
	border-color: #000;
	background-color: #000;
	color: #FFF;
}

section.galeria a.btn{
	font-size: 1em;
	font-weight: bold;
	display: block;
	margin: auto;
	background-color: #000;
	color: #FFF;
	max-width: 200px;
	padding: 5px 10px;
	border-radius: 50px;
	/*text-shadow: 0px 0px 3px #000;*/
}

section.galeria a.btn:hover{
	color: #FFF;
}

@media screen and (max-width: 992px){
	section.galeria div.maxwidth{
		flex-direction: column;
		padding: 0;
	}

	section.galeria div.titulo{
		width: 100%;
		max-width: 100%;
		margin-bottom: 20px;
	}

	section.galeria div.titulo h2{
		max-width: 500px;
		font-size: .9em;
		text-align: center;
		margin: auto;
		margin-bottom: 15px;
		padding: 0;
	}

	section.galeria div.titulo p, section.galeria div.titulo hr{
		text-align: center;
		margin: auto;
	}

	section.galeria div.titulo p{
		margin-top: 0px;
		line-height: 30px;
		font-size: 1em;
		padding: 5px 0px;
	}
	
	section.galeria div.galeriatodos h3,
	section.galeria div.galeriatodos button{
		font-size: 0.9em;
	}
}


/* Atividades */
section.atividades{
	/*border-top: #EEE 1px solid;*/
	/*border-bottom: #EEE 1px solid;*/
	background-image: url("../imgs/world_dots.png");
	background-size: cover;
	background-position: top;
	background-color: #F7F7F7;
	padding: 50px 25px;
}

section.atividades div.titulo{
	max-width: 500px;
	margin: auto;
}

section.atividades div.titulo img{
	max-width: 30px;
	position: relative;
	display: block;
} 

section.atividades div.titulo .square-left{
	margin-bottom: -10px;
	margin-right: auto;
}
section.atividades div.titulo .square-right{
	margin-top: -10px;
	margin-left: auto;
}

section.atividades div.titulo h2{
	text-align: center;
	line-height: 30px;
	color: #434343;
	font-family: "VelaSans-Light";
	font-size: .85em;
	margin-bottom: 15px;
	padding: 0px 20px;
	line-height: 25px;
	letter-spacing: .15em;
}

section.atividades div.titulo h2 strong{
	color: #A58C69;
	font-size: 1.7em;
	display: block;
	font-family: "VelaSans-Bold";
	letter-spacing: .1em;
}

section.atividades div.titulo hr{
	width: 100%;
	max-width: 100px;
	height: 3px;
	background-color: #269E97;
	margin-top: .5rem;
	border: none;
}

section.atividades div.titulo p{
	line-height: 25px;
	width: 100%;
	max-width: 950px;
	text-align: center;
	font-size: 1em;
	margin: auto;
	color: #434343;
  font-family: 'VelaSans-Light';
	padding: 0px 20px;
}

section.atividades h5{
	font-size: 1.2em;
	text-align: center;
	width: 100%;
	margin: auto;
	margin-top: 45px;
	margin-bottom: 0px;
	color: #4E5051;
}

section.atividades div.atividadelista{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

section.atividades div.atividadelista a.item{
	position: relative;
	color: #4E5051;
	text-decoration: none;
	margin: 35px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 285px;
	height: 200px;
	background-color: #FFF;
	padding: 220px 40px 70px;
	border-radius: 10px;
	box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.1);
	transition: 0.3s all ease-in-out;
}

section.atividades div.atividadelista a.item img{
	/*visibility: hidden;*/
	width: inherit;
	position: absolute;
	top: 120px;
	height: 200px;
	object-fit: cover;
	object-position: top;
	border-radius: 10px 10px 0px 0px;
	opacity: 1;
	padding: 0px 0px 15px 0px;
	transition: 0.3s opacity, 2s margin-top;
	margin-left: -40px;
	margin-top: -130px;
}

section.atividades div.atividadelista a.item span{
	color: #EBEBEB;
	font-size: 2.3em;
	margin-bottom: 25px;
	transition: 0.1s all ease-in-out;
}

section.atividades div.atividadelista a.item span.icone{
	margin-bottom: 15px;
}

section.atividades div.atividadelista a.item span.icone svg{
	width: 70px;
	height: 70px;
	margin-top: -30px;
	margin-bottom: 0;
	transition: 0.1s all ease-in-out;
	opacity: .8;
}

section.atividades div.atividadelista a.item h4{
	font-size: 1.1em;
	min-height: 30px;
	line-height: 25px;
	max-width: 150px;
	margin-bottom: 12px;
}

section.atividades div.atividadelista a.item div.botaoseta{
	position: absolute;
	border: 0;
	padding: 0;
	width: 35px;
	height: 35px;
	border-radius: 100%;
	margin-bottom: -140px;
	background-color: #C9AC7C;
	transition: 0.1s all ease-in-out;
}

section.atividades div.atividadelista a.item div.botaoseta i{
	font-size: 1em;
	color: #FFF;
}

section.atividades div.atividadelista a.item:hover{
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
}

section.atividades div.atividadelista a.item:hover span{
	opacity: 0;
}

section.atividades div.atividadelista a.item:hover div.botaoseta:hover{
	transform: rotate(90deg);
}


@media screen and (max-width: 992px){
	section.atividades{
		padding-bottom: 0;
	}

	section.atividades div.atividadelista a.item{
		width: 100%;
		max-width: 250px;
		height: 300px;
	}

	section.atividades div.atividadelista a.item img{
		object-position: center;
		width: 250px;
		display: block;
	}

	section.atividades div.atividadelista a.item span.icone svg{
		margin-top: -15px;
	}
}

@media screen and (max-width: 650px){
	section.atividades div.atividadelista{
		display: block;
	}

	section.atividades div.atividadelista a.item img{
		width: 100%;
	}

	section.atividades div.atividadelista a.item{
		width: 100%;
		max-width: 100%;
		margin: 50px 0px;
		height: auto;
		padding-top: 200px;
		padding-bottom: 25px;
	}

	section.atividades div.atividadelista a.item div.botaoseta,
	section.atividades div.atividadelista a.item span{
		opacity: 1 !important;
	}

	section.atividades div.atividadelista a.item div.botaoseta{
		position: initial;
		margin: initial;
	}
}


/* Porque Escolher */
section.porqueescolher{
	overflow: hidden;
	display: block;
	margin: auto;
	margin-top: -120px;
	margin-bottom: -120px;
	position: relative;
	z-index: 1;
}

section.porqueescolher div.maxwidth{
	padding: 0px 32px;
	max-width: 1600px;
}

section.porqueescolher div.titulo{
	max-width: 300px;
}

section.porqueescolher div.titulo img{
	max-width: 30px;
	position: relative;
	display: block;
} 

section.porqueescolher div.titulo .square-left{
	margin-bottom: -10px;
	margin-right: auto;
}
section.porqueescolher div.titulo .square-right{
	margin-top: -10px;
	margin-left: auto;
}

section.porqueescolher div.titulo h2{
	line-height: 30px;
	font-family: "VelaSans-Bold";
	text-align: center;
	font-size: 1.8em;
	margin-bottom: 0;
	display: block;
	margin: auto;
	padding: 0px 20px;
}

section.porqueescolher div.titulo h3{
	line-height: 20px;
	width: 100%;
	max-width: 950px;
	text-align: center;
	font-size: 1.4em;
	margin: auto;
	color: #222;
  font-family: 'VelaSans-Light';
	padding: 0px 20px;
}

section.porqueescolher div.titulo p{
  font-family: 'VelaSans-Light';
	margin: 0 auto;
	display: block;
	font-size: 1.1em;
	margin-top: 20px;
	line-height: 20px;
	text-align: justify;
}

section.porqueescolher div.itensporque{
	width: 100%;
	max-width: 1200px;
	border-radius: 10px;
	margin: auto;
	border-radius: 10px;
	box-shadow: 0px 2px 10px 5px rgba(0,0,0,.2);
	background-color: #FFF;
	background-image: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 70%, rgba(255,255,255,.98) 100%), url("../imgs/pattern-menu.jpg");
	
}

section.porqueescolher div.itensporque div.itemporque{
	justify-content: center;
	width: 33.33%;
	padding: 20px;
	transition: transform 0.25s ease-in-out;
	/*background-color: #1B1D1E;*/
}


section.porqueescolher div.itensporque div.itemporque span{
	font-size: 2em;
	color: #C9AC7C;
	width: 65px;
	height: 40px;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100px;
	margin-right: 15px;
	opacity: 0.8;
	transition: border 0.5s ease-in-out;
}

/*section.porqueescolher div.itensporque div.itemporque:first-child span{
	color: #070707;
}*/

/*section.porqueescolher div.itensporque div.itemporque:hover span{
	border: 3px dashed #222;
}

section.porqueescolher div.itensporque div.itemporque:hover{
	transform: scale(1.03);
}
*/
section.porqueescolher div.itensporque div.itemporque div.texto{
	max-width: 250px;
}

section.porqueescolher div.itensporque div.itemporque div.texto h4{
	color: #434343;
	font-size: 1.1em;
	margin: 0;
	margin-top: 0px;
	margin-bottom: 10px;
	line-height: 25px;
}


/*section.porqueescolher div.itensporque div.itemporque:first-child div.texto h4{
	color: #000;
}*/

section.porqueescolher div.itensporque div.itemporque div.texto p{
  font-family: 'VelaSans-Light';
	min-width: 200px;
	color: #777;
	font-size: .9em;
	line-height: 20px;
	margin: 0;
	margin-top: 3px;
	min-height: 80px;
}

/*section.porqueescolher div.itensporque div.itemporque:first-child div.texto p{
	color: #222;
}*/


section.porqueescolher div.itensporque div.itemporque div.texto p i{
	font-style: normal;
	padding: 5px 0px;
	border-bottom: 1px solid rgba(151,151,151,.3);
}

section.porqueescolher div.itensporque div.itemporque div.texto p small{
	font-size: 1em;
}

section.porqueescolher div.itensporque div.itemporque div.texto a{	
	margin-top: 15px;
	height: 42px;
	text-align: center;
	width: 100%;
	max-width: 190px;
	color: #FFF;
	border-radius: 50px;
	padding: 9px 15px;
	font-size: 1em;
	border-color: transparent;
	outline: none;
	/*box-shadow: 0px 0px 5px rgba(0,0,0,.1);*/
	display: block;
	text-decoration: none;
	background-color: #C9AC7C;
	transition: all 0.2s ease-in-out;
}

section.porqueescolher div.itensporque div.itemporque:nth-last-child(2) div.texto a{	
	color: #434343;
	padding-left: 0;
	background-color: transparent;
	box-shadow: none;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-shadow: none;
}

section.porqueescolher div.itensporque div.itemporque:nth-last-child(2) div.texto a i{
	background-color: #269E97;
	color: #FFF;
	padding: 7px;
	border-radius: 100%;
	font-size: 1.2em;
	margin-right: 5px;
	width: 33px;
	height: 33px;
	display: flex;
	justify-content: center;
	align-items: center;
}	


@media screen and (max-width: 992px){
	section.porqueescolher{
		padding: 50px 0px;
		margin: 0 auto;
		z-index: 0;
		width: 100%;
		background-color: #A58B61;
	}

	section.porqueescolher div.maxwidth{
		padding: 0px 16px;
	}

	section.porqueescolher div.titulo h2{
		font-size: 1.6em;
	}
	
	section.porqueescolher div.titulo h3{
		font-size: 1.2em;
	}

	section.porqueescolher div.itensporque{
		border-radius: 10px;
		overflow: hidden;
		max-width: 500px;
	}

	section.porqueescolher div.itensporque div.itemporque{
		width: 100%;
		margin-bottom: 0px;
		padding: 30px 16px;
		justify-content: flex-start;
		flex-wrap: wrap;
		border-radius: 0 !important;
	}

	section.porqueescolher div.itensporque div.itemporque span{
		margin-bottom: 20px;
	}

	section.porqueescolher div.itensporque div.itemporque div.texto{
		max-width: 225px;
	}

}

/* Contato */
section.contato{
	padding: 50px 16px 200px 16px;
	background-color: #A88D63;
	background-image: linear-gradient(90deg, rgba(167,140,98, 1) 0%, rgba(167,140,98,.94) 70%, rgba(167,140,98,1) 100%), url("../imgs/formulario.jpg");
  background-size: cover;
  overflow: hidden;
}

section.contato div.formulariocontato{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 0px 16px;
}

section.contato div.formulariocontato div.formulario{
	width: 100%;
	max-width: 600px;
	padding: 50px;
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0px 5px 20px 5px rgba(0,0,0,0.1);
	overflow: hidden;
}

section.contato div.formulariocontato div.formulario h2{
	font-family: "VelaSans-SemiBold";
	font-size: 1.4em;
	color: #4E5051;
}

section.contato div.formulariocontato div.formulario p{
	font-family: "VelaSans-Light";
	font-size: .9em;
	line-height: 25px;
	color: #AAA;
	margin-top: 15px;
}

section.contato div.formulariocontato div.formulario label{
	font-size: 0.8em;
	color: #888;
	margin-bottom: 4px;
}

section.contato div.formulariocontato div.formulario input,
section.contato div.formulariocontato div.formulario textarea{
	font-family: "VelaSans-Light";
	border: 2px solid #EEE;
	box-shadow: none;
	padding: 22px 20px;
	border-radius: 25px;
}

section.contato div.formulariocontato div.formulario input:focus,
section.contato div.formulariocontato div.formulario textarea:focus{
	border-color: #EBEBEB;
	box-shadow: 0px 0px 10px 2px rgba(167,140,98,0.1);
}

section.contato div.formulariocontato div.formulario textarea{
	min-height: 150px;
}

section.contato div.formulariocontato div.formulario button{
	margin-top: 15px;
	text-align: center;
	width: 100%;
	max-width: 250px;
	color: #FFF;
	border-radius: 50px;
	padding: 10px 15px;
	font-size: 1em;
	border-color: transparent;
	outline: none;
	box-shadow: 0px 0px 5px rgba(0,0,0,.1);
	display: block;
	text-shadow: 1px 1px 4px rgba(0,0,0,.2);
	text-decoration: none;
	background-color: #269E97;
	transition: all 0.2s ease-in-out;
}

section.contato div.formulariocontato address{
	width: 100%;
	max-width: 600px;
	color: #FFF;
	padding: 0px 50px;
}

section.contato div.formulariocontato address h2{
	font-family: "VelaSans-SemiBold";
	font-size: 1.8em;
	max-width: 380px;
	line-height: 40px;
}

section.contato div.formulariocontato address h2 strong{
	border-bottom: 2px solid #C9AC7C;
}

section.contato div.formulariocontato address p{
	font-family: "VelaSans-Light";
	font-size: 1em;
	line-height: 27px;
	margin-top: 15px;
}

section.contato div.formulariocontato address div.contatos{
	margin-top: 25px;
}

section.contato div.formulariocontato address div.contatos div.contato{
	margin: 25px 0;
}

section.contato div.formulariocontato address div.contatos h5{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 1.2em;
}

section.contato div.formulariocontato address div.contatos a{
	color: #EBEBEB;
}

section.contato div.formulariocontato address hr{
	border-color: #FFF;
	opacity: .3;
	margin-top: 50px;
	position: relative;
}

section.contato div.formulariocontato address div.depoimentos{
	padding: 25px 0px;
	position: relative;
}

section.contato div.formulariocontato address div.depoimentos img{
	width: 70px;
	height: 70px;
	object-fit: cover;
	display: block;
	margin: auto;
	margin-bottom: 15px;
	border-radius: 100%;
	box-shadow: 0px 0px 5px rgba(0,0,0,.1);
}

section.contato div.formulariocontato address div.depoimentos h3{
	font-size: 1.1em;
	text-align: center;
}

section.contato div.formulariocontato address div.depoimentos p{
	text-align: center;
	padding: 0px 50px;
}

section.contato div.formulariocontato address div.depoimentos p span{
	font-family: "VelaSans-Light";
	padding: 0px 25px;
	display: block;
	font-size: .9em;
}

section.contato div.formulariocontato address div.depoimentos p::after,
section.contato div.formulariocontato address div.depoimentos p::before{
	content: '';
	width: 30px;
	height: 30px;	
	filter: invert(89%);
	background-image: url("../imgs/aspas.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	display: block;
	font-size: 4em;
	position: absolute;
	right: 0;
	margin-top: -20px;
	margin-right: 20px;
	margin-bottom: 0;
	transform: rotate(180deg);
}

section.contato div.formulariocontato address div.depoimentos p::before{
	left: 0;
	right: initial;
	margin-bottom: 0px;
	margin-top: -20px;
	margin-left: 20px;
	margin-right: 0px;
	transform: rotate(0deg);
}

@media screen and (max-width: 992px){
	section.contato{
		background-position: right;
		padding: 50px 16px;
	}

	section.contato div.formulariocontato{
		flex-direction: column;
		padding: 0;
	}

	section.contato div.formulariocontato div.formulario{
		width: 100%;
		max-width: 100%;
		padding: 25px 16px;
	}

	section.contato div.formulariocontato div.formulario div.d-flex{
		flex-direction: column;
	}

	section.contato div.formulariocontato div.formulario h2{
		font-size: 1.4em;
	}

	section.contato div.formulariocontato div.formulario button{
		margin: auto;
	}

	section.contato div.formulariocontato address{
		padding: 0px;
		margin-top: 25px;
		width: 100%;
		max-width: 100%;
	}

	section.contato div.formulariocontato address h2{
		font-size: 1.5em;
	}

	section.contato div.formulariocontato address div.depoimentos p{
		padding: 0;
	}

	section.contato div.formulariocontato address div.depoimentos p::before{
		margin-left: 0
	}

	section.contato div.formulariocontato address div.depoimentos p::after{
		margin-right: 0;
	}

}

/* Mapa */
section.maps iframe{
	width: 100%;
	height: 400px;
	padding: 0;
}

/* Footer */
footer{
	background-color: #444;
	background-image: url("../imgs/world_dots.png");
	background-size: cover;
	background-position: top;
	background-position: center;
	background-repeat: no-repeat;	
	overflow: hidden;
}

footer .maxwidthrodape{
	width: 100%;
	max-width: 1300px;
	margin: auto;
	padding: 200px 0px 100px 0px;
	/*border-top: 2px solid #F5F5F5;*/
}

footer .maxwidthrodape .logofooter{
	position: relative;
}

footer .maxwidthrodape .logofooter img{
	padding: 0px 16px;
}

footer .maxwidthrodape .logofooter div.certificados{
	position: absolute;
	bottom: 0;
}

footer .maxwidthrodape .logofooter div.certificados img{
	max-width: 140px !important;
	margin-top: 25px;
}

footer .maxwidthrodape .logofooter a{
	text-decoration: none;
}

footer .maxwidthrodape .logofooter p{
	font-size: .85em;
	line-height: 25px;
	margin-top: 25px;
	color: #999;
}

footer .maxwidthrodape .logofooter button{
	font-family: "VelaSans-SemiBold";
	margin-top: 15px;
	text-align: center;
	color: #FFF;
	border-radius: 50px;
	padding: 5px 0px;
	font-size: .85em;
	border-color: transparent;
	outline: none;
	display: block;
	text-decoration: none;
	box-shadow: none;
	transition: all 0.2s ease-in-out;
}

footer .maxwidthrodape .logofooter button span{
	font-size: .85em;
	margin-left: 5px;
	transition: all 0.2s ease-in-out;
}

footer .maxwidthrodape .logofooter button:hover,
footer .maxwidthrodape .logofooter button:hover span{
	color: #EBEBEB;
}

footer .maxwidthrodape .logofooter button:hover span{
	margin-left: 7px;
}


footer .maxwidthrodape a{
	color: #222;
	text-decoration: underline;
}

footer .maxwidthrodape h5{
	font-family: "VelaSans-SemiBold";
	font-size: 1em;
	margin-top: 0px;
	margin-bottom: 15px;
	color: #EBEBEB;
}

footer .maxwidthrodape div:last-child h5{
	color: #4E5051;
}

footer .maxwidthrodape nav{
	clear: both;
	display: flex;
	/*padding-top: 25px;*/
}

footer .maxwidthrodape span{
	color: #FFF;
	font-size: 1.6em;
	padding-right: 10px;
	/*font-weight: bold;*/
}

footer .maxwidthrodape iframe{
	width: 100%;
	border:0; 
	overflow:hidden;
	background-color: #FFF;
	padding: 3px;
	border-radius: 5px;
	min-height: 215px;
}

footer .maxwidthrodape nav ul li,.fb_iframe_widget{
	width:100%;
	clear: both;
}

footer .maxwidthrodape nav ul li a{
	cursor: pointer;
	color: #999;
	font-size: 0.8em;
	line-height: 30px;
	text-decoration: none;
}

footer .maxwidthrodape nav ul li a:hover{
	color: #FFF;
}

footer .maxwidthrodape div.areamidias{
	background-color: #FFF;
	height: 100%;
	border-radius: 10px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0px 2px 10px 5px rgba(0,0,0,.1);
}

footer .maxwidthrodape div.areamidias::before{
	content: '';
	position: absolute;
	height: 40%;
	width: 3px;
	background-color: #EBEBEB;
	left: 15px;
}

footer .maxwidthrodape div.areamidias div.area{
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

footer .maxwidthrodape div.areamidias div.area p{
	font-family: "VelaSans-Light";	
}

footer .maxwidthrodape div.areamidias a.destaque{
	color: #4E5051;
	font-family: "VelaSans-SemiBold";
	font-size: 1.2em;
	text-decoration: none;
	margin-bottom: 15px;
}

footer .maxwidthrodape div.areamidias a.destaque span{
	color: inherit;
	font-size: inherit;
	padding: 0;
	margin-right: 5px;
}

footer .maxwidthrodape div.midias a{
	border-right: 2px solid #EEE;
	padding: 5px;
	padding-left: 12px;
	min-width: 40px;
	text-align: center;
	margin-top: 5px;
}

footer .maxwidthrodape div.midias a span{
	color: #999;
}

footer .maxwidthrodape div.midias a span:hover,
footer .maxwidthrodape div.areamidias a.destaque:hover{
	color: #1B1D1E;
}

footer div.identificacao{
	padding: 20px 16px;
	line-height: 20px;
	font-size: 0.9em;
	background-color: #333;
}

footer div.identificacao span{
	color: #FFF; 
	font-size: 1em;
	padding: 0;
	margin: 2px;
	margin: auto;
}

footer div.identificacao p{
	color: #FFF;
	font-size: 0.7em;
	margin-bottom: 0;
}

footer div.identificacao p.desenvolvimento{
	color: #AAA;
}

footer div.identificacao p.copy{
	font-size: 1em;
}

footer div.identificacao p.copy span{
	color: #AAA;
}

footer div.identificacao img{
	width: 100%;
	max-width: 90px;
}

@media screen and (max-width: 992px){
	footer .maxwidthrodape{
		padding: 50px 16px;
	}

	footer .maxwidthrodape .logofooter div.certificados{
		position: initial;
		justify-content: center !important;
	}

	footer .maxwidthrodape .logofooter img{
		margin: auto;
		margin-bottom: 25px;
		display: block;
		max-width: 300px;
	}

	footer .maxwidthrodape .logofooter div.certificados img{
		max-width: 125px;
		width: 100%;
	}

	footer .maxwidthrodape .logofooter p{
		margin-bottom: 25px;
		font-size: .9em;
	}

	footer .maxwidthrodape .logofooter a button{
		font-size: 1em;
	}

	footer .maxwidthrodape div.col-md-12{
		padding-top: 50px;
	}

	footer .maxwidthrodape div.col-md-12:first-child{
		padding-top: 0;
	}
	
	footer .maxwidthrodape h4{
		margin-top: 25px;
		text-align: left;
	}

	footer .maxwidthrodape nav ul li a{
		font-size: 0.9em;
	}
	
	footer div.identificacao{
		padding: 50px 16px;
	}

	footer div.identificacao div.maxwidth div{
		width: 100%;
	}

	footer div.identificacao span{
		display: block;
		margin-bottom: 5px;
	}

	footer div.identificacao span.traco{
		display: none;
	}	

	footer div.identificacao p{
		margin-top: 25px;
		font-size: 1em;
	}
}

footer .maxwidthrodape div.midias a:last-child{
	border:none;
	padding-right: 0;
}




/* Página Padrão */
section.paginapadrao{
	padding: 50px 16px;
	padding-top: 140px;
	background-color: #FFF;
}

section.paginapadrao ol.breadcrumbpagina{
	background-color: transparent;
	padding-left: 0;
}

section.paginapadrao ol.breadcrumbpagina a{
	color: #222;
}

section.paginapadrao ol.breadcrumbpagina a:hover{
	text-decoration: none;
}

section.paginapadrao div.titulo h1{
	font-size: 1em;
	line-height: 27px;
	color: #222;
	text-align: center;
}

section.paginapadrao div.titulo h1 strong{
	color: #222;
	font-size: 2em;
	font-family: "VelaSans-Bold";
}

section.paginapadrao div.titulo hr{
	width: 100%;
	display: block;
	max-width: 100px;
	margin-top: 15px;
	margin-bottom: 0px;
	background-color: #EBEBEB;
	height: 1px;
}


section.paginapadrao div.texto{
	padding-top: 25px;
}

section.paginapadrao div.texto p{
	font-size: 1em;
	color: #222;
}

@media screen and (max-width: 992px){
	section.paginapadrao{
		padding-top: 85px;
	}
	
	section.paginapadrao div.titulo h1{
		margin-bottom: 0px;
	}

	section.paginapadrao div.titulo h1{
		font-size: .8em;
	}

	section.paginapadrao div.titulo h1 strong{
		font-size: 2.3em;
		line-height: 30px;
	}

	section.paginapadrao div.titulo hr{
		margin-top: 10px;
	}
}




/* Chamada para converter */
section.formchamada{
	z-index: 1 !important;
	position: fixed;
	bottom: -1px;
	right: 10px;
	width: 100%;
	max-width: 350px;
	border-radius: 5px 5px 0px 0px;
	border:1px solid #DDD;
	background-color: #DDD;
	box-shadow:0 0 0.2rem 0.1rem rgba(38,158,151,0.3);
  	animation: pulsesombra 1s infinite;
}

section.formchamada:hover{
	animation: none;
}

section.formchamada .chamadatitulo{
	font-size: 1.1em;
	background-color: #269E97;
	color:#FFF;
	text-align: center;
	border-radius: 5px 5px 0px 0px;
	/*text-shadow: 1px 0px 2px #000;*/
	padding: 8px 15px 5px 15px;
	cursor: pointer;
	border:none;
	width: 100%;
	outline-color: transparent;
}

section.formchamada .chamadatitulo span{
	margin-right: 7px;
}

section.formchamada .chamadacorpo{
	color:#000;
	background-color: #FFF;
	display: none;
	padding: 15px;
}

section.formchamada .chamadacorpo p{
	margin-bottom: 5px;
}

section.formchamada .chamadacorpo form input:focus,
section.formchamada .chamadacorpo form textarea:focus{
	border-color: #269E97;
	box-shadow:0 0 0 0.1rem rgba(38,158,151,0.3);
}


section.formchamada .chamadacorpo .botaochamada{
	background-color: #269E97;
	border-color: #269E97;
}

section.formchamada .chamadacorpo .fecharchamada{
	font-size: 0.8em;
	color:#999;
	margin-top: 5px;
	margin-bottom: -10px;
	cursor: pointer;
}

@media screen and (max-width: 600px){
	section.formchamada{
		z-index: 99999;
		max-width: 100%;
		width: 100%;
		right: 0;
		border:0;
	}
	section.formchamada .chamadatitulo{		
		padding: 8px 5px 5px 5px;
		border-radius: 0;
	}
}


@media screen and (max-width: 350px){
	section.formchamada .chamadatitulo{
		font-size: 1.1em;
	}
}


/* Chamada Whatsapp */
section.formchamadawpp{
	width: 100%;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 999999;
	visibility: hidden;
} 
section.formchamadawpp a{
	z-index: 999999;
	position: fixed;
	bottom: 5px;
	right: 10px;
	width: 65px;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	/*border:2px solid #FFF;*/
	background-color: #269E97;
	box-shadow:0 0 0.2rem 0.1rem rgba(38,158,151 ,0.3);
  animation: pulsesombra 1.5s infinite;
}

section.formchamadawpp a:hover{
	animation: none;
}

section.formchamadawpp a{
	color: #FFF;
	text-decoration: none;
	font-size: 2.2em;
}
	
section.formchamadawpp img{
	max-width: 350px;
  	animation: pulsechamada 0.9s infinite;
}

section.formchamadawpp a div{
	display: none !important;
}

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

	section.formchamadawpp a{
		width: 100%;
		border-radius: 0px;
		right: 0;
		bottom: 0;
	}

	section.formchamadawpp img{
		max-width: 230px;
	}

	section.formchamadawpp a div{
		display: flex !important;
		margin-left: 5px;
	}

	section.formchamadawpp a div p,
	section.formchamadawpp a div h4{
		padding: 0;
		margin: 0;
	}

	section.formchamadawpp a div h4{
		font-size: .3em;
		margin-bottom: -3px;
	}

	section.formchamadawpp a div p{
		font-family: "VelaSans-Bold";
		font-size: .65em;
	}
}


section.formchamadawpp .chamadawpp{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3em;
	background-color: #269E97;
	color:#FFF;
	text-align: center;
	border-radius: 1000px;
	/*text-shadow: 1px 0px 2px #000;*/
	padding: 12px 15px 14px 15px;
	cursor: pointer;
	border:none;
	outline-color: transparent;
}

section.formchamadawpp .chamadanome{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
	flex-direction: column;
	font-size: 20px;
	font-weight: bolder;
}


section.formchamadawpp .chamadanome i:nth-of-type(1){
	font-style: normal;
}

section.formchamadawpp .chamadanome i:nth-of-type(2){
	font-style: normal;
	font-weight: normal;

}


/* Animation Chamada */

@-webkit-keyframes pulsechamada {
  0% {
    padding:0px;
  }
  70% {
      padding: 10px;
  }
  100% {
      padding: 0px;
  }
}
@keyframes pulsechamada {
  0% {
    padding:0px;
  }
  70% {
      padding: 10px;
  }
  100% {
      padding: 0px;
  }
}



@-webkit-keyframes pulsesombra {
  0% { box-shadow: 0 0 0 0 rgba(38,158,151, 0.8) }
  100% { box-shadow: 0 0 0 50px rgba(38,158,151, 0) }
  }
  
@keyframes pulsesombra {
  0% { box-shadow: 0 0 0 0 rgba(38,158,151, 0.8) }
  100% { box-shadow: 0 0 0 50px rgba(38,158,151, 0) }
}

@-webkit-keyframes navbar-control {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-200px);}
  100% { transform: translateY(0px); }
  }

@keyframes navbar-control {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-200px);}
  100% { transform: translateY(0px); }
}


@-webkit-keyframes gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-webkit-keyframes girar {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(100deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@-moz-keyframes girar {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(100deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@keyframes girar {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(100deg);
	}
	100% {
		transform: rotate(0deg);
	}
}



@-webkit-keyframes imagemVideo {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@-moz-keyframes imagemVideo {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}


@keyframes imagemVideo {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}


