body{
  margin: 0;
  font-family: "Open-sans", sans-serif;
}
img{
  max-width: 100%; /* tirar a barra de rolagem horizontal*/
}
.container{
  margin-right: auto;
  margin-left: auto;
  padding-right: 1em;
  padding-left: 1em;
  max-width: 980px;
}

.header{
  background: rgb(255, 255, 255);
  width: 100%;

}

.js .header{
  position: fixed;
  width: 100%;
  z-index: 10; /* muito necessario para imagens nao ficar em cima do header fixed */
}

.logo-text{
  text-transform: uppercase;
  background-color: #63c6ae;
  font-size: 24px;
  margin: 0;
  padding: 25px;
  display: block;
  text-decoration: none;
  color: white;
  font-weight: bold;
  float: left; /* jogar o icone pra cima */
}

.header__nav{
  clear: left; /* ignorar o float left do logo-text */
}
.header__nav ul{
  padding: 0;
  margin: 0;
}
.header__nav li{
  list-style-type: none;
  background-color: #242c2c;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
  text-align: center;
}
.header__nav a{
  color: #586165;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 25px 0;
  display: block;
}
.header__nav a:hover{
  color: #63c6ae;
  transition: .5s ease;

}
.header__btnMenu{
  float: right;
  margin: 1.5em;
  background: transparent;
  border: none;

}
.header__btnMenu .fas{
  font-size: 1.6em;
}
.js .header__nav{
  transition: max-height 1s;
}



.hero{
  background: linear-gradient(45deg, white 50%, transparent 50%) left calc(50% + 20px) bottom no-repeat, 
  linear-gradient(-45deg, white 50%, transparent 50%) left calc(50% - 20px) bottom no-repeat, url(../img/01.jpg);
  background-size: 40px 40px, 40px 40px, cover;
  height: 80vh;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; /* colocar o texto no centro da imagem */
  align-items: center;
}
.hero__title{
  background-color: #63c6ae;
  color: white;
  font-size: 28px;
  font-weight: 600;
  padding: 30px 20px;
}
.hero__text{
  background-color: #242a2c;
  margin: 5px 30px 35px;
  color: white;
  padding: 20px;
  font-size: 1em;
}
.hero__btn{
  background-color: rgba(0,0,0,.2);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 5px;
  padding: 20px 25px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
}
.hero__btn:hover{
  color: #63c6ae;
  transition: .5s ease;
  background-color: rgba(0,0,0,.4);
  
}


.people-cards{
  margin-top: 3em;
}
.people-cards__card:hover{
  outline: 6px solid #63c6ae; /* É tipo um border so q nao muda o conteudo*/
  outline-offset: -5px;
}
.people-cards__card:hover .people-cards__avatar img{
  transform: translateY(-50%);
}
.people-cards__card:hover .people-cards__content h2{
  color: #63c6ae;
}
.people-cards__card:hover .people-cards__content p{
  color: #63c6ae;
}
.people-cards__image{
  width: 100%;
}
.people-cards__avatar{
  margin: -45px auto;
  width: 88px;
  height: 88px;
  overflow: hidden;
}
.people-cards__content{
  padding: 40px 25px 10px;
  text-align: center;
  border-left: 3px solid #dbe1e7;
  font-weight: normal;
}
.people-cards__content h2{
  color: #929da5;
}
.people-cards__content p{
  color: #929da5;
  font-weight: 500;
  font-size: 16px;
}


.main-content{
  background: #f8f9f9;
  padding: 0 0 50px;
  border-top: 1px solid #e3e3e3;
}
.main-content__text{
  color: #929da5;
  padding-top: 30px;
  font-weight: 400;
  word-spacing: 2px;
}
.main-content__text .p{
  padding-bottom: 20px;
}
.btn{
  background: rgb(138, 137, 137);
  padding: 15px 40px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  margin-right: 10px;
  display: inline-block;
}
.btn:hover{
  background: #929da5;
  transition: background .5s;
}
.btn-green{
  background: #63c6ae;
}
.btn-black{
  background: #455357;
}


.galery-photos__title{
  background: #63c6ae;
  padding: 5px 0;
  color: rgb(236, 236, 236);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}
.galery-photos__title h2{
  font-weight: 400;
}
.galery-photos__thumbs{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); /* auto-fill para que se encaixe na largura do pai */
  grid-auto-rows: auto;
}
.galery-photos__thumbs img{
  display: block;
  width: 100%;
}


.laptop-slider{
  background-color: #242a2c;
  padding: 125px 0 100px;
  width: 100%;
  overflow: auto;
}
.slideshow{
  white-space: nowrap;

}
.slideshow figure{
  display: inline-block;
}
.quote-container{
  background-color: #63c6ae;
  padding: 50px 0;
  border-bottom: 5px solid #4a9985;
}
.quote-slideshow h2{
  color: white;
  font-size: 30px;
  font-weight: normal;
}
.quote-slideshow figcaption{
  color: white;
  font-size: 18px;
  text-align: center;
}
.no-js .quote-slideshow figure + figure{
  margin-top: 5em;
}
.js .laptop-slider{
  overflow: hidden;
}
.js .laptop-slider .slideshow{
  position: relative;
  width: 100%;
  margin: auto;
  max-width: 950px;
}
.js .laptop-slider figure{
  opacity: 0;
  transition: 1s opacity;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.js .laptop-slider figure.show{
  opacity: 1;
  position: static;
}
.js .laptop-slider .prev, .js .laptop-slider .next{
  z-index: 3;
  position: absolute;
  top: 50%;
  cursor: pointer;
}
.js .laptop-slider .prev{
  left: 10px;
  font-size: 4em;
  color: white;
}
.js .laptop-slider .next{
  right: 10px;
  font-size: 4em;
  color: white;  
}



.js .quote-slideshow{
  position: relative;
  width: 100%;
  margin: auto;
  max-width: 950px;
  box-sizing: border-box;
  padding: 0 50px;
  color: white;
}
.js .quote-slideshow figure h2{
  margin-top: 0;
}
.js .quote-slideshow figure{
  opacity: 0;
  transition: 1s opacity;
  position: absolute;
  top: 0;
  left: 50px;
  right: 50px;
  box-sizing: border-box;
  margin: 0;
}
.js .quote-slideshow figure.show{
  opacity: 1;
  position: static;
}
.js .quote-slideshow .prev, .js .quote-slideshow .next{
  z-index: 3;
  position: absolute;
  top: 50%;
  cursor: pointer;
}
.js .quote-slideshow .prev{
  left: 10px;
  font-size: 4em;
  color: white;
}
.js .quote-slideshow .next{
  right: 10px;
  font-size: 4em;
  color: rgb(255, 255, 255);  
}


.footer{
  background-color: #242a2c;
  padding: 50px 50px 250px;
  color: #454e51;
}
.footer h2{
  text-transform: uppercase;
}
.footer p{
  font-size: 1.2em;

}
.footer__links li{
  list-style: none;
}
.footer__links a{
  display: block;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.3em;
}
.icons-div{
  background-color: #63c6ae;
  padding: 10px;
  text-align: center;
  max-width: none;
}
.icons{
  color: white;
  font-size: 2em;
  padding-right: 20px;
  text-align: center;
}
.icons:hover{
  color: #052e23;
  transition: ease-in .5s;
}


@media screen and (min-width: 1025px){
  .header{
    position: fixed;
  }
  .logo-text{
    width: 25%;
    box-sizing: border-box; /* para o padding nao somar ao tamanho do elemento*/
  }
  .header__btnMenu{
    display: none;
  }
  .header__nav{
    float: left;
    width: 75%;
    clear: none;
    max-width: 800px;
  }
  .header__nav ul{
    display: flex;
    justify-content: space-around; /* para distribuir os elementos */
  }
  .header__nav a{
    background-color: white;
  }
  .header__nav li{
    border: none;
    flex-grow: 1;
  }

  .people-cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  .main-content .container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }

  .galery-photos__thumbs{
    grid-template-columns: repeat(4, 1fr);
  }

  .quote-container{
    text-align: center;
  }

  .footer .container{
    display: flex;
  }
  .footer .container > * {
    margin: 2em;
  }
}

@media screen and (min-width: 1920px){
  .people-cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }

  .galery-photos__thumbs{
    grid-template-columns: repeat(6, 1fr);
  }

}