@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz@9..40&family=Poppins:wght@300;400;700&display=swap');

*{
  padding: 0;
  margin: 0;
}

.hero{
  padding-top: 121px;
  font-family: 'Poppins', sans-serif;
  color: #FFF;
  background: #171717;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

p{
  width: 650px;
  font-size: 1.1em;
}

h1{
  padding: 25px;
}

.contato-number{
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: .2s;
}

.contato-number:hover{
  transition: .2s;
  color: #54B2FF;
}

.seta{
  padding: 10px;
}

.star{
  padding: 15px 0 54px 0;
}

.blue{
  color: #54B2FF;
}

button{
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  background: #FFE764;
  border: none;
  width: 225px;
  height: 50px;
  border-radius: 50px;
  transition: .2s;
}

.orcamento{
  text-decoration: none;
  color: #363636;
}

button:hover{
  transition: .2s;
  font-size: 1.55rem;
  width: 235px;
  cursor: pointer;
  background: #FFE764;
}

.yellow{
  color:#FFE453;
}

.contato{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15vh;
  background: url(../img/volks.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 600px){
  h1{
    font-size: 1.8rem;
  }

  p{
    font-size: 1rem;
    width: 90%;
    padding-bottom: 5px 0;
  }

  .question{
    padding-bottom: 10px;
  }
  
  .hero{
    padding-top: 50px;
  }
}

@media screen and (min-width: 700px) and (max-width: 1300px){
  h1{
    font-size: 3rem;
  }
  p{
    font-size: 2rem;
    width: 90%;
    padding-bottom: 5px 0;
  }
  .question{
    padding-bottom: 25px;
  }

  button{
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    width: 325px;
    height: 80px;
  }

  .star{
    width: 200px;
  }

  .seta{
    width: 50px;
    margin: 15px 0;
  }

  .contato img{
    width: 70px;
  }

  .contato h2{
    font-size: 4rem;
    padding: 0 0 10px 10px;
  }

  .logo{
    width: 150px;
    padding-bottom: 30px;
  }
}