*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
body, button, input, textarea{
  font-family: 'Raleway', sans-serif;
}
body{
  overflow-x: hidden;
  background-color: white;
}
.nav{
  background-color: transparent;
  z-index: 10;
  position: fixed;
  height: 80px;
  width: 100%;
  transition: .5s linear;
}
.nav.scrolled {
  background-color: #fff !important;
  transition: 200ms linear;
}
label.logo{
  color: white;
  font-size: 27px;
  line-height: 80px;
  padding: 0 20%;
  font-weight: bold;
  transition: .5s;
}
.logo img{
  margin-top: 20px;
  max-width: 150px;
  height: auto;
  cursor: pointer;
  transition: .5s ease;
}
.nav .nav-ul{
  float: right;
  margin-right: 20%;
  transition: .5s;
}
.nav .nav-ul .nav-li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
.nav .nav-ul .nav-li a{
  color: white;
  font-size: 15px;
  padding: 7px 13px;
  transition: .5s;
  outline: none;
}
.nav .nav-ul .nav-li a.active{
  color: #ec6324 !important;
}
.nav .nav-ul .nav-li a:hover, nav .nav-ul .nav-li a.active {
  color: #ec6324 !important;
}
.checkbtn{
  font-size: 25px;
  color: grey;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}

/* FIM NAVBAR */

.slideshow {
  z-index: -1;
  height: 40vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
  transition: .5s linear;
  animation: showInSmooth .5s linear;
}
.intro-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index:-1;
  opacity: 0;
  filter: brightness(70%);
  transition: opacity 2s linear-out;
}
.slideshow h1 {
  color: #d68b6b;
  font-size: 50px;
  font-weight: bold;
  transition: .5s linear;
  animation: show 1.5s linear;
}

/* FIM slideshow */

.privacidade-texto{
  width: 100%;
  margin:auto;
  height: auto;
  background: #E1E1E1;
  padding-top: 75px;
  padding-bottom: 75px;
  text-align: center;
  transition: .5s;
}
.privacidade-texto h2{
  margin: auto;
  width: 60%;
  color: #d68b6b;
  font-size: 35px;
  animation: showIn 2s linear;
}
.privacidade-texto p{
  margin: 25px auto;
  width: 50%;
  font-weight: normal;
  text-align: justify !important;
  font-size: 21px;
  color: #999;
  transition: .5s;
  animation: showIn 2.25s linear;
}

.privacidade-texto a{
  color: #999;
}

/* FIM COOKIES */

.footer{
  border-top: 1px solid #E1E1E1;
  text-align: center;
  margin:auto;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 80%;
  align-items: center;
  vertical-align: middle;
  height: auto;
  display: grid;
  grid-template-columns: 33% 33% 33%;
}
.footer-text p{
  text-align: left;
  padding-bottom: 10px;
  display: block;
  font-size: 15px;
  color: #999;
  transition: .5s;
}
.footer-text a{
  text-align: left;
  margin-left: auto;
  padding-bottom: 5px;
  display: block;
  font-size: 13px;
  color: #999;
  transition: .5s;
}
.footer-image img{
  max-width: 200px;
  height: auto;
}
.footer-credit p{
  text-align: right;
  display: block;
  font-size: 15px;
  color: #999;
  transition: .5s;
}
.footer-credit i{
  color: red;
}
.footer-text a:hover{
  color: black;
}


@media (max-width: 1250px) {
  .privacidade-texto p{
    width: 80%;
    text-align: justify;
  }
  .privacidade-texto h2{
    width: 80%;
  }
}

@media (max-width:1000px) {
  .footer{
    display: grid;
    grid-template-columns: 100%;
  }
  .footer-image img{
    display: none;
  }
  .footer-text p, .footer-text a{
    text-align: center;
  }
  .footer-credit p{
    text-align: center;
    margin-top: 15px;
  }
}

@keyframes showIn {
  0%{
    opacity: 0;
  }
  75%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
@keyframes show {
  0%{
    opacity: 0;
  }

  75%{
    opacity: 0;
    margin-left: 100px;
  }

  100%{
    opacity: 1;
    margin-left: 0px;
  }
}
@keyframes showInverted {
  0%{
    opacity: 0;
  }

  65%{
    opacity: 0;
    margin-left: -100px;
  }

  100%{
    opacity: 1;
    margin-left: 0px;
  }
}
@keyframes showInSmooth {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
