/* Seção 5 */

.section5 {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section5 h1 {
  font-family: "TonCondensed-Light", Sans-serif;
  font-size: 34px;
  font-weight: 600;
}

.imagens {
  margin: 10px;
  text-align: center;
}

.section5 a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.section5 a button {
  font-family: "TonCondensed-Bold", Sans-serif;
  background-color: #019801;
  color: var(--white);
  font-size: 17px;
  padding: 13px 20px;
  width: 200px;
  height: 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.5s;
  white-space: nowrap;
}

.section5 a button:hover {
  font-size: 16px;
  width: 190px;
  height: 45px;
  transition: all 0.5s;
}



/* Media Queries */

/* Tablets */
@media (max-width: 1123px) {
  .section5 {
    margin-top: 50px;
  }

  .section5 h1 {
    font-size: 20px;
  }

  .imagens {
    margin: 10px;

  }

  .imagens img {
    width: 180px;
  }

  .section5 a {
    height: 40px;
  }

  .section5 a button {
    font-size: 12px;
    padding: 9px 20px;
    width: 150px;
    height: 40px;
  }

  .section5 a button:hover {
    font-size: 11px;
    width: 140px;
    height: 35px;
  }


}

/* Celulares */
@media (max-width: 777px) {
  .section5 {
    margin-top: 50px;
  }

  .section5 h1 {
    font-size: 30px;
    text-align: center;
  }

  .imagens {
    margin: 5px;

  }

  .imagens img {
    width: 280px;
  }

  .section5 a {
    height: 50px;
    width: 100%;
  }

  .section5 a button {
    font-size: 29px;
    padding: 9px 20px;
    width: 90%;
    height: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.345);
  }

  .section5 a button:hover {
    font-size: 11px;
    width: 140px;
    height: 35px;
  }


}


@media (max-width: 540px) {
  .imagens {
    margin: 15px;
  }

  .imagens img {
    width: 175px;
  }


}