*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
body, button{
  font-family: 'Raleway', sans-serif;
}
body{
  overflow-x: hidden;
  background-color: white;
}
.nav{
  background-color: transparent;
  z-index: 9999;
  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;
}

/* SLIDESHOW */

.slideshow {
  z-index: -1;
  height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
  animation: showIn .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 1.75s linear !important;
}
.slideshow h1 {
  color: #d68b6b;
  font-size: 50px;
  font-weight: normal;
  animation: show 1.5s linear;
}
.slideshow p {
  color: #d68b6b;
  font-size: 25px;
  animation: show 1.75s linear;
}

/* FIM SLIDESHOW */

.container{
  width: 60%;
  height: auto;
  margin: 100px auto;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  transition: .5s;
}
.container .box{
  vertical-align: middle;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 300px;
  margin-left: 3%;
  background: white;
  border-radius: 3px;
  box-shadow: 1px 1px 5px lightgrey;
  animation: showDown 2.25s linear;
}
.container .text i{
  font-size: 50px;
  color: #ec6324;
  margin-top: 50px;
  margin-bottom: 20px;
}
.container .text p{
  font-weight: normal;
  font-size: 21px;
  font-style: italic;
  color: #d68b6b;
}

/* Fim Container */

.section-pick{
  margin-top: 100px;
  height: 40vh;
  display: flex;
  animation: appear 3s linear;
}
section{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
  cursor: pointer;
  transition: .5s;
}
.sec-h1{
  color: white;
  font-size: 30px;
  margin-left: 100px;
  display: block;
  transition: .5s;
}
.sec-text{
  color: white;
  font-weight: bold;
  margin-left: 20px;
  font-size: 20px;
  opacity: 0;
  transition: .5s;
}
.interiores{
  background: url("../images/section/banhos.jpg");
  background-position: center;
  background-size: cover;
}
.quartos{
  background: url("../images/section/quartos.jpg");
  background-position: center;
  background-size: cover;
}
.cozinha{
  background: url("../images/section/cozinha.jpg");
  background-position: center;
  background-size: cover;
}
.mais{
  background: #ec6324;
}
section:hover{
  flex: 3;
  filter: grayscale(100%);
}
section:hover .sec-h1{
  transition: .5s;
  margin-left: 0px;
}
section:hover .sec-text{
  opacity: 1;
}
section:last-child:hover{
  flex: 1 !important;
  filter: none !important;
}

/* FIM SELECTION-PICL */

.section-img-texto{
  width: 60%;
  height: auto;
  margin: 100px auto;
  display: grid;
  grid-template-columns: 50% 50%;
  transition: .5s;
}
.section-img-texto .img-part{
  height: 100%;
  width: 95%;
  border-radius: 2px;
  background: url('../images/section/progress.jpg');
  background-position: center;
  background-size: cover;
  animation: showInverted 3.5s linear;
  transition: .5s;
}
.section-img-texto .text-part{
  margin-left: 20px;
}
.section-img-texto .h2-part{
  margin: 20px auto;
  color: #d68b6b;
  font-size: 35px;
  animation: show 3.5s linear;
}
.section-img-texto .p-part{
  margin: 20px auto;
  font-weight: normal;
  font-size: 21px;
  color: #999;
  animation: show 4s linear;
}
.section-img-texto .img-part:hover{
  transform: scale(.95);
  filter: brightness(70%);
}

/* FIM SELECT IMG-TEXTO */

.feedback{
  background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url('../images/slider/banner1.jpg');
  width: 100%;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-box{
  width: 350px;
  height: 300px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  box-sizing: border-box;
}
.details{
  display: flex;
  flex-direction: column;
  align-items: center;
  vertical-align: middle;
  width: 300px;
}
.details h2{
  margin: 25px auto;
  text-align: center;
  font-style: italic;
  color: #d68b6b;
  font-size: 25px;
  font-family: 'Raleway', sans-serif;
}
.details i{
  font-size: 50px;
  color: #ec6324;
  margin-top: 50px;
}
.details p{
  text-align: center;
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  color: #999;
  margin-bottom: 100px;
}


/* FIM FEEDBACK */

.section-facebook{
  width: 60%;
  height: auto;
  margin: 100px auto;
  display: grid;
  grid-template-columns: 50% 50%;
  transition: .5s;
}
.section-facebook .facebook-part{
  height: 100%;
  margin-left: 20px;
  width: 100%;
  border-radius: 2px;
  animation: show 5.5s linear;
  transition: .5s;
}
.section-facebook .facebook-part i{
  max-width: 100%;
}
.section-facebook .h2-part{
  text-align: right;
  padding-right: 20px;
  margin: auto;
  color: #d68b6b;
  font-size: 35px;
  animation: showInverted 5.5s linear;
}
.section-facebook .p-part{
  text-align: right;
  padding-right: 20px;
  margin: 40px auto;
  font-weight: normal;
  font-size: 21px;
  color: #999;
  animation: showInverted 6s linear;
}
.section-facebook button{
  float: right;
  cursor: pointer;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: transparent;
  transition: .5s;
}
.section-facebook button i{
  font-size: 20px;
  transition: .5s;
}
.section-facebook button:hover i{
  color: white;
}
.section-facebook button:focus{
  outline:0 !important;
}

        /* FACEBOOK */

        .section-facebook .facebook{
          border: 1px solid #3b5998;
          animation: appear 6.5s linear;
        }
        .section-facebook .facebook i{
          color: #3b5998;
        }
        .section-facebook .facebook:hover{
          background-color: #3b5998;
          box-shadow: 3px 3px 5px lightgrey;
        }

        /* INSTAGRAM */

        .section-facebook .insta{
          border: 1px solid #da5f4e;
          animation: appear 7s linear;
        }
        .section-facebook .insta i{
          color: #da5f4e;
        }
        .section-facebook .insta:hover{
          background: #da5f4e;
          box-shadow: 3px 3px 5px lightgrey;
        }

        /* YOUTUBE */

        .section-facebook .youtube{
          border: 1px solid #e62117;
          animation: appear 7.5s linear;
        }
        .section-facebook .youtube i{
          color: #e62117;
        }
        .section-facebook .youtube:hover{
          background: #e62117;
          box-shadow: 3px 3px 5px lightgrey;
        }

/* FIM REDES SOCIAIS */

.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 {
  display: flex; 
  align-items: flex-end;
  flex-direction: column;
  gap: 2px;
}
.logo-apoio {
    width: 350px;    
}
.footer-credit p{
  text-align: right;
  font-size: 15px;
  color: #999;
  transition: .5s;
  display: block;
}
.footer-credit i{
  color: red;
}
.footer-text a:hover{
  color: black;
}

@media (max-width: 1024px) {
  .logo-apoio {
    width: 80%;    
    align-items: center;
  }  
  .footer-credit {
      align-items: center;
  }
}

/* KEYFRAMES */

@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 showIn {
  0%{
    opacity: 0;
  }

  100%{
    opacity: 1;
  }
}
@keyframes showDown {
  0%{
    opacity: 0;
  }

  65%{
    opacity: 0;
    margin-top: 100px;
  }

  100%{
    opacity: 1;
    margin-top: 0px;
  }
}
@keyframes appear{
  0%{
    opacity: 0;
  }

  85%{
    opacity: 0;
  }

  100%{
    opacity: 1;
  }
}
