/*Reset*/
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 1em;
  font-weight: normal;
}
/*Fim Reset*/
/*Timeline Animações*/
@-moz-keyframes reveal-imagem {
  0% {
    -moz-transform: scale(1);
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1.5);
  }
}
@-webkit-keyframes reveal-imagem {
  0% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1.5);
  }
}
@keyframes reveal-imagem {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1.5);
  }
}
@-moz-keyframes reveal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes reveal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes reveal-feed {
  from {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0px);
  }
}
@-webkit-keyframes reveal-feed {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
}
@keyframes reveal-feed {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
/*Fim Timeline Animações*/
html,
body,
#content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: Verdana, Geneva, 'DejaVu Sans', sans-serif;
  background: #fff;
}
body #content {
  background: url(img/background.png) 50% 20% no-repeat;

  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */

  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */

  display: -ms-flexbox;
  /* TWEENER - IE 10 */

  display: -webkit-flex;
  /* NEW - Chrome */

  display: flex;
  display: box;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
body #content #imagem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
body #content #imagem.reveal {
  -webkit-animation-name: reveal-imagem;
  -moz-animation-name: reveal-imagem;
  -o-animation-name: reveal-imagem;
  animation-name: reveal-imagem;
  -webkit-animation-duration: 120s;
  -moz-animation-duration: 120s;
  -o-animation-duration: 120s;
  animation-duration: 120s;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  opacity: 1;
}
body #content #video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #000;
}
body #content #video.reveal {
  -webkit-animation-name: reveal-video;
  -moz-animation-name: reveal-video;
  -o-animation-name: reveal-video;
  animation-name: reveal-video;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  -o-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  opacity: 1;
}
body #content article {
  position: relative;
  background: rgba(153, 0, 0, 0.2);
  width: 100%;
  height:auto;
  -webkit-animation-name: reveal-feed;
  -moz-animation-name: reveal-feed;
  -o-animation-name: reveal-feed;
  animation-name: reveal-feed;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
body #content article #categoria {
  text-transform: capitalize;
  position: absolute;
  top: -2em;
  font-size: 20px;

  padding: .5em;
  background-color: #000;
  color: #fff;
  -webkit-box-shadow: 1px 1px 3px #000000;
  -moz-box-shadow: 1px 1px 3px #000000;
  -ms-box-shadow: 1px 1px 3px #000000;
  -o-box-shadow: 1px 1px 3px #000000;
  box-shadow: 1px 1px 3px #000000;
}
body #content article #titulo {
	display: flex;
  font-size: 1.2em;
  font-weight: bold;
  background: rgba(153, 0, 0, 1);
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: .7em;
  color: #fff;
  height:auto;
  -webkit-box-shadow: 0px 1px 10px #000000;
  -moz-box-shadow: 0px 1px 10px #000000;
  -ms-box-shadow: 0px 1px 10px #000000;
  -o-box-shadow: 0px 1px 10px #000000;
  box-shadow: 0px 1px 10px #000000;
  align-items: center;
  justify-content: center;
}
body #content article #logo {
  height: 1.5em;
  vertical-align: middle;
  margin-right: .5em;
  display: none;
}
body #content article #credito {
  position: absolute;
  right: .5em;
  top: -1em;
  font-size: .5em;
  -moz-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -o-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
body #content article #conteudo {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */

  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */

  display: -ms-flexbox;
  /* TWEENER - IE 10 */

  display: -webkit-flex;
  /* NEW - Chrome */

  display: flex;
  display: box;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
}
body #content article #conteudo #texto {
  font-weight: bold;
  padding: .8em;
  line-height: 1.2em;
  font-size: 0.9em;
}
body #content article #conteudo #data-hora {
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-flex: 1;
  box-flex: 1;
  padding: .5em;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */

  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */

  display: -ms-flexbox;
  /* TWEENER - IE 10 */

  display: -webkit-flex;
  /* NEW - Chrome */

  display: flex;
  display: box;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
}
body #content article #conteudo #data-hora #data {
  font-size: .7em;
}
body #content article #conteudo #data-hora #hora {
  font-size: 1em;
}

/*-------------------Social-------------------*/

.social{
position: relative;
padding: 0;
margin: auto;
display: block;
font-size: 30px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.social a, .social:hover, .social:active,.social:visited{
  color: #fbfbfb;
}

/* .social a:after{
content: "";
display: table;
clear: both;
} */

.social img {
width: 40px;
height: auto;
display: block;
position: relative;
border: 0px solid #ff7f00;
border-radius: 10%;
background:transparent;
background-origin: border-box;
-webkit-background-origin:border-box;
-moz-background-origin:border-box;
-o-background-origin:border-box;
opacity:0.8;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

/* .social:hover {font-size:20px;}
.social i:hover{opacity:1;} */

/*
[alt~=Facebook]:hover{background: rgba(59, 89, 152, 0.8); }
[alt~=Instagram]:hover{background:rgba(192, 141, 100, 0.8) }
[alt~=Twitter]:hover{background:rgba(0, 172, 238, 0.8);}
[alt~=Googlemais]:hover{background:rgba(219, 74, 57, 0.8);}
[alt~=Linkedin]:hover{background:rgba(14, 118, 168, 0.8);}
*/



/* ======================= CONTATO ======================= */

#feedback-page{text-align:center;position:relative;z-index:30;padding:0;}

#form-main{width:40%;margin:3% 2%;padding:0;}

#form-div {background-color:rgba(75,75,75,0.4);margin:0;padding:35px 35px 50px 35px;width:450px;position: relative;border-radius:7px;-moz-border-radius: 7px;-webkit-border-radius: 7px;}

.feedback-input {
	color:#3c3c3c;
	font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 13px 13px 13px 54px;
	margin-bottom: 10px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
  border: 3px solid rgba(0,0,0,0);
}

.feedback-input:focus{
	background: #fff;
	box-shadow: 0;
	border: 3px solid #ff6600;
	color: #ff6600;
	outline: none;
  padding: 13px 13px 13px 54px;
}

.focused{
	color:#000;
	border:#ff6600 solid 3px;
}

/* Icons ---------------------------------- */
#name{
	background-image: url(../icons/name.png);
	background-size: 30px 30px;
	-webkit-background-size:30px 30px;
-moz-background-size:30px 30px;
-o-background-size:30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

#name:focus{
	background-image: url(../icons/name.png);
	background-size: 30px 30px;
	-webkit-background-size:30px 30px;
-moz-background-size:30px 30px;
-o-background-size:30px 30px;
	background-position: 8px 5px;
  background-position: 11px 8px;
	background-repeat: no-repeat;
}

#email{
	background-image: url(../icons/email.png);
	background-size: 30px 30px;
	-webkit-background-size:30px 30px;
-moz-background-size:30px 30px;
-o-background-size:30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

#email:focus{
	background-image: url(../icons/email.png);
	background-size: 30px 30px;
	-webkit-background-size:30px 30px;
-moz-background-size:30px 30px;
-o-background-size:30px 30px;
  background-position: 11px 8px;
	background-repeat: no-repeat;
}

#comment{
	background-image: url(../icons/comment.png);
	background-size: 30px 30px;
	-webkit-background-size:30px 30px;
-moz-background-size:30px 30px;
-o-background-size:30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

input:hover, textarea:hover,
input:focus, textarea:focus {
	background-color:white;
}

#button-orange{
	font-family: Arial, Helvetica, sans-serif;
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background-color: #ff6600;
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}

#button-orange:hover{
	background-color: rgba(0,0,0,0);
	color: #ff6600;
}

.submit:hover {
	color: #ff6600;
}

.ease {
	width: 0px;
	height: 74px;
	background-color: #fbfbfb;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	-ms-transition: .3s ease;
	transition: .3s ease;
}

.submit:hover .ease{
  width:100%;
  background-color:white;
}

@media only screen and (max-width: 580px) {
	#form-div{
		left: 3%;
		margin-right: 3%;
		width: 88%;
		margin-left: 0;
		padding-left: 3%;
		padding-right: 3%;
	}
}


.mapa{width:100%; overflow:hidden; height:750px;margin:70px auto 0;z-index:20;position:relative;background:transparent;}


    .mapa iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
		z-index:20;
    }


.div-ly{
  background: url(img/ly.jpg) no-repeat;
  background-size: cover;
  background-position: -1px -24px;
  /* mask-clip: circle(50px at 10px 10px); */
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display:block;
  align-self: center;
  justify-self: flex-end;
  margin: -100px auto 40px;

}

.div-ly img{
  position: relative;
  margin: auto;
  width: 200px;
}
