/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
a{
	text-decoration:none;
	color:none;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*FIM DO RESET*/
/*fonts*/
@font-face {
     font-family:social;
     src: url('../fonts/Social.otf');
}
@font-face {
     font-family:lato-thin;
     src: url('../fonts/Lato-Light.ttf');
}
@font-face {
     font-family:lato;
     src: url('../fonts/Lato-Regular.ttf');
}
@font-face {
     font-family:lato-bold;
     src: url('../fonts/Lato-Bold.ttf');
}
@font-face {
     font-family:lato-black;
     src: url('../fonts/Lato-Black.ttf');
}
#main{
	width:100%;
	width:auto;
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	background-color:#fff;	
}
.header{
	width:100%;
	height:6rem;
	display:flex;
	background-color:transparent;
	flex-direction:rows;
	justify-content:space-between;
	/*box-shadow:0px 2px 3px rgba(0,0,0,0.8);*/
	position:fixed;
	z-index:100;
}
.header-visivel{
	width:100%;
	height:6rem;
	display:flex;
	background-image:linear-gradient(to right,rgba(255,215,0,0.8),rgba(255,10,0,0.8));
	flex-direction:rows;
	justify-content:space-between;
	box-shadow:0px 2px 3px rgba(0,0,0,0.8);
	position:fixed;
	z-index:100;
}
.logo{
	width:12%;
	height:5rem;	
	margin-left:4rem;
	padding-top:0.8rem;
	text-align:center;
	background:transparent;
	cursor:pointer;
}
.logo img{	
	width:80%;	
}
.nav{
	width:50%;
	height:6rem;
	background:transparent;
	line-height:6rem;
	display:block;
	z-index:100;
	
}

.nav ul{
	display:block;
}

.nav li{
	display:inline;
	padding:1rem;
	font-family:lato;
	font-size:1.2rem;
}
.nav li a{
	color:rgba(250,250,250,1);
	text-shadow:0px 1px 2px #000;
	padding:2rem;
	text-decoration:none;
	transition:0.5s;	
}
.nav li a:hover{	
	color:rgba(255,0,0,1);	
	
}

@media(max-width:1024px){
	.nav{
		display:none;
	}		
}
@media(min-width:1440px){
	.nav{
		display:block;
	}
}
.menu{
	width:5rem;
	height:5rem;
	top:1rem;
	right:1rem;	
	background:transparent;
	text-align:center;
	position:absolute;
	display:none;
	cursor:pointer;
	z-index:100;
}
.menu img{
	width:5rem;
	height:5rem;
	min-width:5rem;
	min-height:5rem;
	border-radius:0.5rem;
	opacity:0.8;
}
@media(max-width:1024px){
	.menu{
		display:block;
	}
	.header{
		background-color:transparent;
		position:fixed;
		box-shadow:none;
	}
}
.menu-mobil{
    background-color:#a90329;
	position: absolute;
	left: 0;
	top: 0;
	padding-top:2rem;
	height:100vh;	
    width:12rem;	
	display:none;
}	
.menu-mobil ul li {
	display:block;	
	font-size: 1.5rem;
	padding-left:2rem;    
}
.menu-mobil li a {
	display: block;
	color: #fff;
	text-decoration: none;
	height: 4rem;
	line-height:4rem;
	padding-left:1rem;
	outline: 0;
	font-family:lato;
}	
.menu-mobil li a:hover {	
	background:rgba(0,0,0,0.2);
	border-left:4px solid rgba(255,120,0,1);
}
@media(max-width:1024px){
	.menu-mobil{
		
	}
}
.section-01{
	width:100%;
	height:40rem;	
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	position:relative;
	overflow:hidden;
}
.section-01--titulo{
	width:100%;
	height:20rem;	
	background:transparent;
	z-index:1;	
}
.section-01--titulo h1{
	font-family:lato-black;
	font-size:14vw;
	color:rgba(250,250,250,1);
	text-shadow:0px 2px 2px rgba(0,0,0,0.8);
	text-align:center;
}
.section-01--titulo h2{
	font-family:lato-bold;
	font-size:4vw;
	color:rgba(255,120,0,1);
	text-shadow:0px 2px 2px rgba(0,0,0,0.8);
	text-align:center;
}
.section-02{
	width:90%;
	height:41rem;
	margin:3rem auto;
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	align-items:center;	
}
.section-02--article{
	width:32%;
	height:82%;
	margin:0.8rem;
	padding:1rem;
	background-color:transparent;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}
@media(max-width:1024px){
	.section-02--article{
		padding:0rem;
	}
}
@media (max-width:500px){
	.section-02{
		width:100%;
		height:100rem;
		margin-top:2rem;
		flex-direction:column;
		
	}
	
	.section-02--article{
		width:90%;
		height:30rem;
		margin: auto;		
		padding:0rem;
		justify-content:flex-start;	
		
	}
	.section--article-2{
		margin-top:2rem;
	}
	
}
.section--article-1{
	width:100%;
	height:6rem;
	text-align:center;
	
}
.section--article-1::after{
	content:'';
	width:200px;
	height:2px;
	background-image:linear-gradient(to right,#FAAC58 0%, #B45F04 50%,#FAAC58 100%);
	margin:2rem auto;
	display:block;
	
}
.section--article-1 img{
	width:5rem;
	height:5rem;
	border-radius:50%;
}
.section--article-2{
	width:100%;
	height:18rem;
	margin-top:2rem;
	background:transparent;
}
.section--article-2 h3{
	font-family:lato-bold;
	font-size:2.5rem;
	color:rgba(169,3,41, 1);
	text-shadow:0px 1px 2px rgba(0,0,0,0.8);
	text-align:center;
}
.section--article-2 p{
	font-family:lato;
	font-size:1.1rem;
	color:rgba(0,0,0,0.8);	
	text-align:justify;	
	line-height:1.1;
	text-indent:2rem;
	margin-top:1.8rem;	
}
.section--article-3{
	width:100%;
	height:4rem;
	margin-top:0rem;
	background:transparent;
}
.section--article-3 button{
	width:42%;
	height:3rem;
	background-color:#0080FF;
	border:none;
	border-radius:0.6rem;
	font-family:lato;
	font-size:1.4rem;
	color:#fff;
	text-align:center;
	float:right;
	box-shadow:0px 2px 3px rgba(0,0,0,0.8);
	outline:none;
	cursor:pointer;
}
.section--article-3 button:hover{
	background-color:#0431B4;
}
@media(max-width:1024px){
	.section--article-3 button{
		width:60%;
	}
}
@media (max-width:500px){
	.section--article-2{
		height:14rem;
		margin-top:4rem;
	}	
}
.section-03{
	width:100%;
	height:46rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	background-image:url('../imagens/back8.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
	position:relative;
}
.section-03::after{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}
.section-03::after {
    content: '';
    /*background: rgba(250,250,250,0.8);*/
	background-image:linear-gradient(to right,rgba(255,215,0,0.6),rgba(255,10,0,0.8));
}

.section-03--intro{
	width:95%;
	height:70%;
	margin-top:2rem;
	padding:1rem;	
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	z-index:1;
}
.section-03--intro-1{
	width:95%;
	height:4rem;
	padding-top:1rem;
	z-index:1;
}
.section-03--intro-1 h3{
	font-family:lato-bold;
	font-size:5vw;
	color:rgba(169,3,41, 1);
	text-shadow:0px 2px 2px rgba(0,0,0,1);
	text-align:center;	
}
.section-03--intro-2{
	width:36%;
	height:100%;
}
.section-03--intro-2 img{
	width:100%;
	opacity:0.9;
}
.section-03--intro-2 img:hover{
	opacity:1;
}
.section-03--intro-3{
	width:60%;
	height:100%;	
	background:transparent;
}
.section-03--intro-3 h4{
	font-family:lato-bold;
	font-size:2.5rem;
	/*color:rgba(255,120,0,1);*/;
	color:rgba(250,250,250,1);
	text-shadow:0px 2px 2px rgba(0,0,0,0.8);
	text-align:center;
	margin:1.2rem;
}
.section-03--intro-3 p{
	font-family:lato;
	font-size:1.2rem;
	color:rgba(0,0,0,1);	
	text-align:justify;
	text-indent:2rem;	
}
@media(max-width:1024px){
	.section-03{
		height:52rem;
	}
}
@media(max-width:500px){
	.section-03{
		height:94rem;
	}
	.section-03--intro{
		flex-direction:column;
		justify-content:center;
		width:90%;
		height:80rem;
	}
	.section-03--intro-2{
		width:100%;
		height:33rem;		
		
	}
	.section-03--intro-3{
		width:100%;
		height:48rem;
		margin-top:0rem;		
	}
}
/*===== SLIDE =======*/
.section-04 {
  width:90%;  
  height:32rem;
  margin:auto;
  padding: 100px 0px;
  
}
.section-04 .main_title {
  padding-bottom: 65px;  
}
.section-04 .main_title h2{
  font-family:lato-bold;
  font-size:3rem;
  color:rgba(169,3,41, 1);
  text-shadow:0px 2px 2px rgba(0,0,0,0.8);
  text-align:center;	
}
.main_title h2::after{
    content:'';
	width:200px;
	height:2px;
	background-image:linear-gradient(to right,#FAAC58 0%, #B45F04 50%,#FAAC58 100%);
	margin:2rem auto;
	display:block;	
}
.team_slider .team_slider_item {
  position: relative;
  width:265px;
  height:335px;
  
}
.team_slider .team_slider_item img {

  width:265px;
  height:335px;
  
}
.team_slider .team_slider_item .team_hover {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 87%;
  height: 90%;
  padding: 18px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all 400ms linear 0s;
  -o-transition: all 400ms linear 0s;
  transition: all 400ms linear 0s;
}
.team_slider .team_slider_item .team_hover:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: rgba(227, 204, 252, 0.8);
  background: -moz-linear-gradient(left, rgba(227, 204, 252, 0.8) 0%, rgba(143, 205, 252, 0.8) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(227, 204, 252, 0.8)), color-stop(100%, rgba(143, 205, 252, 0.8)));
  background: -webkit-linear-gradient(left, rgba(227, 204, 252, 0.8) 0%, rgba(143, 205, 252, 0.8) 100%);
  background: -o-linear-gradient(left, rgba(227, 204, 252, 0.8) 0%, rgba(143, 205, 252, 0.8) 100%);
  background: -ms-linear-gradient(left, rgba(227, 204, 252, 0.8) 0%, rgba(143, 205, 252, 0.8) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(227, 204, 252, 0.8)), to(rgba(143, 205, 252, 0.8)));
  background: linear-gradient(to right, rgba(227, 204, 252, 0.8) 0%, rgba(143, 205, 252, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3ccfc', endColorstr='#8fcdfc', GradientType=1 );
  z-index: -1;
}

.team_slider .team_slider_item .team_hover .team_hover_inner {
  border: 1px solid #fff;
  height: 100%;
  text-align: center;
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 92%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text h4 {
  font-size: 2rem;
  color:rgba(250,250,250,1);  
  font-family:lato-bold;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .32px;
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text h5 {
  font-size: 1rem;
  color:rgba(250,250,250,1);  
  font-family:lato;
  font-weight: 300;
  letter-spacing: .30px;
  padding: 8px 0px 15px 0px;
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text ul {
  -webkit-box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.05);
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(3rem);
  -ms-transform: translateY(3rem);
  transform: translateY(3rem);
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text ul li {
  display: inline-block;
  margin-right: -4px;
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text ul li a {
  background: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  line-height: 30px;
  padding: 0px 13px;
  display: inline-block;
  text-align: center;
  position: relative;
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text ul li a i {
  background: -webkit-linear-gradient(left, #dbcafc, #9eccfc);
  background: -webkit-gradient(linear, left top, right top, from(#dbcafc), to(#9eccfc));
  background: -o-linear-gradient(left, #dbcafc, #9eccfc);
  background: linear-gradient(left, #dbcafc, #9eccfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text ul li a:before {
  content: "";
  height: 100%;
  width: 1px;
  background: #f3f3f5;
  position: absolute;
  left: 0px;
  top: 0px;
}
.team_slider .team_slider_item .team_hover .team_hover_inner .team_inner_text ul li:first-child a:before {
  display: none;
}
.team_slider .team_slider_item:hover .team_hover {
  opacity: 1;
}
.team_slider .team_slider_item:hover .team_hover .team_hover_inner .team_inner_text ul {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/*=====FIM DE SLIDE=====*/
.section-05{
	width:100%;
	height:36rem;
	background-image:url('../imagens/back9.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
	background-attachment:fixed;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	position:relative;
}
.section-05::after{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}
.section-05::after{	
	content: '';
    /*background: rgba(250,250,250,0.8);*/
	background-image:linear-gradient(to right,rgba(255,215,0,0.6),rgba(255,10,0,0.8));	
}
.section-05-1 {
	width:90%;
	height:6rem;
	z-index:1;
}
.section-05-1::after{
	content:'';
	width:200px;
	height:4px;
	background-image:linear-gradient(to right,#FAAC58 0%, #B45F04 50%,#FAAC58 100%);
	margin:2rem auto;
	display:block;
	
}
.section-05-1 h3 {
	font-family:lato-bold;
	font-size:4vw;
	color:rgba(250,250,250,1);
	text-shadow:0px 2px 2px #000;
	text-align:center;
}
.section-05-2{
	width:90%;
	height:14rem;
	z-index:1;
}
.section-05-2 h2{
	font-family:lato-black;
	font-size:8vw;
	color:rgba(250,250,250,1);
	text-shadow:0px 2px 2px #000;
	text-align:center;
	
}
.section-05-3{
	width:90%;
	height:6rem;
	z-index:1;
}
.section-05-3::before{
	content:'';
	width:200px;
	height:4px;
	background-image:linear-gradient(to right,#FAAC58 0%, #B45F04 50%,#FAAC58 100%);
	margin:2rem auto;
	display:block;
	
}
.section-05-3 h3{
	font-family:lato-bold;
	font-size:4vw;
	color:rgba(250,250,250,1);
	text-shadow:0px 2px 2px #000;
	text-align:center;
}
/*FOOTER*/
.footer{
	display:flex;
	flex-direction:column;
	justify-content:center;	
	width:100%;
	height:23rem;
	margin-top:0;
	padding-top:0rem;
	background-image:linear-gradient(to right,rgba(0,0,0,0.2), rgba(0,0,0,0.6), rgba(0,0,0,0.2));	
	border-top: 5px solid transparent;
	-moz-border-image: -moz-linear-gradient(to right,#FAAC58 0%, #B45F04 50%,#FAAC58 100%);
	-webkit-border-image: -webkit-linear-gradient(to right,#FAAC58 0%, #B45F04 50%,#FAAC58 100%);
	border-image: linear-gradient(to right,#FAAC58 0%, #B45F04 50%,#FAAC58 100%);
	border-image-slice: 1;
}
.footer .social{
	font-family:social;
	font-size:2.5rem;
	text-shadow:0px 1px 1px #000;
	text-align:center;	
	height:4rem;
	line-height:4rem;
	margin-top:4rem;
}

.social .e a{
	opacity:0.8;
	color:#3b5998;
}
.social .e a:hover{
	opacity:1;
}
.social .k a{
	opacity:0.8;
	color:#0078d4;
}
.social .k a:hover{
	opacity:1;	
}
.social .d  a{
	opacity:0.8;
	color:#00acee;
}
.social .d  a:hover{
	opacity:1;	
}
.social .p a{
	opacity:0.8;
	color:#c4302b;
}
.social .p a:hover{
	opacity:1;	
}
.social .g a{
	opacity:0.8;
	color:#24292e;
}
.social .g a:hover{
	opacity:1;	
}
.footer .hora{
	width:50%;
	height:4rem;
	margin:0 auto;
	font-family:lato-thin;
	color:rgba(0,0,0,0.6);
	line-height:4rem;
	font-size:1.2rem;
	text-align:center;
}
.footer .marca{
	margin:4rem auto;
	font-family:lato-thin;
	color:rgba(0,0,0,0.6);
	text-align:center;
	width:90%;
	text-shadow:1px 1px 1px rgba(250,250,250,0.8);
	
}
.footer .marca a{	
	text-decoration:none;
	color:rgba(0,0,0,0.6);
	
}
.footer .marca hr{	
	border: 1px solid rgba(250,250,250,0.6);;
    color: rgba(0,0,0,0.6);
    background-color: rgba(0,0,0,0.6);
    height: 2px;
}







