  .navbar {    display: flex;    background-color: #103c6a;    justify-content: space-between;    align-items: center;    padding: 15px;    height: 90px;    position: relative;    z-index: 2;  }  .navbar a {    color: white;    padding: 14px 20px;    text-decoration: none;    text-align: center;  }  .navbar a:hover {    background-color: #103c6a;    color: gold;  }  .menu-items {    display: flex;    gap: 10px;  }  .logo {    height: 90%;    display: flex;    align-items: center;    padding-left: 10px;  }  .logo img {    height: 100%;  }  ::-webkit-scrollbar {    width: 0px;    height: 0px;  }  .hamburger {    display: none;    cursor: pointer;    font-size: 30px;    color: white;    position: fixed;    top: 20px;    right: 10px;    z-index: 3;  }  @media (max-width: 600px) {    .menu-items {      display: none;      flex-direction: column;      width: 100%;      background-color: #103c6a;      position: absolute;      top: 75px;      left: 0;      z-index: 2;    }    .navbar {      flex-direction: column;    }    .hamburger {      display: block;    }    .menu-items.active {      display: flex;    }  }  .content {    padding: 0;    margin: 0;    position: relative;    z-index: 1;  }  iframe {    width: 100%;    height: 800px;    border: none;    overflow: auto;  }  .ios-scroll-wrapper {    -webkit-overflow-scrolling: touch;    overflow: auto;    height: 800px;  }  .ios-scroll-wrapper iframe {    width: 100%;    min-width: 300px;    max-width: 100%;    height: 100%;    border: none;    padding: 1px;    box-sizing: border-box;  }  /* Botão Buscar Passeios */  .btn-search {    background-color: #FAE82C;    color: #103c6a;    transition: background-color 0.3s ease;    border-radius: 30px;    padding: 10px 20px;    display: inline-block;    text-align: center;    text-decoration: none;    font-weight: bold;  }  .btn-search:hover {    background-color: #ffcc00;    color: #103c6a;    transition: background-color 0.3s ease;  }  .one_quarter {    display: flex;    justify-content: center;    align-items: center;    margin: 10px 0;  }  @media (max-width: 768px) {    .one_quarter {      width: 100%;      justify-content: center;    }    .btn-search {      width: auto;    }  }  /* Botão Agende agora */  .btn-search2 {    background-color: #F3A71E;    color: #000000;    border-radius: 30px;    padding: 10px 20px;    text-decoration: none;    font-weight: bold;  }  .btn-search2:hover {    background-color: #C48B00;    color: #FFFFFF;    transition: background-color 0.3s ease;  }