@media screen and (max-width: 900px) {
  header .menu-desktop,
  header .btn-contato {
    display: none;
  }
  header .btn-menu-mob {
    display: block;
  }
}

@media screen and (max-width: 880px) {
  /* Responsivo da HERO */
  .hero-site .txt-hero h1 {
    font-size: 2.5em;
    line-height: 40px;
  }

  .hero-site .txt-hero p {
    font-size: 14px;
  }

  .hero-site .txt-hero p span {
    display: inline;
  }

  .hero-site button {
    font-size: 16px;
  }

  /* Responsivo das vantagens */

  .vantagens .itens-container {
    flex-direction: column;
  }

  .vantagens .itens-container .img-itens img {
    width: 100%;
  }

  .vantagens .itens-container .txt-itens p {
    margin-bottom: 20px;
  }

  .vantagens .itens-container .item-1 {
    order: 1;
  }

  .vantagens .itens-container .item-2 {
    order: 0;
  }
  /* Responsivo dos botôes de contato */

  .txt-contato,
  .icons-contato {
    display: block;
    width: 100%;
  }

  .contato .txt-contato h3 {
    font-size: 2em;
    line-height: 40px;
  }

  .contato .txt-contato p {
    margin-bottom: 20px;
  }

  .contato .icons-contato a p,
  .contato .icons-contato a i {
    color: #000;
  }

  .contato .icons-contato button {
    width: 100%;
  }

  /* Responsivo da sessão hotéis */

  /* PARA IPHONE */

  section.hoteis {
    height: 600px;
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
  }

  section.hoteis::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* um pouco maior pro efeito */
    background-image: url(../images/hotel-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    transform: translateY(0);
    transition: transform 0.1s linear;
  }

  .hoteis > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000b3;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .hoteis > .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    z-index: 2;
    position: relative;
  }

  .hoteis h3 {
    font-size: 1.9em;
    line-height: 50px;
    font-weight: 300;
  }

  .hoteis h3 span {
    display: block;
    font-weight: 600;
  }

  .hoteis p {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 200;
  }

  .hoteis button {
    width: 220px;
    height: 60px;
  }
  section.hoteis::before {
    transform: translateY(var(--parallax, 0px));
  }

  /* Responsivo da sessão como funciona */

  .txt-funciona,
  .instru {
    display: block;
    width: 100%;
  }

  .como-funciona .txt-funciona {
    position: static;
  }

  .como-funciona .txt-funciona h3 {
    font-size: 3em;
    line-height: 48px;
  }

  .instru .instru-box {
    flex-direction: column;
    text-align: center;
  }

  /* Estilo Footer */

  footer .middle-footer a {
    margin: 10px 0;
    display: block;
  }

  footer .bottom-footer p {
    font-size: 14px;
  }
}
