.main-restaurante {
  background-image: url(img/restaurante123.jpg);
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-restaurante h1 {
  color: #223e42;
  text-align: center;
  font-family: "Gotham-Bold";
  font-size: 55px;
  padding-top: 20px;
  -webkit-text-stroke: 3px #ffffff;
}

.main-hotel {
  background-image: url(img/hotel123.jpg);
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-hotel h1 {
  color: #fff;
  text-align: center;
  font-family: "Gotham-Bold";
  font-size: 55px;
  padding-top: 20px;
  -webkit-text-stroke: 3px #483223;
}

.main-varejo {
  background-image: url(img/varejo123.jpg);
  height: 80vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-varejo h1 {
  color: #013e63;
  text-align: center;
  font-family: "Gotham-Bold";
  font-size: 55px;
  padding-top: 20px;
  -webkit-text-stroke: 2px #fff;
}
.main-downloads {
  background-color: #000;
  height: 60vh;
  width: 100%;
  align-items: center;
}
.main-downloads h1 {
  color: #fff;
  text-align: center;
  font-family: "Gotham-Bold";
  font-size: 55px;
  padding-top: 20px;
}
.downloads-icons img {
  width: 12vw;
  height: 12vw;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.downloads-icons img:hover {
  width: 13vw;
  height: 13vw;
  transition: 0.3s all ease-in-out;
}
.downloads-icons {
  display: flex;
  justify-content: space-evenly;
  margin-top: 6%;
}
@media (max-width: 480px) {
  .main-restaurante h1 {
    font-size: 40px;
  }
  .main-downloads h1 {
    font-size: 40px;
  }
  .main-downloads {
    margin-bottom: 30px;
    height: 100%;
  }
  .downloads-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .downloads-icons {
    gap: 2vw;
  }
  .downloads-icons img {
    border-radius: 10px;
    width: 20vw;
    height: 20vw;
  }
}
