body{
	overflow: hidden;
}


#texto-capitular::first-letter {
  font-size: 4rem;
  font-weight: bold;
  color: black;
}

.logo{
 transition: padding 300ms ease;
}

#projetos{
	background-image: url('../assets/fundo1.png');
}

.cinza{
	background-color: #ededed;
	/*background-color: #000000;*/
}

.laranja{
	background-color: #ef8812;
	/*background-color: #000000;*/
}

.texto-laranja{
	color: #ef8812 !important;
	/*background-color: #000000;*/
}


.preto{
	/*background-color: #ededed;*/
	background-color: #000000;
}
.texto-direita{
	text-align: right !important;

}

#linha-vertical {
    height: 200px;
    border-right: 5px solid orange;
    margin-left: 15px;
}

.banner, logo{
	margin-top: 0px !important;
	
}
.link:hover{
	color: orange !important;
	transform: translateY(-5px);
}
.img-p{
	width: 110px;
	padding: 0px;
	
}

.img-p2{
	width: 110px;
	padding: 0px;
	transform: scale(1.3);
	display: none !important;
}

#img-sobre{
	border-radius:20px;
}

#img-desc{
	border-radius:20px;
}

@font-face {
  font-family: fonte;
  src: url(../fonts/aAtmospheric.ttf);
}

@font-face {
  font-family: letra;
  src: url(../fonts/Renogare.otf);
}


@font-face {
  font-family: texto;
  src: url(../fonts/WalkwayBold.ttf);
}

@font-face {
  font-family: texto-bold;
  src: url(../fonts/WalkwayExpandUltraBold.ttf);
}


@font-face {
  font-family: texto-ultra-bold;
  src: url(../fonts/WalkwayBlack.ttf);
}


.texto {
  font-family: texto;
}

.texto-bold {
  font-family: texto-bold;
}

.texto-ultra-bold {
  font-family: texto-ultra-bold;
}
.fonte {
  font-family: fonte;
}

.letra {
  font-family: letra;
}


.js .anime {
	opacity: 0;
	transform: translate3D(-50px, 0px, 0px);
}

.js .anime-init {
	opacity: 1;
	transform: translate3D(0px, 0px, 0px);
	transition: .3s all ease;
}

.whatsapp{
	position: fixed;
	bottom: 40px;
	right: 30px;
	width: 50px;
	height: 50px;
}


  /* ini: Preloader */
 
#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#000000; /* cor do background que vai ocupar o body */
    z-index:999; /* z-index para jogar para frente e sobrepor tudo */
}
#preloader .inner {
    position: absolute;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
    left: 50%;
    transform: translate(-50%, -50%);  
}
.bolas > div {
  display: inline-block;
  background-color: orange;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
   
}
.bolas > div:nth-child(1) {
    animation-duration:0.75s ;
    animation-delay: 0;
}
.bolas > div:nth-child(2) {
    animation-duration: 0.75s ;
    animation-delay: 0.12s;
}
.bolas > div:nth-child(3) {
    animation-duration: 0.75s  ;
    animation-delay: 0.24s;
}
 
@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; 
  } 
}
/* end: Preloader */