#main-content #first-section {
  background-image: url("../images/imagem1-semquadro.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 70px;
}

#main-content #first-section .div-principal {
  flex: 1;
  min-width: 390px;
  max-width: 410px;
  max-height: 380px;
  background-color: rgba(242,251,242,0.3);
  color: #06091c;
  border-radius: 15px;
  padding: 20px 20px;
  margin-top: 180px;
  margin-bottom: 150px;
  margin-left: 60px;
  box-shadow: 2px 2px 15px rgb(82, 82, 82);
}

#main-content .title1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 25px;
}

#main-content .subtitle1 {
  font-size: 22px;
  text-align: left;
  line-height: 2rem;
  font-weight: 400;
  margin-left: 10px;
  margin-bottom: 15px;
}

#main-content .bar {
  background-color: #06091c;
  width: 100%;
  height: 60px;
}

#main-content #second-section {
  background-image: url("../images/foto-maos.png");
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  background-position: right;
  align-items: center;
  width: 100%;
} 

#main-content #second-section .div-web {
  width: 380px;
  height: 400px;
  padding: 40px 40px;
  margin-top: 80px;
  margin-bottom: 130px;
}

#main-content #second-section .div-web .title2 {
  background-color: #06091c;
  border-radius: 15px;
  font-size: 24px;
  text-align: center;
  color: #ffc107;
  padding: 12px 5px;
  margin-bottom: 20px;
}

#main-content #second-section .div-web p {
  color: #06091c;
  font-size: 17px;
  text-align: justify;
  line-height: 1.6rem;
  margin-top: 10px;
}

#main-content #second-section .div-web button {
  border: none;
  background-color: #06091c;
  padding: 12px 16px;
  margin: 50px 65px;
  border-radius: 15px;
  box-shadow: 2px 2px 8px rgb(102, 102, 102);
  box-sizing: border-box;
  transition: 0.4s;
}

#main-content #second-section .div-web button:hover {
  transition: 0.4s;
  transform: translate(2px, 2px);
  box-shadow: none;
}

#main-content #second-section .div-web a {
  text-decoration: none;
  color: #ffc107;
  font-size: 12pt;
}

#main-content #last-section {
  background-image: url("../images/fundo-lastsection.png");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

#main-content #last-section .steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px auto;
  flex-wrap: wrap;
}

#main-content #last-section .steps .box {
  flex: 1;
  min-width: 240px;
  max-width: 270px;
  height: 280px;
  background-color: rgba(242, 251, 255, 0.05);
  padding: 30px 15px;
  margin: 30px 30px;
  text-align: center;
  color: #ffc107;
  font-size: 20pt;
  box-shadow: 2px 2px 6px #27273d;
  border-radius: 15px;
}

#main-content #last-section .steps .box:hover {
  background-color: rgba(242, 251, 255, 0.15);
}

#main-content #last-section .steps .box h2 {
  font-size: 20pt;
  margin-bottom: 20px;
}

#main-content #last-section .steps .box h3 {
  font-size: 16px;
  color: #f2fbff;
  line-height: 1.4rem;
  font-weight: 400;
  text-align: center;
}

#main-content .yellow {
  background-color: #ffc107;
}

@media (max-width: 930px) {
  #main-content #first-section .div-principal {
    min-width: 250px;
    max-width: 400px;
    max-height: 430px;
    padding: 15px 15px;
    margin-left: 50px;
  }    

  #main-content .title1 {
    font-size: 40px;
    margin-bottom: 20px;
  }
  
  #main-content .subtitle1 {
    font-size: 24px;
    line-height: 1.7rem;
  }
}

@media (max-width: 480px) {
  #main-content #first-section .div-principal {
    max-width: 250px;
    height: 280px;
    padding: 15px 15px;
    margin-left: 25px;
  }    

  #main-content .title1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  #main-content .subtitle1 {
    font-size: 18px;
    line-height: 1.5rem;
    margin-bottom: 10px;
  }
  
  #main-content #second-section .div-web {
    margin-top: 40px;
    padding: 40px 30px;
  }

  #main-content #second-section .div-web .title2 {
    font-size: 18px;
  }

  #main-content #second-section .div-web p {
    font-size: 16px;
  }
  
  #main-content #second-section .div-web button {
    margin: 40px 50px;
  }
}

