@import url("https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,400;1,300;1,700&display=swap");

/* @font-face {
  font-family: "Oruguitas";
  src: url("../../assets/fonts/Oruguitas.eot");
  src: url("../../assets/fonts/Oruguitas.eot?#iefix")
      format("embedded-opentype"),
    url("../../assets/fonts/Oruguitas.woff2") format("woff2"),
    url("../../assets/fonts/Oruguitas.woff") format("woff"),
    url("../../assets/fonts/Oruguitas.ttf") format("truetype"),
    url("../../assets/fonts/Oruguitas.svg#Oruguitas") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: 'Museo700';
  src: url('../../assets/fonts/Museo-700.eot');
  src: url('../../assets/fonts/Museo-700.eot?#iefix') format('embedded-opentype'),
      url('../../assets/fonts/Museo-700.woff2') format('woff2'),
      url('../../assets/fonts/Museo-700.woff') format('woff'),
      url('../../assets/fonts/Museo-700.ttf') format('truetype'),
      url('../../assets/fonts/Museo-700.svg#Museo-700') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo300';
  src: url('../../assets/fonts/Museo-300.eot');
  src: url('../../assets/fonts/Museo-300.eot?#iefix') format('embedded-opentype'),
      url('../../assets/fonts/Museo-300.woff2') format('woff2'),
      url('../../assets/fonts/Museo-300.woff') format('woff'),
      url('../../assets/fonts/Museo-300.ttf') format('truetype'),
      url('../../assets/fonts/Museo-300.svg#Museo-300') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-color-dark: #151515;
  --bg-color-orange: #fc6313;
  /* --font-family-title: "Oruguitas"; */
  --font-family-title:'Museo700';
  --font-family-p:'Museo300';
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/*Cor do Scroll*/
body::-webkit-scrollbar {
  width: 16px;
}

body::-webkit-scrollbar-track {
  background: var(--bg-color-orange);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--bg-color-dark);
  border-radius: 0px;
  border: 2px solid var(--bg-color-orange);
}

::marker {  
  color: var(--bg-color-dark)
}

.img-fluid {
  max-width: 100%;
}

.img-center {
  margin: 0 auto;
  display: table;
}

h2 {
  /* font-family: "Oruguitas"; */
  /* font-size: 3.875rem; */
  margin: 0;
}
h3 {
  /* font-family: var(--font-family-title); */
  font-size: 3.875rem;
  margin: 0;
}
p {
  font-family: var(--font-family-p);
  font-size: 1.75rem;
  line-height: 1.2;
}

.text-color-white {
  color: white;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}
/*Placeholder*/
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #fff !important;
}

#video {
  background-color: #0d0d0d;
  padding-bottom: 4rem;
}

.video-container {
  position: relative;
  padding-bottom: 45.25%;
  height: 0;
  width: 80%;
  background: url(../../assets/images/img-video.jpg) center;
  background-size: cover;
  margin: 0 auto;
}

.video-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -5px;
  border-radius: inherit;
  background: linear-gradient(to right, red, orange);
  background: #000;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.video-container img {
  cursor: pointer;
}

.video-container:before {
  content: "▶";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffffa3;
  font-size: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 0;
  top: 0;
  padding: 5px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--bg-color-orange);
}

.swiper-slide img {
  opacity: 1;
  width: 100%;
}

.mySwiperVideo img {
  filter: grayscale(0);
  cursor: pointer;
}
.mySwiperVideo img:hover {
  opacity: 0.8;
}

.mySwiperVideo img.active {
  filter: grayscale(1);
}

/* .link-video {
  float: left;
}

img.link-video:before {
  content: "▶";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffffa3;
  font-size: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 9;
} */

/*GRID*/
.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  position: relative;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 820px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1620px;
  }
}

.container.sm {
  max-width: 1090px;
}

.container.md {
  max-width: 1250px;
}

.container.lg {
  max-width: 1380px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.container .row {
  margin-right: calc(1 * var(--bs-gutter-x));
  margin-left: calc(1 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
  box-sizing: border-box;
}

.row-center {
  align-items: center;
  justify-content: center;
}

.col-lg-25 {
  flex: 0 0 auto;
  width: 25%;
}

.col-lg-40 {
  flex: 0 0 auto;
  width: 40%;
}

.col-lg-50 {
  flex: 0 0 auto;
  width: 50%;
}

.col-lg-60 {
  flex: 0 0 auto;
  width: 60%;
}

.col-lg-75 {
  flex: 0 0 auto;
  width: 75%;
}

.col-lg-100 {
  flex: 0 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  .col-md-100 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .col-sm-100 {
    flex: 0 0 auto;
    width: 100%;
  }
}

section {
  margin-top: -5px;
}

section .padding {
  padding: 8rem 0;
}

#header {
  background-color: var(--bg-color-dark);
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
}

#header .img-bt-compre {
  /* height: 35px; */
  padding: 20px;
}

#header .img-bt-compre.mobile {
  display: none;
}

#header img:hover {
  opacity: 0.8;
}

/*----NAV----*/
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  background: transparent;
  max-width: 1620px;
  padding: .9rem 0.3rem ;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}

nav .logo img {
  width: 100%;
  cursor: pointer;
}

nav .logo li,
nav .logo li a {
  float: left;
  list-style:none;
}

nav ul {
  --padding: 20px;
  --font-size: 17px;
  padding-left: 0;
  padding-bottom: 0;
  list-style: none;
  display: flex;
  align-items: center;
  font-size: var(--font-size);
  overflow: hidden;
  /* transition: 1s cubic-bezier(.68,-0.55,.27,10.55); */
}

nav ul li a {
  padding: 16px;
  box-sizing: border-box;
}

.link-home {
  display: none;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  font-family: var(--font-family-p);
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
}

nav ul li a:hover {
  color: var(--bg-color-orange);
}

nav ul li.active a {
  color: var(--bg-color-orange);
}

nav ul li a::after {
  content: "";
  width: 0%;
  height: 1.7px;
  border-radius: 99px;
  background: var(--main-clr);
  position: absolute;
  bottom: -10px;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

nav .menu {
  width: 22px;
  height: 16px;
  cursor: pointer;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin: 20px;
}

nav .menu span {
  width: 90%;
  height: 4px;
  border-radius: 0;
  background: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-transform-origin: left;
  transform-origin: left;
}

@media (max-width: 1199px) {
  nav .menu {
    display: flex;
  }

  nav ul {
    --height: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    width: 100%;
    left: 0;
    top: 109px;
    height: var(--height);
    -webkit-transition: 1s cubic-bezier(0.68, -0.55, 0.27, 0.55);
    transition: 1s cubic-bezier(0.68, -0.55, 0.27, 0.55);
    background: var(--bg-color-dark);
  }

  nav ul.active {
    --height: calc(
      (((var(--padding) * 1.1) + (var(--font-size) * 1.1))) *
        var(--childenNumber)
    );
    /*   (Block Level Padding + The Font Size) * The Number of Children   */
    -webkit-transition: 1s ease;
    transition: 1s ease;
  }

  nav ul {
    top: 60px;
  }

  nav ul li {
    margin-bottom: 1rem;
  }
}

/*----BANNER----*/
#banner {
  padding-top: 142px;
}

/*----CAMAROTE----*/
#camarote {
  margin-top: -5px;
  background-color: #000;
  padding-bottom: 15px;
}

#camarote h2 {
  font-family: var(--font-family-p);
  font-size: 50px;
  font-weight: normal;
}

#camarote h3 {
  font-family: var(--font-family-title);
}

.swiper-pagination-bullet {
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.8);
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #fff !important;
}

.box-position {
  position: absolute;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  z-index: 9;
  height: calc(50px + 40vw);
}

/*----SERVIÇOS----*/
#servicos {
  background: url(../../assets/images/bg-servicos.jpg) top center;
  background-size: cover;
}

#servicos h2 {
  font-family: var(--font-family-p);
  font-size: 50px;
  text-align: center;
  font-weight: normal;
}

#servicos p {
  text-transform: uppercase;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: normal;
  margin: 0;
  margin-top: 26px;
  display: table;
}

#servicos p small { 
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
  margin-left: 40px;
  float: left;
  font-style: normal;
}

#servicos p small.left0 { 
  margin-left: 0;
}

#servicos p::before {
  content: "";
  background: url(../../assets/images/ico-logo.png) no-repeat;
  width: 30px;
  height: 30px;
  float: left;
  margin-top: -2px;
  margin-right: 10px;
}

/*----COMO CHEGAR----*/
#chegar {
  background: url(../../assets/images/bg-chegar.jpg) no-repeat;
  background-size: cover;
}

#chegar h2 {
  margin-top: -20px;
}

#chegar h2 {
  font-family: var(--font-family-p);
  font-size: 50px;
}

#chegar p {
  margin: 0;
}

#chegar img {
  margin: 2rem 0;
}

.box-chegar {
  margin-left: 6vw;
}

#fotos {
  padding: 60px 0;
  background-color: #0d0d0d;
}

#fotos p {
  padding: 0 12px;
}
/*----INFORMAÇÕES----*/
#info, .contagem {
  background: linear-gradient(to right, #fa391d, #ffae00);
}

.linha {
  margin: 0 auto;
  display: table;
}

#info h2 {
  font-family: var(--font-family-p);
  font-size: 50px;
  text-align: center;
}

/*Acordeon*/
.accordion {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.accordion h3 {
  font-size: 1.75rem;
  font-family: var(--font-family-p);
  font-style: normal;
  font-weight: 400;
  color: #fff;
}

.ico-branco {
  background: url(../../assets/images/icon-asteriscos.png) no-repeat;
  width: 19px;
  height: 19px;
  float: left;
  margin-top: 4px;
  margin-right: 10px;
}

.ico-rosa {
  display: none;
  background: url(../../assets/images/icon-asteriscos-rosa.png) no-repeat;
  width: 19px;
  height: 19px;
  float: left;
  margin-top: 4px;
  margin-right: 10px;
}

/* .accordion h3::before {
  content: "*";
  background: url(../../assets/images/icon-asteriscos.png) no-repeat;
  width: 19px;
  height: 19px;
  float: left;
  margin-top: 4px;
  margin-right: 10px;
} */

.accordion p {
  font-size: 1rem;
  font-family: var(--font-family-p);
}

.accordion-item {
  margin-bottom: 0px;
}

.accordion-header {
  background-color: var(--bg-color-orange);
  cursor: pointer;
  position: relative;
  border-radius: 30px;
  padding: 15px 0px 10px 25px;
  border: 2px solid #fff;
}

.arrow {
  position: absolute;
  top: 45%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  /* background-color: #fff; */
  border-radius: 0px 0px 10px 10px;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
  transition: max-height 0.3s ease;
}

.accordion-content img {
  filter: hue-rotate(45deg);
}

/*----FALE CONOSCO---*/
#fale {
  background-color: var(--bg-color-dark);
}

#fale h2 {
  font-family: var(--font-family-p);
  font-size: 50px;
  text-align: center;
}

form {
  margin-top: 40px;
}

form .form-control {
  width: 100%;
  background-color: var(--bg-color-dark);
  border: 2px solid #fff;
  border-radius: 45px;
  padding: 17px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-family: "Anybody";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  padding-bottom: 13px;
  color: var(--bg-color-orange);
}

form textarea.form-control {
  border-radius: 20px;
}

form input[type="submit"] {
  background: linear-gradient(to right, #fa391d, #ffae00);
  border-radius: 10px;
  padding: 9px 1.8rem;
  color: #fff;
  font-weight: 400;
  font-size: 21px;
  margin: 0 auto;
  margin-top: 0.5rem;
  cursor: pointer;
  font-family: "Anybody";
  display: block;
  border: none;
  padding-top: 12px;
}

form input[type="submit"]:hover {
  background-color: #fff;
  color: var(--bg-color-orange);
}

/*----CONTATO----*/
#contato {
  background: linear-gradient(to right, #fa391d, #ffae00);
}

#contato h2 {
  font-family: var(--font-family-p);
  font-size: 50px;
  text-align: center;
}

#contato a {
  color: #fff;
  text-decoration: none; 
}

.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed; 
  opacity:1;
   background-color: rgba(0, 0, 0, .9);
   border-top: 1px solid #fff;
   bottom: 0;
   width: 100%;
   color: #fff;
   z-index: 9;
   display: block;
   justify-content: center;
   align-items: center;
   padding: 1rem 1rem 3rem 3rem;
   box-sizing: border-box;
}

.box-cookies p {
  font-size: 18px;
  line-height: 26px;
}

.box-cookies .bt-aceitar {
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  padding: 10px 50px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: var(--font-family-p);
  margin-top: 0rem;
  display: inline-block;
}

.box-cookies .bt-aceitar:hover {
  border: 2px solid #fff;
  background-color: #fff;
  color: #000;
}

/*Pop Up*/
.html-popup-hidden {
  overflow: hidden;
}

.html-popup-auto {
  overflow-y: auto;
}

#alertaPopUp {
  position: absolute;
  z-index: 99999;
}
#alertaPopUp p {
  font-size: 14px;
}
#alertaPopUp h2,
#alertaPopUp span {
  font-family: var(--font-family-p);
}
#alertaPopUp .popupFixed {
  position: fixed;
  background: rgb(82 82 82/90%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#alertaPopUp .boxPopUp { 
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 1100;
  _filter: alpha(opacity=90);
  -moz-opacity: 0.95;
  opacity: 0.95;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}
#alertaPopUp .boxPopUp .box {
  padding: 1px;
  background: #fff;
  max-width: 920px;
  width: 100%;
}
#alertaPopUp .boxPopUp .topPop {
  width: 100%;
  background: #000;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#alertaPopUp .boxPopUp .topPop span {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 26px;
  padding: 8px 3px 0 9px;
}
#alertaPopUp .boxPopUp .btClose {
  cursor: pointer;
  color: #fff;
  padding: 20px;
  font-family: arial;
  font-size: 19px;
  text-align: center;
  background: #fc6313;
}
#alertaPopUp .boxPopUp .btClose:hover {
  background: #fff;
  color: #fc6313;
}
#alertaPopUp .boxPopUp .mainPop {
  padding: 10px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: calc(629px + 10vw);
  overflow: auto;
  /* background: url(../images/bg-club.webp) no-repeat top center; */
  background-size: contain;
}

/*----FOOTER----*/
#footer {
  background-color: var(--bg-color-dark);
  padding: 4rem 0;
}
#footer .logo {
  float: right;
}

#footer p {
  font-size: 20px;
}

#footer p.text-lowercase {
  text-transform: lowercase;
}

#footer a {
  text-transform: uppercase;
  text-decoration: none;
}

.bt-whatsapp {
  width: 103px;
  height: 103px;
  bottom: -20px;
  right: -5px;
  position: fixed;
  cursor: pointer;
  background-image: url(../images/whatsapp.png);
  z-index: 999;
  background-repeat: no-repeat;
  display: block;
  background-size: 71%;
}

.bt-whatsapp:hover {
  opacity: 0.8;
}

@media (max-width: 1399px) {
  #banner {
    padding-top: 140px;
  }
  nav .logo img {
    max-width: 160px;
  }

  nav ul li a {
    font-size: 0.8rem;
  }

  #camarote p {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

@media (max-width: 1199px) {
  nav ul li a {
    font-size: inherit;
  }

  #servicos p small.left0 {
    margin-left: 40px;
  }

  #header .img-bt-compre.mobile {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    padding-left: 10px;
  }

  /* #camarote p,
  #servicos p,
  #chegar p,
  .accordion h3,
  #fale p {
    font-size: 1.2rem;
    line-height: 1.4rem;
  } */

  .ico-branco,
  .ico-rosa {
    margin-top: 0px;
  }

  #servicos p small {
    font-size: 18px;
    line-height: 21px;
    width: 85% !important;
  }

  #servicos p::before {
    margin-top: -4px;
  }

  #banner {
    padding-top: 90px;
  }
}

@media (max-width: 991px) {
  .box-position {
    position: relative;
    height: auto;
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  #camarote h2,
  #servicos h2, 
  #chegar h2, 
  #info h2,
  #fale h2,
  #contato h2 {
    font-size: 32px;
  }

  #camarote h3 {
    font-size: 26px;
  }

  #header .img-bt-compre.mobile {
    padding: 0px 30px;
    width: 80%;
  }

  #video .padding {
    padding: 4rem 0;
  }

  #footer p {
    text-align: center;
  }

  #footer .logo {
    float: inherit;
    margin: 0 auto;
    display: table;
    margin-top: 2rem;
  }
}

@media (max-width: 400px) {
  .container .row {
    margin-right: calc(0 * var(--bs-gutter-x));
    margin-left: calc(0 * var(--bs-gutter-x));
  }

  #camarote h3 {
    font-size: 36px;
  }
}
