*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body{
  height: 100vh;
  font-family: 'Archivo', sans-serif;
  width: 100%;
}

.header{
  
}

.header .menu{
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  padding: 24px 12px;
  position: fixed;
  top: 0;
}

.header .menu .logo{
  margin: 0 20px;
}

.header .menu .logo img{
  width: 250px;
}

.header .menu #ul2{
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  padding-top: 20px;
}

#ul{
  display: none;
}

.header .menu #ul2 li{
  margin: 0 20px;
}

.header .menu #ul2 li a{
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.header .menu #ul2 li i{
  text-decoration: none;
  color: black;
  font-size: 22px;
  cursor: pointer;
}

.header .menu #ul2 img{
  width: 20px;
}

.header .menu .hamburguer{
  display: none;
}

.header .banner{
  text-align: left;
  display: flex;
  align-items: center;
  margin-top: 12px;
  padding-top: 144px;
}

.header .banner .parte1{
  max-width: 1600px;
  margin: 0 auto;
}

.header .banner .parte1 h1{
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 40px;
}

.header .banner .parte1 p{
  font-size: 20px;
  margin-bottom: 16px;
}

.corpo{
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
  margin-top: 72px;
}

.corpo .esquerda{
  width: 50%;
  padding-right: 100px;
}

.corpo .direita{
  width: 50%;
}

.corpo .direita .bloco{
  margin-bottom: 20px;
}

.corpo .direita .bloco span{
  color: #888;
  font-size: 20px;
  font-family: 'Archivo', sans-serif;
}

.corpo .direita .bloco p{
  font-size: 20px;
  font-family: 'Archivo', sans-serif;
}

.corpo .botoes{
  width: 100%;
}

.corpo button{
  width: 200px;
  height: 44px;
  border: 1px solid black;
  border-radius: 4px;
  background-color: white;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 144px;
  color: black;
  margin-top: 56px;
  
}

.corpo button:hover{
  color: white;
  background-color: black;
  border: 1px solid white;
}

.corpo button i{
  margin-right: 10px;
}

.corpo .formulario form input[type='text']{
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid black;
  font-size: 20px;
  margin-bottom: 35px;
  font-family: 'Archivo', sans-serif;
  padding: 10px 0;
}

.corpo .formulario form textarea{
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid black;
  resize: none;
  font-size: 20px;
  height: 100px;
  font-family: 'Archivo', sans-serif;
}

.corpo input[type='submit']{
  width: 200px;
  height: 44px;
  border: 1px solid black;
  border-radius: 4px;
  background-color: white;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 144px;
  color: black;
  margin-top: 56px;
  
}

.corpo input[type='submit']:hover{
  color: white;
  background-color: black;
  border: 1px solid white;
}

.footer{
  background-color: black;
  color: white;
  padding: 72px 0;
  margin-top: 16px;
  bottom: 0;
  width: 100%;
}

.footer .center{
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
}



@media screen and (max-width:1600px) {
  .header .banner .parte1{
    width: 90%;
  }
  
  .corpo{
    width: 90%;
  }

  .footer .center{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}

@media screen and (max-width:1024px) {
  .header .menu .logo{
    margin: 0 20px;
    display: block;
  }

  .header .menu .logo img{
    width: 150px;
  }

  .header .menu #ul{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.39);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
  }

  #ul4{
    display: none;
  }

  #ul3{
    width: 70%;
    background-color: white;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    padding: 0 5%;
    text-align: right;
    list-style-type: none;
  }

  #ul3 p{
    font-size: 24px;
    margin-bottom: 28px;
    margin-top: 28px;
    cursor: pointer;
    margin-right: 16px;
    font-weight: 600;
  }

  .header .menu #ul3 li{
    margin-bottom: 48px;
    text-align: left;
    font-weight: 600;
  }

  .header .menu #ul3 li a{
    color: black;
    text-decoration: none;
  }

  .header .menu .hamburguer{
    display: block;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 20px;
  }

  .header .menu #ul3 img{
    display: none;
  }

  .header .menu #ul3 .botoes{
    text-align: left;
  }

  .header .menu #ul3 button{
    width: 160px;
    height: 35px;
    font-size: 16px;
    border: 1px solid black;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    color: black;
    margin-bottom: 24px;
  }
  
  .header .menu #ul3 button:hover{
    color: white;
    background-color: black;
  }
  
  .header .menu #ul3 button i{
    margin-right: 10px;
  }

  .header .menu .hamburguer .barra{
    width: 30px;
    padding-top: 3px;
    background-color: black;
    margin-bottom: 5px;
    
  }
  
  .header .banner{
    padding: 0;
    display: block;
    margin-top: 144px;
    width: 90%;
  }

  .header .banner .parte1{
    margin: 0 auto;
  }

  .header .banner .parte1 h1{
    font-size: 22px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 8px;
  }
  
  .header .banner .parte1 p{
    width: 100%;
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .header .banner .parte2{
    border-radius: 0;
    width: 100%;
  }

  .corpo{
    display: block;
    width: 90%;
  }

  .corpo .esquerda{
    width: 90%;
    padding-right: 0;
  }

  .corpo .direita{
    width: 90%;
    padding-left: 0;
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .corpo .formulario form ::placeholder{
    font-size: 16px;
  }

  span{
    font-size: 16px !important;
  }

  p{
    font-size: 16px !important;
  }

  .corpo button{
    width: 160px;
    height: 35px;
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 8px;
  }
  
  .footer{
    padding: 60px 0;
  }

  #copyrights1{
    display: none;
  }
  
  .footer #copyrights2{
    font-size: 12px;
    text-align: center;
    display: block;
  }
}