*, *::after, *::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #FFFFFF;
}

.foto-frase {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  height: 60vh;
  width: 100%;
  color: #d8d7d5;
  font-weight: 900;
  font-family: "Saira", sans-serif;
  font-size: 20px;
}
@media (max-width: 695px) {
  .foto-frase {
    font-size: 17px;
  }
}
.foto-frase a {
  margin-top: 10px;
  padding: 10px 25px;
}

.hero {
  background: url("/ARRAIAL/quad.JPG") no-repeat center center;
  background-size: cover;
  height: 90vh;
}

.topico {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
  height: 40px;
}
@media (max-width: 1104px) {
  .topico {
    font-size: 1rem;
  }
}

.sobre-nos {
  text-align: center;
  margin-top: 10px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.sobre-nos h1 {
  font-size: 47px;
}
.sobre-nos p {
  font-size: 18px;
  font-family: "Saira", sans-serif;
  font-weight: 600;
}
@media (max-width: 700px) {
  .sobre-nos p {
    font-size: 15px;
  }
}

.satisfacao {
  margin: 40px auto -60px auto;
  width: 200px;
}

.cancelamento {
  margin-left: 40px;
  margin-top: 40px;
  width: 60%;
}

.canc {
  margin-top: 10px;
  color: rgb(73, 72, 72);
  line-height: 20px;
  letter-spacing: 1px;
}

.arrow {
  color: #000;
}
@media (max-width: 912px) {
  .arrow {
    display: none;
  }
}

.btn {
  display: inline-block;
  padding: 8px 28px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: transparent;
  margin-bottom: 7px;
  position: relative;
  transition: 0.3s ease;
  color: #fff;
}
@media (max-width: 900px) {
  .btn {
    background: #129e69;
  }
}
.btn:hover {
  background: #129e69;
  border-radius: 10px;
}

.navbar {
  margin: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.49);
  height: 85px;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.menu-desk {
  display: flex;
  width: 100%;
  margin-left: 70px;
}
@media (max-width: 1104px) {
  .menu-desk {
    display: flex;
    justify-content: center;
    margin: 0;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-left: 35px;
}
@media (max-width: 1104px) {
  .nav-list {
    display: none;
  }
}

.nav-link {
  display: inline-block;
  font-family: "Saira", sans-serif;
  margin-left: 20px;
  font-size: 1.1rem;
}

.nav-social {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  margin-right: 20px;
  width: 90px;
}
@media (max-width: 768px) {
  .nav-social {
    display: none;
  }
}

.logo-inicio {
  text-align: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .logo-inicio {
    margin-left: 10.5%;
  }
}

.hamburguer:after {
  content: "";
  position: absolute;
  top: 35%;
  left: 15%;
  width: 70%;
  height: 5%;
  border-radius: 5px;
  background: #fff;
}

.hamburguer:before {
  content: "";
  position: absolute;
  top: 55%;
  left: 15%;
  width: 70%;
  height: 5%;
  border-radius: 5px;
  background-color: #fff;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  color: #fff;
}
@media (min-width: 1104px) {
  .menu {
    display: none;
  }
}
.menu li {
  margin-left: 10px;
  width: 100%;
  text-align: center;
  transition: 0.6s ease;
}
.menu li:hover {
  background-color: rgb(61, 60, 60);
}
.menu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: rgb(213, 211, 211);
  transition: 0.5s ease;
}
.menu li a:hover {
  color: #fff;
}

.menu {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  margin: 0;
  background-color: #222;
  width: 100%;
  max-width: 250px;
  padding: 100px 20px;
  flex-direction: column;
  transition: 0.5s ease;
}

html, body {
  height: 100vh;
}

body {
  font: 500 0.9rem/1 "Avenir Next", sans-serif;
  color: #333;
  background: #fff;
}

.wrapper {
  display: flex;
  min-height: 100%;
}

.sidebar {
  position: absolute;
  width: 220px;
  padding: 20px;
  transform: translateX(0);
  transition: transform 0.3s;
  background: #2f323e;
  height: 100vh;
  z-index: 2;
}

.content {
  flex: 1;
  padding: 50px;
  background: #fff;
  box-shadow: 0 0 5px #000;
  transform: translateX(0);
  transition: transform 0.3s;
}

.sidebar.isOpen {
  transform: translateX(-220px);
}

.button {
  cursor: pointer;
}

.button svg {
  width: 30px;
}
@media (min-width: 1104px) {
  .button svg {
    display: none;
    z-index: 999;
  }
}

.button line {
  stroke: rgb(186, 183, 183);
  stroke-width: 5;
}

h1 {
  margin-top: 25px;
  font-size: 40px;
  font-weight: 400;
}

.nav {
  list-style: none;
}

.nav li a {
  position: relative;
  display: block;
  margin-bottom: 5px;
  padding: 16px 0 16px 50px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.nav li a:hover,
.nav li a.active {
  background: rgba(0, 0, 0, 0.3);
}

.nav li a::before {
  font: 14px fontawesome;
  position: absolute;
  top: 15px;
  left: 20px;
}

/* classes do elemento que vai abrir por baixo da navbar e se clicado fecha o menu */
.fechaMenu {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.isClose {
  display: none;
}

.servs1 {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.servs1 img {
  width: 240px;
}
@media (min-width: 1820px) {
  .servs1 img {
    width: 300px;
  }
}
.servs1 h2 {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  font-family: "Saira", sans-serif;
  font-size: 20px;
  margin-top: 25px;
}
.servs1 .saibamais {
  background: #E43522;
  color: white;
  font-family: "Saira", sans-serif;
  font-size: 15px;
  width: 180px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.servs1 .saibamais a:hover {
  background: #F36050;
  transition: 0.7s;
  width: 180px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.servs1 .saibamais a {
  padding: 5px 45px 5px 45px;
}

.rodape {
  background: #040303;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  font-family: "Saira", sans-serif;
  font-size: 16px;
}
@media (max-width: 688px) {
  .rodape {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
  }
}

.rodape-logo {
  margin-top: 40px;
  width: 150px;
}

.termos {
  margin-top: 50px;
  color: #fff;
}

.pag {
  display: flex;
  width: 30px;
  gap: 0.4em;
}

.contatos {
  color: #fff;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.rede-sociais {
  margin-top: 50px;
  padding: 0;
  display: flex;
}

.rodape2 {
  background: #040303;
  color: white;
  font-size: 18px;
  font-family: "Saira", sans-serif;
  padding-top: 5px;
  border-top: 2px solid #040303;
  border-bottom: 2px solid #040303;
}

.endereco {
  padding-top: 0;
  margin-left: 25px;
  margin-bottom: 100px;
  width: 50%;
  display: flex;
  justify-content: center;
  color: #fff;
}
@media (max-width: 688px) {
  .endereco {
    font-size: 16px;
    margin-left: 20px;
    background-color: #040303;
  }
}

.roteiro {
  margin-left: 15px;
  margin-top: 30px;
}
.roteiro li {
  font-size: 1.1rem;
}
@media (max-width: 490px) {
  .roteiro li {
    font-size: 1.1rem;
  }
}

.emb {
  margin-left: 15px;
}
.emb li {
  font-size: 1.1rem;
}
@media (max-width: 490px) {
  .emb {
    font-size: 1.1rem;
  }
}

.excursao {
  margin-left: 15px;
}

.btn-reservar {
  background: #129e69;
  color: white;
  font-weight: 400;
  font-size: 25px;
  width: 230px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.btn-reservar a:hover {
  background: #13b878;
  transition: 0.8s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  width: 230px;
  height: 60px;
}
.btn-reservar a {
  padding: 10px 40px 10px 40px;
}
@media (max-width: 515px) {
  .btn-reservar {
    width: 180px;
    height: 50px;
    font-size: 20px;
  }
}

.reservar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rede-sociais {
  display: flex;
  align-items: flex-start;
}

li {
  margin-top: 5px;
}

.swiper {
  width: 100%;
  height: 100%;
  margin-top: 30px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.agendamento strong {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  margin-bottom: 8px;
  color: rgb(26, 25, 25);
}
@media (max-width: 360px) {
  .agendamento strong {
    font-size: 0.85rem;
  }
}

.plano {
  background: #fff;
  color: #000;
}

.topico {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 1079px) {
  .topico {
    margin-bottom: 1rem;
  }
}
.topico h1 {
  padding-top: 3rem;
}

.pacote {
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto 0 auto;
  width: 80%;
  padding-bottom: 4rem;
  flex-wrap: wrap;
  overflow: hidden;
}

.plano2 {
  background: #667077;
  width: 20rem;
  border-radius: 1rem;
  height: 33rem;
  font-family: "Saira", sans-serif;
  font-weight: 580;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 4rem 2rem 2rem 2rem;
  padding: 0 1.2rem;
  padding-bottom: 2rem;
  color: #fff;
}
@media (min-width: 1080px) {
  .plano2 {
    margin-top: 1rem;
  }
}
.plano2 h2 {
  margin: 0rem 0 2rem 0;
  text-align: center;
  padding-top: 2.8rem;
  color: #fff;
  font-weight: bold;
}
.plano2 h4 {
  font-size: 1.5rem;
  font-family: "Black Ops One";
  color: #7E0E72;
  margin-bottom: 0.5rem;
}
.plano2 h5 {
  margin-top: 3rem;
  color: #000;
  font-size: 1rem;
}
@media (min-width: 864px) {
  .plano2 h5 {
    margin-top: 5rem;
  }
}
.plano2 a {
  background: #129e69;
  color: #fff;
  font-weight: 600;
  font-family: "Saira", sans-serif;
  padding: 0.5rem 5rem 0.5rem 5rem;
  border-radius: 1rem;
  display: inline-block;
  transition: 0.7s ease;
}
.plano2 a:hover {
  transform: skewX(0deg) scale(1.1);
}
.plano2 a:hover::after {
  opacity: 1;
}
.plano2 a:hover::before {
  opacity: 1;
}

.btnAgendar {
  text-align: center;
}

.roteiro-titulo {
  margin-left: 0.4rem;
}

.roteiro {
  margin-left: 5%;
  margin-top: 0.7rem;
}

.embarcacao-titulo {
  margin: 0.7rem 0 0 0.4rem;
}

.embarcacao {
  margin-left: 8%;
  margin-top: 0.7rem;
}

.faq-title {
  color: #000;
  font-family: "blinker";
  text-align: center;
  margin: 6rem auto 3rem auto;
}

.faq-div {
  padding-bottom: 9rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.5rem;
}

.faq-question {
  background: #667077;
  border: 1px solid #fff;
  width: 70%;
  height: 3.5rem;
  font-family: "Saira", sans-serif;
  font-size: 1.1rem;
  color: white;
  cursor: pointer;
  text-align: left;
  padding-left: 1rem;
}
@media (max-width: 500px) {
  .faq-question {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .faq-question {
    width: 90%;
  }
}

.faq-answer {
  color: white;
  font-family: "Saira", sans-serif;
  font-size: 1.1rem;
  background: #979fa5;
  border: 1px solid #fff;
  width: 70%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: none;
}
@media (max-width: 500px) {
  .faq-answer {
    width: 90%;
  }
}

.answer {
  width: 90%;
  margin-left: 3%;
}
@media (max-width: 500px) {
  .answer {
    text-align: center;
  }
}

div.faq-answer.ativo {
  display: block;
}

.news-letter {
  background-color: #75b36e;
  color: #fff;
  font-size: 1.6rem;
  padding: 2rem;
  display: flex;
  justify-content: space-evenly;
}
.news-letter button {
  height: 2.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  background-color: #bd7c28;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.8);
  font-size: 1rem;
  color: #fff;
  border: none;
}
.news-letter button:hover {
  border-color: #007BFF;
  background-color: #cf903e;
  outline: none;
}
.news-letter input {
  font-size: 1rem;
  margin-top: 1rem;
  border: none;
  height: 2.5rem;
  padding: 0.5rem;
  width: 70%;
  border-radius: 8px;
}
.news-letter input:focus {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.8);
  outline: none;
}
.news-letter input:hover {
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.8);
  outline: none;
}

img, svg {
  display: block;
  width: 100%;
}

body {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: relative;
}

html {
  scroll-behavior: smooth;
}/*# sourceMappingURL=style.css.map */