/*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;
}
strong,b{
	font-weight:bold;
}
i{
	font-style:italic;
}
/*FIM DO RESET*/
/*fonts*/
@font-face {
     font-family:barlow-regular;
     src: url('../fontes/BarlowCondensed-Regular.ttf');
}

@font-face {
     font-family:barlow-medium;
     src: url('../fontes/BarlowCondensed-SemiBold.ttf');
}

@font-face {
     font-family:barlow-light;
     src: url('../fontes/BarlowCondensed-Light.ttf');
}
@font-face {
     font-family:barlow;
     src: url('../fontes/BarlowCondensed-LightItalic.ttf');
}
@font-face {
     font-family:social;
     src: url('../fontes/sociais.ttf');
}
@font-face {
     font-family:star;
     src: url('../fontes/staravenue.ttf');
}

#main{
	width:100%;
	height:auto;	
	background-color:#fff;	
	top:0;
}
.header{
	width:100%;
	height:6rem;
	padding-top:1.2rem;
	display:flex;
	flex-direction:rows;
	justify-content:flex-end;
	align-items:right;
	background:transparent;
	/*box-shadow:0px 2px 3px rgba(0,0,0,0.2);*/	
	position:fixed;
	z-index:100;
}
.header-visivel{
	width:100%;
	height:6rem;	
	display:flex;
	flex-direction:rows;
	justify-content:flex-end;
	align-items:center;
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);	
	position:fixed;
	opacity:0.8;
	z-index:100;
}
/*menu mobile*/
.header > .nav{
	width:14rem;
	height:100vh;	
	background-image:linear-gradient(to bottom,#00B4F5,#3D08A8,#11A87E,#F7A34A);	
	right:0;
	top:6rem;
	padding-top:4rem;
	padding-left:2rem;
	display:none;
	border-radius:0.2rem;
	position:absolute;
	
	
}
.header > .nav ul{
	display:block;
}
.header > .nav li{
	display:block;	
	font-family:barlow-regular;
	font-size:1.5rem;
}

.header > .nav a{
	line-height:2.6rem;
	color:rgba(250,250,250,1);
	/*text-shadow:0px 1px 1px rgba(0,0,0,0.2);*/		
	text-decoration:none;
	transition:0.5s;
	
}
.header > .nav a:hover{	
	color:rgba(255,120,0,1);	
	
}
.espaco{
	width:80%;
	height:6rem;
}
/*Menu*/
.header > .menu{
	width:5rem;
	height:5rem;	
	margin-right:3rem;
	padding-top:0.6rem;
	background:transparent;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	border:none;
	border-radius:0.1rem;
	cursor:pointer;
	z-index:1000;
	display:block;
}

.menu > .barra{
	width:68%;	
	height:0.5rem;
	margin:0.3rem;
	border-radius:0.1rem;
	background-image:linear-gradient(to right, #F58000, #FFFFF0);
}
.menu > .barra:hover{
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
}


@media (max-width:812px){
	.header > .nav {
		display:none;
	}
	.header > .menu{
		display:block;		
	}
	
}
.section-01{
	width:100%;
	height:41rem;
	padding-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;	
	position:relative;
	overflow:hidden;
	position:relative;
}
.section-01::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.6);
    z-index: 0;
}

.logo{
	width:100%;
	height:auto;
	padding-right:3%;
	top:24rem;
	display:flex;
	flex-direction:rows;
	justify-content:flex-end;	
	background:transparent;	
	position:absolute;
}
.logo img{
	width:100%;
	height:auto;
}

.section-01 .slide {
  z-index:0;
  position:absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  transition:opacity 1.5s ease-in-out; 
  background-position:center;
  background-repeat: no-repeat;
  background-attachment:fixed;
  background-size: cover;
  opacity: 0;
  
}
.section-01 .slide.show{
  opacity: 1; 
  animation:slide-out 10s;
}
@keyframes slide-out{	
	33%{
		transform:scale(1);
	}
	66%{
		transform:scale(1.2);
	}
	100%{
		transform:scale(1);
	}
}
/*//////Section-02 Título da home*/
.section-02{
	width:100%;
	height:42rem;
	margin-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;	
	
}
.section-02-1{
	width:100%;
	height:8rem;
	background-color:transparent;
	
}
.section-02-1 h1{
	font-family:barlow-medium;
	font-size:2.6rem;
	color:#F58000;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-02-1 h2{
	font-family:barlow-medium;
	font-size:2.6rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-02-2{
	width:100%;
	height:auto;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
}
.section-02-2-a{
	width:48%;
	height:auto;
	padding:2rem;
	margin:2%;
	background-color:transparent;
}
.section-02-2-a p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	text-align:center;
	line-height:1.4rem;
	letter-spacing:0.05rem;
	text-align:justify;
	text-indent:3rem;
}
.section-02-2-a img{
	width:100%;
	height:auto;
	border-radius:0.2rem;
}
.section-02-2-a figcaption{
	font-family:barlow-light;
	font-size:0.8rem;
	color:rgba(0,0,0,0.6);
}
.section-02-3{
	width:100%;
	height:4rem;
	text-align:center;
}
.section-02-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
	
}
.section-02-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-02{
		height:auto;
	}
	.section-02-1{
		height:auto;
	}
	.section-02-2{
		flex-direction:column;		
	}
	.section-02-2-a{
		width:98%;
		margin:auto;
	}
	.section-02-3 button{
		width:80%;
	}
	
}
/*////Section 03/////*/
.section-03{
	width:100%;
	height:62rem;
	margin-top:6rem;
	padding-top:3rem;
	padding-bottom:3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-image:url('../imagens/async-fundo.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:inherit;
	background-position:center;
	position:relative;
	
}
.section-03::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgb(247,163,74,0.8);
    z-index: 0;
}

.section-03-1{
	width:100%;
	height:4rem;
	margin-top:3rem;
	background-color:transparent;
	z-index:1;
}
.section-03-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;	
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-03-2{
	width:100%;
	height:auto;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
	z-index:1;
}
.section-03-2-a{
	width:33%;
	height:auto;	
	margin:2%;
	padding-left:1rem;
	padding-right:1rem;
	background-color:transparent;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.section-03-2-a-1{
	width:20%;
	height:auto;
	margin-top:2rem;
}
.section-03-2-a-1 img{
	width:100%;
	height:auto;
}


.section-03-2-a-2{
	width:100%;
	height:auto;
	margin-top:2rem;
}
.section-03-2-a-2 h2{
	font-family:barlow-regular;
	font-size:2.1rem;
	color:#FA420D;	
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-03-2-a-3{
	width:100%;
	height:24rem;
	margin-top:2rem;
	background:transparent;
}
.section-03-2-a-3 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.6);
	line-height:1.4rem;
	letter-spacing:0.05rem;
	text-align:justify;
	text-indent:3rem;
}
.section-03-2-a-4{
	width:100%;
	height:auto;	
	text-align:center;
	
}
.section-03-2-a-4 button{
	width:60%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
	
}
.section-03-2-a-4 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}

@media (max-width:812px){
	.section-03{
		height:auto;
	}
	.section-03-1{
		height:auto;
	}
	.section-03-2{
		flex-direction:column;		
	}
	.section-03-2-a{
		width:98%;
		margin:auto;
	}
	.section-03-3 button{
		width:80%;
	}
	.section-03-2-a-3{
		height:auto;
	}
	
}
.section-03-2-b{
	width:90%;
	height:auto;	
	margin:2%;
	padding-left:1rem;
	padding-right:1rem;
	background-color:transparent;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.section-03-2-b-1{
	width:6%;
	height:auto;
	margin-top:2rem;
}
.section-03-2-b-1 img{
	width:100%;
	height:auto;
}


.section-03-2-b-2{
	width:100%;
	height:auto;
	margin-top:2rem;
}
.section-03-2-b-2 h2{
	font-family:barlow-regular;
	font-size:2.1rem;
	color:#FA420D;	
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-03-2-b-3{
	width:100%;
	height:24rem;
	margin-top:2rem;
	background:transparent;
}
.section-03-2-b-3 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.6);
	line-height:1.4rem;
	letter-spacing:0.05rem;
	text-align:justify;
	text-indent:3rem;
}
.section-03-2-b-4{
	width:100%;
	height:auto;	
	text-align:center;
	
}
.section-03-2-b-4 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
	
}
.section-03-2-b-4 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
.section-espaco{
	width:100%;
	height:31rem;
}
/*/////Section 04/////*/
.section-04{
	width:100%;
	height:62rem;
	margin-top:6rem;
	padding-top:3rem;
	padding-bottom:3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	/*background-image:url('../imagens/async-fundo.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;*/
	position:relative;
	
}
.section-04::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(255,255,250,0.6);	
    z-index: 0;
}

.section-04-1{
	width:100%;
	height:8rem;
	background-color:transparent;
	z-index:1;
}
.section-04-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-04-2{
	width:100%;
	height:auto;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
	z-index:1;
}
.section-04-2-a{
	width:48%;
	height:auto;
	padding:2rem;
	margin:2%;
	background-color:transparent;
}
.section-04-2-a p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	text-align:justify;
	text-indent:3rem;
	line-height:1.2rem;
	
}
.section-04-2-a img{
	width:100%;
	height:auto;
	
}
.section-04-2-a figcaption{
	font-family:barlow-light;
	font-size:0.8rem;
	color:rgba(0,0,0,0.8);
}
.section-04-3{
	width:100%;
	height:4rem;
	text-align:center;
	z-index:1;
}
.section-04-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
	
}
.section-04-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-04{
		height:auto;
	}
	.section-04-1{
		height:auto;
	}
	.section-04-2{
		flex-direction:column;		
	}
	.section-04-2-a{
		width:98%;
		margin:auto;
	}
	.section-04-3 button{
		width:80%;
	}
	
}
/*/////Section-05 Portfólio///////*/
.section-05{
	width:100%;
	height:60rem;
	margin-top:6rem;
	padding-top:3rem;
	padding-bottom:3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-image:url('../imagens/async-fundo.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	
}
.section-05::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0, 124, 168,0.9);	
    z-index: 0;
}

.section-05-1{
	width:100%;
	height:8rem;
	background-color:transparent;
	z-index:1;
}
.section-05-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-05-2{
	width:100%;
	height:auto;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
	z-index:1;
}
.section-05-2-a{
	width:33%;
	height:auto;
	padding:1rem;
	margin:2%;
	background-color:transparent;
}
/*.section-05-2-a p{
	font-family:tommy-light;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
}*/
.section-05-2-a img{
	width:100%;
	height:auto;
	
}
.section-05-2-a figcaption{
	font-family:barlow-light;
	font-size:1rem;
	color:rgba(0,0,0,0.8);
}
.section-05-3{
	width:100%;
	height:4rem;
	text-align:center;
	z-index:1;
}
.section-05-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:tommy-regular;
	font-size:1.6rem;
	
}
.section-05-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-05{
		height:auto;
	}
	.section-05-1{
		height:auto;
	}
	.section-05-2{
		flex-direction:column;		
	}
	.section-05-2-a{
		width:100%;
		margin:auto;
	}
	.section-05-3 button{
		width:80%;
	}
	
}
/*/////Contato//////*/
.section-06{
	width:100%;
	height:62rem;
	margin-top:0rem;
	padding-top:3rem;
	padding-bottom:3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	/*background-image:url('../imagens/async-fundo.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;*/
	position:relative;
	
}
.section-06::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(250, 250, 250,0.9);	
    z-index: 0;
}
.section-06-1{
	width:100%;
	height:8rem;
	background-color:transparent;
	z-index:1;
}
.section-06-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-06-2{
	width:100%;
	height:auto;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
	z-index:1;
}
.section-06-2-a{
	width:48%;
	height:auto;
	padding:2rem;
	margin:2%;
	background-color:transparent;
}
.section-06-2-a p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	line-height:1.2rem;
	text-align:justify;
	text-indent:3rem;
}
.section-06-2-a img{
	width:100%;
	height:auto;
	opacity:0.8;
	
}
.section-06-2-a figcaption{
	font-family:barlow-light;
	font-size:1rem;
	color:rgba(0,0,0,0.8);
}
.section-06-3{
	width:100%;
	height:4rem;
	text-align:center;
	z-index:1;
}
.section-06-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;	
}
.section-06-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-06{
		height:auto;
	}
	.section-06-1{
		height:auto;
	}
	.section-06-2{
		flex-direction:column;		
	}
	.section-06-2-a{
		width:98%;
		margin:auto;
	}
	.section-06-3 button{
		width:80%;
	}	
}
.borda{
	width:100%;
	height:0.4rem;
	background-image:linear-gradient(to bottom,#F58000, #FFFFF0, #F58000);
}
/*//////Página de Serviços Abertura////////*/
.section-01-servicos{
	width:100%;
	height:42rem;
	margin-top:0rem;
	padding-top:3rem;
	padding-bottom:3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-image:url('../imagens/imagem01.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	
}
.section-01-servicos::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.6);	
    z-index: 0;
}
/*//////Página de Serviços Section-07////////*/
.section-07{
	width:100%;
	height:auto;
	margin-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	justify-content:center;
	
}

.section-07-0{
	width:100%;
	height:auto;
	z-index:1;	
}
.section-07-0 h1{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-07-1{
	width:100%;
	height:auto;
	padding:4rem;	
}
.section-07-1 p{
	font-family:barlow;
	font-size:1.6rem;
	color:rgba(0,0,0,0.8);
	text-align:center;
}
.section-07-2{
	width:100%;
	height:auto;
	margin-top:3rem;
	margin-bottom:0rem;
	display:flex;
	flex-direction:Column;
	justify-content:center;
	align-items:center;
	z-index:1;	
}
.section-07-2-1{
	width:46%;
	height:102rem;
	margin:2%;
}
.section-07-2-1 h2{
	font-family:barlow-regular;
	font-size:2.6rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-07-2-1 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	line-height:1.2rem;
	text-align:justify;
	text-indent:3rem;
}
.section-07-2-1 img{
	width:100%;
	height:auto;
}
.section-07-2-1 figcaption{
	font-family:barlow-light;
	font-size:0.8rem;
	color:rgba(0,0,0,0.6);
}
.section-07-3{
	width:100%;
	height:auto;
	margin-top:6rem;
	padding:4rem;
	background-image:url('../imagens/async-fundo-7.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;	
}

.section-07-3 h2{
	font-family:barlow-regular;
	font-size:2.3rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
	z-index:1;
}
.section-07-3 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	line-height:1.2rem;
	text-align:justify;
	text-indent:3rem;
	z-index:1;
}
@media (max-width:812px){
	/*.section-07{
		height:400rem;
	}
	.section-07-1{
		height:auto;
	}*/
	.section-07-2{
		flex-direction:column;		
	}
	.section-07-2-1{
		width:98%;
		height:auto;
		margin:auto;
		
	}
	.section-07-3{
		height:auto;
	}	
}

.section-07-4{
	width:100%;
	height:4rem;
	margin-top:6rem;
	text-align:center;
	margin-bottom:6rem;
}

.section-07-4 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-07-4 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-07-4 button{
		width:80%;
	}
}
/*//////Página Sobre section-08"////////*/
.section-01-sobre{
	width:100%;
	height:42rem;
	margin-top:0rem;
	padding-top:3rem;
	padding-bottom:3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-image:url('../imagens/imagem02.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	
}
.section-01-sobre::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.6);	
    z-index: 0;
}
.section-08{
	width:100%;
	height:52rem;
	margin-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	margin-bottom:6rem;
}
.section-08-1{
	width:100%;
	height:auto;
}
.section-08-1 h1{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;	
}
.section-08-2{
	width:100%;
	height:auto;
	margin-top:3rem;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
}
.section-08-2-1{
	width:46%;
	height:auto;
	padding:2rem;	
}
@media (max-width:812px){
	.section-08{
		height:auto;
	}
	.section-08-2{
		flex-direction:column;
	}
	.section-08-2-1{
		width:98%;
		margin:auto;
	}
}

.section-08-2-1 p{
	font-family:barlow;
	font-size:1.2rem;
	line-height:1.2rem;
	color:rgba(0,0,0,0.8);
	text-indent:3rem;
	text-align:justify;
}
.section-08-2-1 figcaption{
	font-familY:barlow-light;
	font-size:.8rem;
	color:rgba(0,0,0,0.6);
}
small{
	font-familY:barlow-light;
	font-size:.8rem;
	color:rgba(0,0,0,0.6);
}
.section-08-2-1 img{
	width:100%;
	height:auto;
	opacity:.8;
}
.section-08-3{
	width:100%;
	height:4rem;	
	text-align:center;	
}
.section-08-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-08-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-08-3 button{
		width:80%;
	}
}
.section-09{
	width:100%;
	height:72rem;
	margin-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	margin-bottom:6rem;
}
.section-09-1{
	width:100%;
	height:auto;
}
.section-09-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;	
}
.section-09-2{
	width:100%;
	height:auto;
	margin-top:3rem;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
}
.section-09-2-1{
	width:46%;
	height:auto;
	padding:2rem;	
}
@media (max-width:812px){
	.section-09{
		height:auto;
	}
	.section-09-2{
		flex-direction:column;
	}
	.section-09-2-1{
		width:98%;
		margin:auto;
	}
}

.section-09-2-1 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	line-height:1.2rem;
	color:rgba(0,0,0,0.8);
	text-indent:3rem;
	text-align:justify;
}
.section-09-2-1 figcaption{
	font-familY:barlow-light;
	font-size:.8rem;
	color:rgba(0,0,0,0.6);
}
.section-09-2-1 img{
	width:100%;
	height:auto;
	opacity:.8;
}
.section-09-3{
	width:100%;
	height:4rem;	
	text-align:center;	
}
.section-09-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-09-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-09-3 button{
		width:80%;
	}
}
.section-10{
	width:100%;
	height:86rem;
	margin-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	margin-bottom:6rem;
}
.section-10-1{
	width:100%;
	height:auto;
}
.section-10-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;	
}
.section-10-2{
	width:100%;
	height:auto;
	margin-top:3rem;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
}
.section-10-2-1{
	width:46%;
	height:auto;
	padding:2rem;	
}
@media (max-width:812px){
	.section-10{
		height:auto;
	}
	.section-10-2{
		flex-direction:column;
	}
	.section-10-2-1{
		width:98%;
		margin:auto;
	}
}

.section-10-2-1 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	line-height:1.2rem;
	color:rgba(0,0,0,0.8);	
	text-align:left;
}
.section-10-2-1 figcaption{
	font-familY:barlow-light;
	font-size:.8rem;
	color:rgba(0,0,0,0.6);
}
.section-10-2-1 img{
	width:100%;
	height:auto;	
}
.section-10-3{
	width:100%;
	height:29rem;	
	text-align:center;
	margin-bottom:6rem;	
}
/*///////CONTATOS///////*/
.section-01-contatos{
	width:100%;
	height:42rem;
	margin-top:0rem;
	padding-top:3rem;
	padding-bottom:3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-image:url('../imagens/imagem-carta.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	
}
.section-01-contatos::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.6);	
    z-index: 0;
}
.section-11{
	width:100%;
	height:42rem;
	margin-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.section-11-1{
	width:100%;
	height:auto;	
}
.section-11-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-11-2{
	width:100%;
	height:auto;
	margin-top:3rem;
	padding-left:4rem;
	padding-right:4rem;
}
.section-11-2 p{
	font-family:barlow;
	font-size:1.4rem;
	color:rgba(0,0,0,0.6);
	text-align:center;
}
.section-11-2 small{
	font-family:barlow-light;
	font-size:0.8rem;
	color:rgba(0,0,0,0.6);
}
.section-11-3{
	width:100%;
	height:21rem;
	margin-top:3rem;
	margin-bottom:6rem;
	background-image:url('../imagens/async-async.png');
	background-repeat:repeat-x;
	background-size:cover;
	background-position:center;
	position:relative;
	animation: cidade 80s linear infinite;
	
}
@keyframes cidade {
	from { background-position: 1280px 0;}
	to {background-position: -2100px 0;}
}
.section-11-3::before{
	content: "";
	position:absolute;
	top:0;
	right:0;	
	width:100%;
	height:100%;
	/*background-color:rgba(142, 174, 212,0.4);*/
	background-image:url('../imagens/banco.png');
	background-repeat:no-repeat;
	background-size:cover;
	/*background-position:bottom;*/
	z-index:0;			
}
/*.section-11-4{		
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:21rem;
	padding-top:22rem;
	background-color:rgba(142, 174, 212,0.4);
	z-index:0;
			
}*/
.section-11-4 h3{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-12{
	width:100%;
	height:42rem;	
	margin-bottom:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.section-12-1{
	width:100%;
	height:auto;
}
.section-12-1 h1{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-12-2{
	width:100%;
	height:auto;
	padding-left:4rem;
	padding-right:4rem;
}
.section-12-2 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	line-height:1.2rem;
	text-align:justify;
	text-indent:3rem;
}
.section-12-3{
	width:100%;
	height:42rem;
	margin-top:3rem;	
	/*background-image:url('../imagens/async-fundo.jpg');
	background-repeat:no-repeat;
	background-size:cover;*/
	position:relative;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
}
.section-12-3 form{
	width:52%;
	height:auto;
	border-radius:0.2rem;
	background-color:rgba(142, 174, 212,0.9);
	/*box-shadow:0.15rem 0.15rem 0.25rem rgba(0,0,0,0.8);*/
	padding:3rem;
	z-index:1;
}
@media (max-width:812px){
	.section-12{
		height:auto;
	}
	.section-12-3{
		flex-direction:column;
	}
	.section-12-3 form{
		width:100%;
	}
}

.section-12-3 legend{
	font-family:barlow-regular;
	font-size:1.3rem;
	color:rgba(0,0,0,0.8);
}
.section-12-3 #nome, #email, #telefone{
	width:100%;
	height:2rem;
	border-radius:0.1rem;
	border:none;
	border-bottom:1px solid rgba(0,0,0,0.6);
	outline:none;
	background-color:rgba(142, 174, 212,0.9);
	
}
.section-12-3 #textarea{
	width:100%;	
	border-radius:0.1rem;
	border:none;
	border-bottom:1px solid rgba(0,0,0,0.6);
	outline:none;
	background-color:rgba(142, 174, 212,0.9);
}
::-webkit-input-placeholder  { font-family:barlow-regular;font-size:1.2rem; color:rgba(16,39,45,0.6);padding-left:0.6rem; }
input:-moz-placeholder {  font-family:barlow-regular;font-size:1.2rem; color:rgba(16,39,45,0.6); padding-left:0.6rem;}
textarea:-moz-placeholder {  font-family:barlow-regular;font-size:1.2rem; color:rgba(16,39,45,0.6); padding-left:0.6rem; }
.section-12-3 #botao{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:0.1rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
	float:right;
}
.section-12-3 #botao:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}

/*////Tecnologias///////*/
.section-01-tecnologias{
	width:100%;
	height:42rem;
	margin-top:0rem;
	padding-top:3rem;
	padding-bottom:3rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-image:url('../imagens/imagem03.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	
}
.section-01-tecnologias::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.6);	
    z-index: 0;
}
.section-18{
	width:100%;
	height:16rem;
	margin-top:6rem;	
	padding-top:8rem;
	padding-left:4rem;
	padding-right:4rem;
	
}
.section-18 p{
	font-family:barlow;
	font-size:1.4rem;
	color:rgba(0,0,0,0.8);
	text-align:center;
}
.section-19{
	width:100%;
	height:auto;
	margin-top:0rem;
	margin-bottom:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.section-19-0{
	width:100%;
	height:3rem;
	margin-top:6rem;	
}
.section-19-0 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
	-webkit-font-smoothing:auto;
	-moz-osx-font-smoothing: subpixel-antialiased;
}
.section-19-1{
	width:100%;
	height:auto;
	margin-top:3rem;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	background-color:transparent;
}
@media (max-width:812px){
	.section-19{
		height:auto;
	}
	.section-19-1{
		flex-direction:column;
	}
	
}

.section-19-1-a{
	width:60%;
	height:auto;
	display:flex;
	margin-right:2rem;
	flex-direction:column;
	justify-content:center;
}
.section-19-1-b{
	width:265px;	
	height:auto;		
	padding-top:3.6rem;
	
}
.section-19-1-b img{
	width:265px;	
	height:auto;	
	border-radius:0.2rem;
	
}
.section-19-1-aa{
	width:100%;
	height:auto;
	margin-bottom:2rem;	
	
}
.section-19-1-aa h4{
	font-family:barlow-regular;
	font-size:2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;	
	-webkit-font-smoothing:auto;
	-moz-osx-font-smoothing: subpixel-antialiased;	
}
.section-19-1-ab{
	width:100%;
	height:auto;
	margin-bottom:1rem;
	padding-left:1rem;
	
}
.section-19-1-ab p{
	font-family:barlow-regular;
	font-size:1.2rem;
	line-height:1.5rem;
	color:rgba(0,0,0,0.8);	
	text-align:justify;	
	text-indent:2rem;
	-webkit-font-smoothing:auto;
	-moz-osx-font-smoothing: subpixel-antialiased;
}
@media (max-width:812px){
	
	.section-19-1-a{
		width:96%;
		margin:auto;
	}
	.section-19-1-b{
		width:100%;
		text-align:center;
	}
}
.section-20{
	width:100%;
	height:auto;
	margin-top:6rem;
	margin-bottom:6rem;
	display:flex;
	flex-direction:column;
	justify-content:flex-start;
	align-items:center;
}
.section-20-1{
	width:100%;
	height:auto;	
}
.section-20-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-20-2-1 h4{
	font-family:barlow-regular;
	font-size:2.3rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-20-2{
	width:100%;
	height:auto;
	margin-top:3rem;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
}
.section-20-2-1{
	width:60%;
	height:124rem;
	padding-left:3rem;
	margin:2%;
}
.section-20-2-1 h2{
	font-family:barlow-regular;
	font-size:2.3rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-20-2-1 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	line-height:1.2rem;
	text-indent:3rem;
	text-align:justify;
}
.section-20-2-2{
	width:38%;
	height:124rem;	
	background-image:url('../imagens/sol.jpg');
	background-repeat:no-repeat;
	background-size:cover;
}

@media (max-width:812px){
	.section-20-2{
		flex-direction:column;
	}
	.section-20-2-1{
		width:100%;
		height:auto;
	}
	.section-20-2-2{
		width:100%;
		height:auto;
	}
}
.section-20-2-2 img{
	width:100%;
	height:auto;
}
.section-20-3{
	width:100%;
	height:auto;
	text-align:center;
	margin-top:6rem;
}
.section-20-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-20-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-20-3 button{
		width:80%;
	}
}
.section-21{
	width:100%;
	height:auto;
	margin-top:6rem;
	margin-bottom:8rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.section-21-1{
	width:100%;
	height:auto;	
}
.section-21-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-21-2-1 h4{
	font-family:barlow-regular;
	font-size:2.3rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-21-2{
	width:100%;
	height:auto;
	margin-top:3rem;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
}
.section-21-2-1{
	width:38%;
	height:200rem;	
	/*background-image:url('../imagens/sol.jpg');
	background-repeat:no-repeat;
	background-size:cover;*/
}
.section-21-2-1 img{
	width:100%;
	height:auto;
}
.section-21-2-1 figcaption{
	font-family:barlow-light;
	font-size:1rem;
	color:rgba(0,0,0,0.8);
}
@media (max-width:812px){
	.section-21{
		height:auto;
	}
	.section-21-2{
		flex-direction:column;
	}
	.section-21-2-1{
		width:100%;
		height:auto;		
	}	
}

.section-21-2-2{
	width:60%;
	height:200rem;
	padding-right:3rem;
	margin:2%;
}
@media (max-width:812px){
	
	.section-21-2-2{
		width:100%;
		height:auto;		
	}	
}

.section-21-2-2 h2{
	font-family:barlow-regular;
	font-size:2.3rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-21-2-2 h4{
	font-family:barlow-regular;
	font-size:2.1rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}

.section-21-2-2 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	line-height:1.2rem;
	text-indent:3rem;
	text-align:justify;
}
.section-21-2-2 span{
	font-family:barlow;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);	
	text-align:center;
}
.section-21-3{
	width:100%;
	height:auto;
	text-align:center;
	margin-top:6rem;
}
.section-21-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-21-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-21-2-2{
		width:90%;
		margin:auto;
		padding-right:0rem;
	}
	.section-21-3 button{
		width:80%;
	}
}
/*/////POTFOLIO///////*/
.section-01-portfolio{
	width:100%;
	height:62rem;
	margin-top:0rem;	
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-image:url('../imagens/imagem04.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	
}
.section-01-portfolio::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.6);	
    z-index: 0;
}
.section-22{
	width:100%;
	height:42rem;
	margin-top:0rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.section-22-1{
	width:100%;
	height:auto;	
}
.section-espaco-00{
	height:10rem;
}
.section-22-1 h1{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-22-2{
	width:100%;
	height:auto;
	margin-top:6rem;
	display:flex;
	flex-direction:row;
	justify-content:center;
	align-items:center;
}
.section-22-2-1{
	width:33%;
	height:auto;
	margin:2%;
}
.section-22-3{
	width:100%;
	height:auto;
	text-align:center;
	
}
.section-22-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-22-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-22{
		height:auto;
	}
	.section-22-2{
		flex-direction:colum;
	}
	.section-22-2-1{
		width:100%;		
		
	}
	.section-22-3 button{
		width:80%;
	}
}
/*//////Section-23////////*/
.section-23{
	width:100%;
	height:42rem;
	margin-top:6rem;
	margin-bottom:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.section-23-1{
	width:100%;
	height:auto;	
}
.section-23-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-23-2{
	width:100%;
	height:auto;
	margin-top:6rem;
	display:flex;
	flex-direction:row;
	justify-content:center;
	align-items:center;
}
.section-23-2-1{
	width:33%;
	height:auto;
	margin:2%;
}
.section-23-3{
	width:100%;
	height:auto;
	text-align:center;
	
}
.section-23-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-23-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-23{
		height:auto;
	}
	.section-23-2{
		flex-direction:colum;
	}
	.section-23-2-1{
		width:100%;		
		
	}
	.section-23-3 button{
		width:80%;
	}
}
/*////Blog/////*/
.section-01-blog{
	width:100%;
	height:42rem;
	margin-top:0rem;	
	display:flex;
	flex-direction:column;
	justify-content:center;
	background-image:url('../imagens/imagem05.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	
}
.section-01-blog::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.6);	
    z-index: 0;
}

.section-24{
	width:100%;
	height:42rem;
	margin-top:6rem;
	margin-bottom:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.section-24-1{
	width:100%;
	height:auto;	
}
.section-24-1 h1{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-24-2{
	width:100%;
	height:auto;
	margin-top:6rem;
	display:flex;
	flex-direction:row;
	justify-content:center;
	align-items:center;
}
.section-24-2-1{
	width:46%;
	height:auto;
	margin:2%;
}
.section-24-2-1 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	line-height:1.2rem;
	text-indent:3rem;
	text-align:justify;
}
.section-24-2-1 img{
	width:50%;
	height:auto;
}
.section-24-3{
	width:100%;
	height:auto;
	text-align:center;	
}
.section-24-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-24-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-24{
		height:auto;
	}
	.section-24-2{
		flex-direction:colum;
	}
	.section-24-2-1{
		width:100%;		
		
	}
	.section-24-3 button{
		width:80%;
	}
}
/*/////Section-25//////*/
.section-25{
	width:100%;
	height:42rem;
	margin-top:6rem;
	margin-bottom:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.section-25-1{
	width:100%;
	height:auto;	
}
.section-25-1 h2{
	font-family:barlow-medium;
	font-size:3.2rem;
	color:#FA420D;
	text-shadow:0.05rem 0.05rem 0.1rem rgba(0,0,0,0.6);
	text-align:center;
}
.section-25-2{
	width:100%;
	height:auto;
	margin-top:6rem;
	display:flex;
	flex-direction:row;
	justify-content:center;
	align-items:center;
}
.section-25-2-1{
	width:33%;
	height:auto;
	margin:2%;
}
.section-25-2-1 p{
	font-family:barlow-regular;
	font-size:1.2rem;
	color:rgba(0,0,0,0.8);
	line-height:1.2rem;
	text-indent:3rem;
	text-align:justify;
}
.section-25-2-1 img{
	width:50%;
	height:auto;
}

.section-25-3{
	width:100%;
	height:auto;
	text-align:center;
	
}
.section-25-3 button{
	width:20%;
	height:3rem;
	color:rgba(0,0,0,0.8);
	background-color:#F58000;
	box-shadow:0.1rem 0.1rem 0.1rem rgba(0,0,0,0.8);
	border-radius:1.5rem;
	border:none;
	font-family:barlow-regular;
	font-size:1.6rem;
		
}
.section-25-3 button:hover{
	color:rgba(255,255,255,1);
	background-image:linear-gradient(to right,#F7A34A,#3D08A8,#11A87E,#00B4F5);
	cursor:pointer;
}
@media (max-width:812px){
	.section-25{
		height:auto;
	}
	.section-25-2{
		flex-direction:colum;
	}
	.section-24-2-1{
		width:100%;		
		
	}
	.section-24-3 button{
		width:80%;
	}
}
/*CSS modal cadastro*/	
.modal-cadastro{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.6);    
	display:none;
    /*visibility: hidden;*/
    transform: scale(1.5);
    transition: visibility 0s linear 0.5s, opacity 0.5s 0s, transform 0.5s;
	z-index:100;
}	
.modal-content-cadastro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
	background-color:#4682B4;
    width: 50%;
	height:24rem;		
	box-shadow:0px 4px 6px rgba(0,0,0,0.5);
    border-radius: 0.5rem;
	display:flex;
	flex-direction:column;
	align-items:center;
	padding:2rem;
	
    }
.modal-content-cadastro img{
	width:100%;
	height:auto;
}
@media(max-width:812px){
	.modal-content-cadastro{
		
		width:70%;
		height:auto;
	}
}

.buttom-cadastro{
	width:100%;
	height:1.5rem;
    text-align:right;
	margin-top:0;
}
.close-button-cadastro {
    float: right;
	width:2rem;
	height:2rem;
	line-height:2rem;
	font-size:1.5rem;
	font-weight:bold;
	text-align:center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
	
}
.close-button-cadastro:hover {
    background-color: darkgray;
}
.show-modal-cadastro {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.modal-cadastro-01{
	width:100%;
	height:auto;
	display:flex;
	flex-direction:column;
	align-items:center;
}
.modal-cadastro-01 p{
	font-family:barlow-medium;
	font-size:2rem;
	color:rgba(0,0,0,0.8);
}
.modal-cadastro-01 h2{
	font-family:star;
	font-size:10rem;
	color:#BEA645;
	text-shadow:0.1rem 0.1rem 0.2rem rgba(0,0,0,0.8);
	letter-spacing:-12px;
}
.modal-cadastro-01 h2:hover{
	color:#F58000;
	cursor:pointer;
}	
/*///////Rodapé///////*/
.footer{
	width:100%;
	height:42rem;
	margin-top:0rem;
	padding-top:2rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	background-image:url('../imagens/async-fundo.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	position:relative;
	
}
.footer::after {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	background-color:rgba(0,0,0,0.9);	
    z-index: 0;
}
.footer-01{
	z-index:1;
	width:20%;
	height:auto;
}
.footer-01 img{
	width:100%;
	height:auto;
}
.footer-02{
	width:100%;
	height:6rem;
	z-index:1;
}
.footer-02 h2{	
	text-align:center;
	font-family:social;
	font-size:3rem;
	text-shadow:1px 1px 1px #000;
	
}
.footer-02 h4{
	text-align:center;
	font-family:social;
	font-size:1.6rem;
	text-shadow:1px 1px 1px #000;
}
.footer-02 a:nth-child(1) {
	
	opacity:0.4;
}
.footer-02 a:nth-child(1):hover{
	opacity:.5;
	text-decoration:none;
}
.footer-02 a:nth-child(2) {
	
	opacity:0.4;
}
.footer-02 a:nth-child(2):hover{
	opacity:.5;
	text-decoration:none;
}
.footer-02 a:nth-child(3) {
	
	opacity:0.4;
}
.footer-02 a:nth-child(3):hover{
	opacity:.5;
	text-decoration:none;
}
.footer-02 a:nth-child(4) {
	
	opacity:0.4;
}
.footer-02 a:nth-child(4):hover{
	opacity:.5;
	text-decoration:none;
}
.footer-02 a:nth-child(5) {
	
	opacity:0.4;
}
.footer-02 a:nth-child(5):hover{
	opacity:.5;
	text-decoration:none;
}
.footer-02 a:nth-child(6) {
	
	opacity:0.4;
}
.footer-02 a:nth-child(6):hover{
	opacity:.5;
	text-decoration:none;
}
.footer-03{
	width:100%;
	height:auto;
	display:flex;
	flex-direction:rows;
	justify-content:center;
	align-items:center;
	background-color:transparent;
	z-index:1;
}
@media (max-width:812px){
	.footer{
		height:auto;
		
	}
	.footer-03{
		flex-direction:column;
	}
}

.footer-03-1{
	width:33%;
	height:auto;
	margin:2%;
	padding:2%;
}
.footer-03-1 p{
	font-family:barlow-light;
	font-size:1rem;
	color:#FFFFF0;
	text-align:center;
}
.footer-03-1 small{
	font-family:barlow-light;
	font-size:0.8rem;
	color:#FFFFF0;
	text-align:center;
}
@media (max-width:812px){
	.footer-03-1{
		width:100%;
		
	}
	
}
.footer-04{
	width:100%;
	height:auto;
	text-align:center;
	z-index:1;
}
.footer-04 p{
	font-family:barlow-light;
	font-size:0.8rem;
	color:#FFFFF0;
}
.footer-04 h3{
	font-family:barlow-light;
	font-size:1.5rem;
	color:#FFFFF0;
	text-align:center;
}


