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

body {
  font-family: "Poppins", sans-serif;
  user-select: none;
  scroll-behavior: smooth;
  text-align: justify;
}

h1,
h2,
h3 {
  font-family: "Nunito", sans-serif;
}

.header-container {
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.13);
  background-color: #fff;
}

.nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  height: 100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 100%;
}

.logo > a > img {
  width: 150px;
}

.menu-toggle {
  display: none;
}

.menu-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  font-weight: 500;
  gap: 50px;
}

.menu-nav > li > a {
  font-size: 18px;
  text-decoration: none;
  color: #012c61;
  transition: ease-in-out 0.5ms;
}

.menu-nav > li > a:hover {
  font-weight: bold;
  color: #2c64a8;
}

.sociais-header {
  display: flex;
  flex-direction: row;
  text-decoration: none;
}
.sociais-header a {
  text-decoration: none;
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: ease-in-out 0.5s;
  background-color: #e4405f;
}
.insta-header:hover {
  color: #e4405f;
  background-color: transparent;
  border: 1px solid #e4405f;
}

.mobile-menu {
  display: none;
}

.main-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.main-container::before,
.main-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;
  transition: opacity 15s ease-in-out;
  will-change: transform, opacity;
}

.main-container::before {
  background-image: linear-gradient(
      to top,
      #5e94d6 0%,
      #000000 0%,
      transparent 75%
    ),
    url(../img/parrachos-rio-do-fogo.jpg);
  animation: fadeZoom1 20s infinite ease-in-out;
}

.main-container::after {
  background-image: linear-gradient(
      to top,
      #5e94d6 0%,
      #000000 0%,
      transparent 75%
    ),
    url(../img/praia-ponta-negra.jpg);
  animation: fadeZoom2 20s infinite ease-in-out;
}

@keyframes fadeZoom1 {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  45% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeZoom2 {
  0%,
  45% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
  95% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
  }
}

.banner-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1200px;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}

.banner-main > h1 {
  font-size: 50px;
  font-weight: bold;
  position: relative;
  margin-top: 50px;
  color: #ffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.card-banner-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 50%;
  height: 380px;
  padding: 10px;
  line-height: 180%;
  border-radius: 8px;
  position: relative;
  right: 250px;
  top: 30px;
  color: #fff;
  border: 1px solid white;
  background-color: #0505053d;
}

.card-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.bnt-banner-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.bnt-banner-main i {
  padding-right: 5px;
}

.btn-acao-passeio {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  background-color: #5e95d6;
}

.btn-acao-passeio:hover {
  background-color: #2c64a8;
}

.btn-acao-contato {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  background-color: #25d366;
}

.btn-acao-contato:hover {
  background-color: #169143;
}

.section-servicos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #5e95d6, #ffffff 95%, transparent);
}

.section-servicos h2 {
  margin: 50px;
  color: #012c61;
}

.section-servicos-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.section-servicos-content a {
  text-decoration: none;
}

.section-servicos-content h3 {
  margin-top: 15px;
  color: #012c61;
}

.section-servico-passeios {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  color: #202020;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.363);
}

.section-servico-passeios figure {
  border-radius: 8px;
  overflow: hidden;
}

.section-servico-passeios img {
  display: block;
  width: 280px;
  height: 250px;
  border-radius: 8px;
  transition: transform 0.4s ease-in-out;
}

.section-servico-passeios img:hover {
  transform: scale(1.1);
}

.section-servico-passeios p {
  color: #fff;
  padding: 8px;
  margin: 5px;
  border-radius: 10px;
  background-color: #0059ff;
}

.section-servico-passeios p:hover {
  background-color: #003597;
}

.span-hr-servicos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 1200px;
  margin: 50px auto;
}
.span-hr-servicos > span {
  font-size: 28px;
  color: #fff;
}

.span-hr-servicos hr {
  width: 100%;
  border: 1px solid #fff;
}

.span-hr {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 1200px;
  margin: 50px auto;
}
.span-hr > span {
  font-size: 28px;
  color: #034af0;
}

.span-hr hr {
  width: 100%;
  border: 1px solid #034af0;
}

.section-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1200px;
  height: 100%;
  gap: 30px;
  color: #012c61;
  margin: 50px auto;
}

.form-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 650px;
}

.form-content input {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  border: 1px solid #5e95d6;
  margin-bottom: 20px;
}

.form-content textarea {
  width: 100%;
  height: 200px;
  padding: 12px;
  outline: none;
  resize: none;
  font-size: 16px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #5e95d6;
}

.btn-form {
  width: 200px;
  padding: 12px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  color: #ffffff;
  background-color: #0059ff;
}

.btn-form:hover {
  background-color: #003c86;
}

.footer-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 450px;
  position: absolute;
  background: #0059ff;
}

.bg-footer {
  stroke: none;
  fill: #fdfdfd;
  transform-origin: center;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 1200px;
  height: 100%;
  gap: 20px;
  margin: 0 auto;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 50%;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 200px;
  color: #fff;
  gap: 10px;
}

.localizacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 200px;
  color: #fff;
  gap: 10px;
}

.localizacao span {
  color: #ddc702;
  font-weight: 600;
}

.localizacao > a {
  color: #fff;
  text-decoration: none;
}

.localizacao > a:hover {
  text-decoration: underline;
}

.politica-privacidade {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  height: 200px;
  color: #fff;
}

.politica-privacidade a {
  text-decoration: none;
  color: #fff;
}

.politica-privacidade a:hover {
  text-decoration: underline;
}

.icon-circle i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: #012c61;
  transition: ease-in-out 0.2s;
  background-color: #e2ecf8;
}

.icon-circle i:hover {
  color: #0059ff;
}

.icon-circle {
  text-decoration: none;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: 5px auto;
  position: absolute;
  bottom: 0;
}

.footer-copy > small {
  font-size: 16px;
  color: #ffffff;
}

.footer-copy > small > a {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
}

.footer-copy > small > a > i {
  font-style: normal;
  color: #ffffff;
}

.agencia i {
  font-style: normal;
}

.agencia a {
  text-decoration: none;
  color: #ffffff;
}

.agencia p {
  text-decoration: none;
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: transparent;
  border-radius: 50%;
}

.pulse img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.pulse {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  background-color: #02c765;
}

.pulse:after {
  content: "";
  position: absolute;
  inset: 0px;
  background: inherit;
  opacity: 0.9;
  border-radius: 50%;
  animation: pulse 0.9s infinite;
}

@keyframes pulse {
  to {
    transform: scale(1.9);
    opacity: 0;
  }
}

/*  Style Duvidas  */

.section-accordion {
  margin-bottom: 50px;
}

.accordion {
  width: 850px;
  margin: 0px auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
}

.accordion h2 {
  color: #012c61;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Nunito", sans-serif;
}

@media screen and (max-width: 1080px) {
  .accordion {
    width: 95%;
  }
}

.accordion-header {
  cursor: pointer;
  padding: 1rem;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #012c61;
  text-align: justify;
}

.accordion-header:hover {
  text-decoration: underline;
}

.accordion-header::after {
  content: "▶";
  position: absolute;
  right: 1rem;
  color: #0059ff;
  transition: transform 0.3s ease;
}

.accordion.open .accordion-header::after {
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
  text-align: justify;
}

.accordion.open .accordion-content {
  padding-bottom: 1rem;
}

.parceiros {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  gap: 50px;
}

.parceiros h2 {
  color: #012c61;
  margin-bottom: 20px;
  font-family: "Nunito", sans-serif;
}

.parceiros a {
  color: #012c61;
  font-size: 1rem;
  text-decoration: none;
}

.parceiros a:hover {
  text-decoration: underline;
}

.marazul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 40px;
  gap: 25px;
  flex-wrap: wrap;
}

.marazul span {
  font-weight: 600;
  color: rgb(255, 56, 56);
}

.parceiros-banner {
  transition: 0.35s;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.parceiros-banner:hover {
  box-shadow: none;
}
.parceiros-banner img {
  max-width: 300px;
  border-radius: 8px;
}

/* banner-cookie */

#cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  position: fixed;
  z-index: 1000;
  color: #fff;
  background-color: #012c61f1;
}

.hidden {
  display: none !important;
}

.cookie-banner a {
  color: #ffeb3b;
  text-decoration: underline;
}

.cookie-banner button {
  background: #4db8ff;
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.cookie-banner button:hover {
  background: #3399ff;
}

.hr-footer {
  width: 90%;
  max-width: 1200px;
  margin-bottom: 20px;
}

/* media screen*/

@media screen and (max-width: 1080px) {
  body {
    text-align: justify;
  }

  .nav-container {
    width: 100%;
  }

  .logo {
    margin-left: 10px;
  }

  .main-container {
    height: 800px;
  }

  .main-container::before,
  .main-container::after {
    background-position: 90%;
  }

  .banner-main {
    width: 95%;
    margin: 0 auto;
  }
  .banner-main > h1 {
    text-align: center;
    line-height: 130%;
    font-size: 25px;
  }

  .span-hr-servicos,
  .span-hr {
    width: 95%;
  }

  .section-servicos-content {
    align-items: center;
    justify-content: center;
    width: 95%;
  }

  .section-servico-passeios {
    margin-bottom: 1.5rem;
  }

  .card-banner-main {
    width: 100%;
    height: 480px;
    right: 0px;
    top: 10px;
  }

  .bnt-banner-main {
    gap: 15px;
  }

  .btn-acao-contato {
    min-width: 50%;
  }
  .btn-acao-passeio {
    width: 50%;
  }

  .sociais-header {
    display: none;
  }

  .menu-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .contato-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px;
    position: absolute;
    bottom: 150px;
  }

  .contato-mobile i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
  }

  .contato-mobile a {
    text-decoration: none;
    color: #333333 !important;
    transition: ease-in-out 0.5s;
  }

  .contato-mobile a:hover {
    color: #4259ff;
  }

  .contatos-banner {
    width: 90%;
  }

  #cookie-banner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    display: flex;
    width: 100%;
    height: 670px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 550px;
  }

  .footer-info h2 {
    margin-top: 20px;
  }

  .whatsapp-float {
    bottom: 80px;
  }

  /* duvidas */

  .container {
    width: 95%;
  }

  /* passeios */

  .parceiros h2 {
    text-align: center;
  }

  .parceiros a {
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
    right: 0;
  }

  .marazul {
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
  }

  .marazul span {
    width: 95%;
    text-align: justify;
  }

  .cookie-banner button {
    margin: 10px auto;
  }

  .section-form {
    width: 100%;
  }

  .form-content {
    width: 90%;
  }
}

/* mneu toogle */

.menu-toggle {
  font-size: 2rem;
  color: rgb(51, 51, 51);
  cursor: pointer;
  z-index: 1001;
  position: relative;
  right: 10px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: linear-gradient(to top, #5e95d6, #ffffff 95%);
  transition: top 0.5s ease;
}

.mobile-menu ul {
  padding: 0;
  list-style: none;
}

.mobile-menu ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  color: rgb(51, 51, 51);
  margin: 20px auto;
}

.mobile-menu.active {
  justify-content: flex-start;
  padding-top: 20px;
  top: 95px;
}

.rotate-icon {
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out;
}
