@charset "utf-8";
/* CSS Document */

/* CONFIGURAÇÃO DO SITE */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap');

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

.whatsaap a{
	position:fixed; 
	bottom:2%;
	right:2%;
	width:60px;
	height:60px;
	font-size:200%;
	line-height:60px;
	text-align:center;
	border-radius:50%;
	background-color:#009649;
	color:#FFF;
	transition: all 0.8s ease;
	z-index:10;
}

.whatsaap a:hover{
	background-color:#373435;
	color:#FFF;
}

/* FIM CONFIGURAÇÃO DO SITE */



/* TOPO INFORMATIVO */

header{
	width:100%;
	position:relative;
	transition: 2s;
	background:url(../img/bg-menu.jpg);
	z-index: 9;
}

header.rolagem{
	background-color:#FBFBFB;
	position:sticky;
	top: 0;
	transition:1s;
}

.topo-info{
	color:#d6d6d6;
	font-size:80%;
	border-bottom:1px solid #ccc;
	background-color: #373435;
}

.topo-centro{
	padding:8px 0;
	display:flex;
	align-items: center;
	justify-content: space-between;
}

.topo-centro span{
	font-family: 'Lato', sans-serif;
	font-weight:normal;
}

.topo-centro a, .topo-centro a:active{
	margin-left:10px;
	color:#d6d6d6;
}

.topo-centro a:hover{
	color:#FBFBFB;
	transition: 0.3s;
}

/* MOBILE */
@media(max-width: 768px){
	.topo-centro{
		padding:10px 0;
		font-size:70%;
	}
	
	.topo-redes-sociais i{
		font-size:120%!important;
	}
}

/* SITE PC */
@media(min-width: 768px){
	.topo-centro{
		max-width:1200px;
		margin:auto;
		display:flex;
		align-items: center;
		justify-content: space-between;
	}
}

.topo-redes-sociais a i{
	width:25px;
	height: 25px;
	line-height: 25px;
	float:left;
	color:#d6d6d6;
	text-align:center;
	margin-left:10px;
}

.topo-redes-sociais a:hover i{
	transition: 0.3s;
	color:#FFF;
}

/* SITE PC */
@media(min-width: 768px){
	.topo-redes-sociais{
		font-size:100%;
	}
}


/* FIM TOPO INFORMATIVO */



/* LOGOTIPO E MENU */

.topomenu section{
	width:100%;
}

.topomenu ul{
	list-style:none;
}

.topomenu ol a{
	border:2px solid #0D161B;
	padding:15px 20px;
	margin-top:-10px;
	text-transform:uppercase;
	color:#0D161B;
	text-decoration:none;
	transition: all 0.3s ease;
	border-radius:5px;
}

.topomenu ol a:hover{
	background-color:#0D161B;
	transition: all 0.8s ease;
	color:#FFF;
}

/* MOBILE */
@media(max-width: 768px){
	.topomenu{
		position:relative;
		display:flex;
		align-items: center;
		justify-content: space-between;
		margin:10px;
	}
	
	.topomenu section img{
		width:20%;
	}

	.menutopo span{
		transition:0.5s linear;
		border:1px solid #0D161B;
		border-radius:5px;
		color:#000;
		background-color:#FFF;
		cursor:pointer;
		position:relative;
		padding:5px 20px;
	}
	
	.menutopo span i{
		position:absolute;
		right:25%;
		top:20%;
		transition:0.5s linear;
		font-size:130%;
	}

	#itensmenus{
		display:none;
    position: absolute;
    top: 9rem;
    transition: all 250ms ease;
		background-color:#FFF;
		opacity:0;
		left:0px;
		width:99%;
		font-size:70%;
		box-shadow: -1px 1px 19px -1px rgba(0,0,0,0.22);
		border-radius:0 0px 5px 5px;
	}
	
	.menutopo #itensmenus {
		opacity:1;
	}

	.topomenu ul li a{
		color:#000;
		display:block;
		padding:8px 0 8px 35px;
		text-decoration:none;
		text-transform:uppercase;
		transition:0.5s linear;
	}
	
	.topomenu ul li a:hover{
		background-color:#E4E7EC;
		color:#0D161B;
	}
	
	.topomenu ul li ul li a{
		padding:8px 0 8px 65px;
	}

	.submenuitens,.submenuitens2{
		display:none;
	}
	
	.topomenu ol{
		padding:20px 0 20px 30px;
	}
	
	.submenu-sem-link{
		display:none!important;
	}
	
	.submenu-sem-link-mobile{
		display:block;
	}
}

/* SITE PC */
@media(min-width: 768px){
	.topomenu{
		width:1200px;
		margin:5px auto 0 auto;
		display:flex;
		align-items: center;
		justify-content: space-between;
		font-size:100%;
	}
	
	.topomenu section{
		width:20%;
		text-align:left;
	}
	
	.topomenu section img{
		width:50%;
	}
	
	.topomenu span{
		display:none;
	}
	
	.topomenu ul>li, .topomenu ul>ol{
		display:inline-block;
		margin-left:40px;
	}
	
	.topomenu ul li a {
		text-decoration: none;
		color:#0D161B;
		margin-right: 10px;
		position: relative;
		transition: all 0.3s ease;
	}
	
	.topomenu ul li a:after {
		content: "";
		position: absolute;
		width: 10%;
		height: 2px;
		bottom: -5px;
		left: 0;
		background-color: #CCC;
		visibility:hidden;
		transform: scaleX(1);
		transition: all 0.3s ease;
	}
	
	.topomenu ul li a:hover:after {
		visibility: visible;
		transform: scaleX(1);
		color:#666;
		width: 100%;
	}

	.submenu-sem-link-mobile{
		display:none;
	}
	
	.submenuitens{
		display: block;
    position: absolute;
    top: 8rem;
    transition: all 250ms ease;
		visibility:hidden;
		opacity:0;
		width:20%;
		font-size:85%;
	}

	#itenssubmenus, #itenssubmenus2{
		background-color:#FFF;
		box-shadow: -1px 1px 19px -1px rgba(0,0,0,0.22);
		border-radius:0 0px 5px 5px;
	}
	
	#itensmenus i{
		font-size:60%;
		color:#666;
	}
	
	#itensmenus li:hover>.submenuitens {
		visibility:visible;
		top: 7.5rem;
		opacity:1;
	}
	
	.submenuitens li{
		display:block!important;
		padding:0px 0;
		margin-left:0px!important;
	}
	
	.submenuitens li a{
		display:block;
		padding:10px 30px;
		margin:0px;
		margin-left:0px;
	}
	
	.submenuitens li a:after {
		transform:none!important;
		background-color:none!important;
		margin:0!important;
		top:0!important;
		position:relative!important;
	}
	
	.submenu:hover .submenuitens{
		display:block;
		transition:1s;
	}
	
	.submenuitens li:hover{
		background-color:#CCC;
		margin-left:0px;
		transition:1s;
		border-radius:0 0px 5px 5px;
	}
}

/* FIM LOGOTIPO E MENU */



/* BANNER HOME */
.conteiner{
	width:100%;
	position:relative;
}

.conteiner .banner-conteiner .banner .banner-imagem{
	text-align:center;
	animation: slideContent .4s linear .4s backwards;
}

/* ANIMAÇÃO BANNER */
@keyframes slideContent{
	0%{
		opacity:0;
		transform:translateY(50px);
	}
}
@keyframes slideContentY{
	0%{
		opacity:0;
		transform:translateX(-50px);
	}
}
/* FIM ANIMAÇÃO BANNER */

.conteiner .banner-conteiner .banner .banner-imagem h3{
	font-size: 50px;
	color:f4a6fe;
	color:#373435;
	line-height:100%;
	font-family: 'PT Serif';
	font-style: italic;
	
}

.conteiner .banner-conteiner .banner .banner-imagem p{
	font-size:16px;
	color:#373435;
	margin:20px 0;
}

.conteiner .banner-conteiner .banner .banner-imagem .botao-banner{
	display:inline-block;
	background-color: #373435;
	color:#E4E7EC;
	font-size:17px;
	padding:15px 40px;
	border-radius:30px;
	text-decoration:none;
	text-transform:uppercase;
	margin-top: 40px;
}

.conteiner .banner-conteiner .banner .banner-imagem .botao-banner:hover{
	background:#373435;
	color:#FFF;
	transition: all 0.8s ease;
}

.conteiner .banner-conteiner{
	display:none;
}

.conteiner .banner-conteiner.ativo{
	display:block;
}

.banner-conteiner:nth-child(1){
	background:url(../img/banner-home-aviso.jpg);
	background-position:center;
	animation-duration: 1s;
  animation-name: slideContentY;
	background-repeat:no-repeat;
	background-size:cover;
}

.conteiner .banner-conteiner:nth-child(2){
	background:url(../img/banner.jpg);
	background-position:center;
	animation-duration: 1s;
  animation-name: slideContentY;
	background-repeat:no-repeat;
	background-size:cover;
}

.conteiner .banner-conteiner:nth-child(3){
	background:url(../img/banner.jpg);
	background-position:center;
	animation-duration: 1s;
  animation-name: slideContentY;
	background-repeat:no-repeat;
	background-size:cover;
}

.conteiner #prev, .conteiner #next{
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	color:#0D161B;
	background-color:#E4E7EC;
	height:50px;
	width:50px;
	line-height:50px;
	font-size:25px;
	text-align:center;
	cursor:pointer;
}

.conteiner #prev:hover, .conteiner #next:hover{
	background-color:#000;
	transition: all 0.8s ease;
	color:#E4E7EC;
}

.conteiner #prev{
	left:20px;
}

.conteiner #next{
	right:20px;
}

/* SITE PC */
@media(min-width: 768px){
	.conteiner .banner-conteiner{
		height:100vh;
	}
	
	.banner{
		width:1200px;
		margin:0 auto;
		padding-top:15%;
	}

	.conteiner .banner-conteiner .banner .banner-imagem{
		text-align:left;
		right: 10%;
		position: absolute;
		width: 30%;
	}
}

/* MOBILE */
@media(max-width: 768px){
	.conteiner .banner-conteiner{
		height:70vh;
	}
	
	.banner{
		width:70%;
		padding-top:25%;
		margin:0 auto;
	}
	
	.conteiner #prev, .conteiner #next{
		top:50%;
		height:35px;
		width:35px;
		line-height:35px;
		font-size:15px;
	}
	
	.conteiner .banner-conteiner .banner .banner-imagem p{
		font-size:15px;
		color:#FFF;
	}
	
	.conteiner .banner-conteiner .banner .banner-imagem h3{
		font-size:28px;
	}
	
	.conteiner .banner-conteiner .banner .banner-imagem .botao-banner{
		display:block;
		width:60%;
		margin:30px auto 0 auto;
		font-size:0.9em;
	}
	
}

/* FIM DO BANNER HOME */



/* BANNER INTERNO */

.banner-interno{
	height:80vh;
	position:relative;
	margin-bottom:30px;
}

.banner-interno.empresa{
	background:url(../img/bg-home-contador.jpg);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}

.banner-interno.desenho-industrial{
	background:url(../img/banner-desenho-industrial.png);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}

.banner-interno.registro-de-marcas{
	background:url(../img/banner-registro-de-marcas.png);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}

.banner-interno.registro-de-patentes{
	background:url(../img/banner-registro-de-patentes.png);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}

.banner-interno.avaliacao-de-marcas{
	background:url(../img/banner-avaliacao-de-marcas.png);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}


.banner-interno.contato{
	background:url(../img/banner-contato.png);
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}

.legenda-banner span{
	font-size:2.2em;
	border:5px solid #CCC;
	position: absolute;
	padding:15px 70px;
	top: 45%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	color:#FFF;
	text-transform:uppercase;
	text-align:center;
}

.legenda-banner p{
	font-size:1.1em;
	position: absolute;
	top: 70%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	color:#FFF;
}

.legenda-banner a{
	color:#FFF;
	text-decoration:none;
}

.legenda-banner a:hover{
	color:#E4E7EC;
	text-decoration:underline;
}

/* FIM DO BANNER INTERNO */



/* CONTEUDO DO SITE GLOBAL */

.conteudo{
	width:100%;
}

.conteudo h1, .conteudo h2{
	font-size:1.9em;
	color:#333;
	text-transform:uppercase;
	font-family: 'PT Serif', serif;
}

/* SITE PC */
@media(min-width: 768px){
	.centralizar{
		width:1200px;
		margin:0 auto;
	}
}

/* MOBILE */
@media(max-width: 768px){
	.centralizar{
		width:90%;
		margin:auto auto;
	}
}

/* FIM CONTEUDO DO SITE GLOBAL */


/* HOME */

.home-solucoes{
	margin:-50px auto 0px auto;
	position: relative;
	z-index: 5;
}

.home-solucoes div div:hover{
	cursor:pointer;
}

.home-solucoes h2 {
	color:#FFF;
	position: relative;
	transition: all 0.3s ease;
	font-size:1.3em;
	margin-bottom:20px;
	padding-bottom:10px;
}

.home-solucoes div div a{
	text-decoration:none;
	color:#FFF;
}

.home-solucoes i {
	font-size:180%;
	margin-bottom:20px;
}

/* SITE PC */
@media(min-width: 768px){	

	.home-solucoes div{
		display:flex;
		justify-content: space-between;
	}
	
	.home-solucoes div div{
		width:33%;
	}
}

/* MOBILE */
@media(max-width: 768px){	

	.home-solucoes div div{
		width:80%;
		margin:20px auto;
	}
}

.home-solucoes div div{
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align:center;
	height:30vh;
	background-color: #373435;
}

.home-solucoes div div p{
	width:90%;
	color:#FFF;
	margin:0 auto;
}











.home-empresa {
	padding:0px 0 40px 0;
}

.home-empresa section p{
	padding-bottom: 20px;
	text-align:justify;
}

.home-empresa section span a{
	display:inline-block;
	background-color: #373435;
	color:#E4E7EC;
	font-size:17px;
	padding:15px 40px;
	border-radius:30px;
	text-decoration:none;
	text-transform:uppercase;
}

@media(min-width: 768px){

	.home-empresa > div {
		display:flex;
		justify-content: space-between;
		justify-items: center;
	}

	.home-empresa div div{
		width:30%;
		margin:auto auto;
		font-style: italic;
	}
	
	.home-empresa div section{
		width:65%;
		margin:5% 5% 0 0%;
		text-align:right;
	}

}

@media(max-width: 768px){
	.home-empresa {
		height:140vh;
	}

	.home-empresa > div > div {
		display:column;
		justify-content: center;
		width:80vw;
		text-align:center;
		margin:0 auto;
		padding:20px 0 30px 0;
	}
	
	.home-empresa div div div{
		width:90%;
		margin:20px 0 50px 0;
	}
	
	.home-empresa img{
		width:100%;
	}
	
}




.home-contador{
	width: 100%;
	padding:100px 0;
	background:url(../img/bg-home-contador.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
}

.home-contador > div > h2{
	text-align: center;
	color: #FFF;
	margin-bottom: 30px;
}

.home-contador > div > p{
	text-align: center;
	color: #FFF;
	margin-bottom: 30px;
}

.home-contador-conteudo div{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.home-contador-conteudo i {
  color: #FBFBFB;
  font-size: 2.5em;
  text-align: center;
}

.home-contador-conteudo span.num {
  color: #FBFBFB;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
	font-family: 'PT Serif', serif;
}

.home-contador-conteudo span.text {
  color: #FBFBFB;
  font-size: 1em;
  text-align: center;
  pad: 0.7em 0;
  font-weight: 400;
	font-family: 'PT Serif', serif;
}

@media(min-width: 768px){
	.home-contador-conteudo{
		display: flex;
		justify-content: space-between;
	}

  .home-contador-conteudo div{
    height: 26vmin;
    width: 26vmin;
    font-size: 16px;
	padding: 1em 0;
  }
}

@media(max-width: 768px){
  .home-contador-conteudo {
    width: 89vw;
		
  }
	
  .home-contador-conteudo div{
    width: 89vw;
    font-size: 14px;
		padding:30px 0;
  }
}






.home-servicos{
	margin:50px auto;
}

.home-servicos div div:hover{
	box-shadow: -1px 1px 19px -1px rgba(0,0,0,0.22);
	cursor:pointer;
}

.home-servicos h1 {
	text-align:center;
	margin-bottom:10px;
}

.home-servicos > p {
	text-align:center;
	font-size: 110%;
	margin-bottom:30px;
}

.home-servicos h2 {
	color:#373435;
	position: relative;
	transition: all 0.3s ease;
	font-size:1.3em;
	padding-bottom:10px;
}

.home-servicos div div a{
	text-decoration:none;
	color:#373435;
}

.home-servicos i {
	font-size:180%;
	margin-bottom:20px;
}


/* SITE PC */
@media(min-width: 768px){	

	.home-servicos div{
		display:flex;
		justify-content: space-between;
	}
	
	.home-servicos div div{
		width:24%;
		margin-bottom: 10px;
	}
}

/* MOBILE */
@media(max-width: 768px){	

	.home-servicos div div{
		width:80%;
		margin:20px auto;
	}
}

.home-servicos div div{
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align:center;
	border:1px solid #CCC;
	height:45vh;
}

.home-servicos div div p{
	width:90%;
	color:#666;
	margin:0 auto;
}




















.home-depoimento {
  position: relative;
  overflow: hidden;
  padding: 20px;
	margin:30px 0;
}

.home-depoimento > h2{
	text-align:center;
	font-size:280%;
}

.home-depoimento-conteudo {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.home-depoimento-conteudo::-webkit-scrollbar {
  display: none;
}

.home-depoimento-box {
  flex: 0 0 auto;
  margin: 40px 0px 40px 0px;
}

.home-depoimento-box > div{
	padding:50px 0px;
	width:100%;
	position:relative;
}

.home-depoimento-box > div > div:first-child{
	border:1px solid #CCC;
	width:60%;
	margin:0 auto 20px auto;
	padding:20px;
}

.home-depoimento-box > div > div i{
	position:absolute;
	top:35px;
	font-size:200%;
}

.home-depoimento-box > div > div h2{
	font-size:120%;
	margin-bottom:20px;
}

.home-depoimento-box > div > div:last-child{
	width:60%;
	padding:20px;
	margin:0 auto;
	display:flex;
}

.home-depoimento-box > div > div:last-child img{
	border-radius:50%;
	width:12%;
	margin-right:20px;
}

.home-depoimento-box > div > div:last-child section{
	display:flex;
	flex-direction: column;
	align-content: center;
	margin:auto 0;
}

@media(min-width: 768px){

.home-depoimento-box {
  width: 50%;
}
.home-depoimento-box > div > div:first-child{
	height:20vh;
}
}

@media(max-width: 768px){

.home-depoimento-box {
  width: 100%;
}

}


.pre-btn,
.nxt-btn {
  border: none;
  position: absolute;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  
	padding:20px;
	transition: all 0.8s ease;
}

.pre-btn {
  left: 2%;
  transform: rotate(180deg);
}

.nxt-btn {
  right: 2%;
}

.pre-btn:hover,
.nxt-btn:hover{
	background-color:#999;
	transition: all 0.8s ease;
}

.pre-btn img,
.nxt-btn img {
  opacity: 1;
}

.pre-btn:hover img,
.nxt-btn:hover img {
  opacity: 0.9;
}




/* FIM HOME */



/* CONTEUDO PÁGINAS */

/* SITE PC */
@media(min-width: 768px){
	.empresa-conteudo{
		display:flex;
		justify-content: space-between;
		width:100%;
	}
	
	.empresa-conteudo section{
		width:65%;
	}
	
	.empresa-conteudo div{
		width:30%;
	}
	
}
.empresa-conteudo div img{
	border:1px solid #000;
	width:100%;
}
	
.empresa-conteudo p{
	line-height:200%;
}

.empresa-conteudo h1{
	margin-bottom:30px;
}

.empresa{
	background-color:#333333;
}

.empresa .centralizar div section{
	background-color:#FFF;
}

/* SITE PC */
@media(min-width: 768px){
	.empresa{
		padding:50px 0;
	}

	.empresa .centralizar div{
		display:flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.empresa .centralizar div section{
		width:32%;
		height:50vh;
	}
}

/* MOBILE */
@media(max-width: 768px){
	.empresa{
		padding:10px 0 30px 0;
	}
	
	.empresa .centralizar div section{
		width:100%;
		padding-bottom:30px;
		height:50vh;
	}
	
	.empresa .centralizar div section h3{
		padding-top:50px;
	}
}

.empresa .centralizar div section p{
	font-size: 0.9em;
	color:#85888A;
}

.empresa .centralizar div section h3{
	position:relative;
	display:block;
	padding-bottom:40px;
	margin:50px 0 20px 0;
	font-weight:normal;
	text-transform:uppercase;
	color: #333;
	text-align:center;
}

.empresa .centralizar div section h3:after{
	content:"";
	position:absolute;
	bottom:10px;
	left:50%;
	display:inline-block;
	width:30px;
	margin-left:-11px;
	border-bottom:#DF303B solid 2px;
}

.empresa .centralizar div section p{
	width:80%;
	margin:0 auto;
}


.depoimento{
  position: relative;
  padding: 20px;
	margin:30px 0;
}

.depoimento h1{
	margin-bottom:30px;
}

.depoimento-box > div{
	padding:30px 0px;
	width:100%;
	position:relative;
}

.depoimento-box > div > div:first-child{
	border:1px solid #CCC;
	padding:20px;
}

.depoimento-box > div > div i{
	position:absolute;
	top:15px;
	font-size:200%;
}

.depoimento-box > div > div h2{
	font-size:120%;
	margin-bottom:20px;
}

.depoimento-box > div > div:last-child{
	padding:10px;
	display:flex;
}

.depoimento-box > div > div:last-child img{
	border-radius:50%;
	width:12%;
	margin-right:20px;
}

.depoimento-box > div > div:last-child section{
	display:flex;
	flex-direction: column;
	align-content: center;
	margin:auto 0;
}

@media(min-width: 768px){

	.depoimento-box {
		width: 100%;
		display:flex;
	}
	.depoimento-box > div > div:first-child{
		height:30vh;
		width:70%;
	}
	.depoimento-box > div > div:last-child{
		width:80%;
	}
}

@media(max-width: 768px){

	.depoimento-box {
		width: 100%;
	}

}


/* SITE PC */
@media(min-width: 768px){
	.contato-formulario{
		display:flex;
		justify-content: space-between;
	}
}

/* MOBILE */
@media(max-width: 768px){
	.contato-formulario form{
		margin-top:30px;
	}
}

.contato-formulario section h1{
	margin-bottom:30px;
}

.contato-formulario section p{
	text-align:justify;
	font-size:1.2em;
	line-height:200%;
	width:80%;
}

.contato-formulario i{
	color:#666;
}

.contato-formulario input{
	padding:5px 0 5px 5px;
	margin-bottom:5px;
	width:100%;
}

.contato-formulario textarea{
	width:100%;
	background-color:#FFF;
	padding:10px 0 10px 10px;
	margin-bottom:5px;
	height:20vh;
}

.contato-formulario :focus{
	outline:none;
}

.contato-formulario button{
	margin-top:10px;
	background-color:#0D161B;
	color:#FFF;
	width:100%;
	padding:10px 0;
	border:0;
	border-radius:5px;
	cursor:pointer;	
	text-transform:uppercase;
}

.contato-formulario button:hover{
	background-color:#85888A;
	transition: all 0.8s ease;
}
/* FIM DO CONTEUDO PÁGINAS */



/* PARALLAX */

.parallax{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding:100px 0;
	width:100%;
	position:relative;
	overflow:hidden;
	background-position:50% 50%;
	background-repeat:no-repeat;
	background-attachment:fixed;
	background-size:cover;
	margin-top:30px;
}

.parallax h4{
	color:#FFF;
	text-align:center;
	margin:0 auto 50px auto;
	text-transform:uppercase;
	font-size:1.1em;
}

.parallax input{
	border:1px solid #000;
	background-color:#FFF;
	padding:10px 0 10px 10px;
	margin-bottom:5px;
}

/* SITE PC */
@media(min-width: 768px){
	.parallax form div{
		display:flex;
		justify-content: space-between;
	}
	.parallax input{
		width:95%;
	}
	.parallax h4{
		width:40%;
	}
}

/* MOBILE */
@media(max-width: 768px){
	.parallax input{
		width:98%;
	}
	.parallax h4{
		width:100%;
	}
}

.parallax section{
	width:100%;
}

.parallax section textarea{
	width:98%;
	background-color:#FFF;
	padding:10px 0 10px 10px;
	margin-bottom:5px;
	height:23vh;
}

.parallax :focus{
	outline:none;
}

.parallax button{
	margin-top:10px;
	background-color:#E4E7EC!important;
	width:100%;
	padding:10px 0;
	border:0;
	border-radius:5px;
	cursor:pointer;	
}

.parallax.parallax-contato{
	background-image:url(../img/banner-contato.png);
}

.parallax.parallax-desenho-industrial{
	background-image:url(../img/banner-desenho-industrial.png);
}

.parallax.parallax-registro-de-marcas{
	background-image:url(../img/banner-registro-de-marcas.png);
}

.parallax.parallax-registro-de-patentes{
	background-image:url(../img/banner-registro-de-patentes.png);
}

.parallax.parallax-avaliacao-de-marcas{
	background-image:url(../img/banner-avaliacao-de-marcas.png);
}

/* FIM DO PARALLAX */



/* RODAPÉ INFORMATIVO */

footer {
	margin-top:30px;
	color: #FFF;
	background-color:#373435;
}

/* SITE PC */
@media(min-width: 768px){
	footer section{
		display:flex;
		align-items:start;
		justify-content: space-between;	
	}
}

footer section div{
	width:100%;
}

footer div a img{
	width:60%;
	margin:20px 0;
}

/* SITE PC */
@media(min-width: 768px){
	.rodape-endereco{
		padding:20px 5px 20px 0;
		float:left;
	}
	
	footer section h3, footer section p, footer section a {
		width:90%;
	}
	
	footer section a{
		width:100%;
	}
	
	
}

/* MOBILE */
@media(max-width: 768px){
	footer section h3, footer section p, footer section a{
		width:100%;
	}
	
	footer div a img{
		width:40%;
	}
	
	.rodape-endereco{
		padding:10px 5px 10px 0;
		float:left;
	}
}

footer section h3{
	border-bottom:1px solid #CCC;
	padding-bottom:20px;
	margin:20px 0;
	text-transform:uppercase;
}

footer section p{
	padding-bottom:10px;
	font-size:0.9em;
}

footer section a{
	display:inline-block;
	text-decoration:none;
	color: #CCC;
	font-size:0.9em;
	padding-bottom:10px;
}

footer section a i span{
	font-family: 'Lato', sans-serif;
	font-weight:normal;
}

footer section a:hover{
	text-decoration:underline;
	color: #CCC;
	transition: all 0.8s ease;
}

/* FIM RODAPÉ INFORMATIVO */



/* RODAPÉ FINAL */

footer .rodape{
	border-top:1px solid #CCC;
	padding:20px 0;
	display:flex;
	align-items: center;
	justify-content: space-between;
	color: #CCC;
}

/* SITE PC */
@media(min-width: 768px){
	footer .rodape div{
		width:50%;
	}
}

/* MOBILE */
@media(max-width: 768px){
	footer .rodape div{
		width:80%;
	}
	footer .rodape div:last-child{
		width:20%;
	}
}

footer .rodape div:last-child{
	text-align:right;
}

footer .rodape div p:first-child{
	padding-bottom:20px;
}

footer .rodape div:first-child a{
	color:#CCC;
	text-decoration:none;
}

footer .rodape div:first-child a:hover{
	color:#fff;
	text-decoration:underline;
}


footer .rodape div:last-child a i{
	width:30px;
	height: 30px;
	line-height: 30px;
	border-radius:50%;
	background-color:#CCC;
	color:#0D161B;
	text-align:center;
}

footer .rodape div:last-child a:hover i{
	background-color:#E4E7EC;
	transition: 0.3s;
	color:#0D161B;
}

/* FIM RODAPÉ FINAL */