@charset "UTF-8";
/* MIXINS RESPONSIVO */
:root {
  --radius: 28px;
  --peek: 15%;
  --gap: 12px;
  --transition: 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero {
  position: relative;
  top: -42px;
}

.hero img {
  width: 100%;
}

@media only screen and (max-width: 900px) {
  .hero img {
    width: 100%;
    height: 490px;
    object-fit: cover;
  }
}

.hero .bg {
  position: absolute;
  top: 45px;
  right: 0;
  background-image: url(../img/bg-hero-info.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 600px;
  height: 640px;
  overflow-x: hidden;
}

@media only screen and (max-width: 900px) {
  .hero .bg {
    width: 260px;
    height: 300px;
    top: 135px;
  }
}

.hero .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-left: 40px;
}

.hero .content .info-principal {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  .hero .content .info-principal {
    margin-right: 50px;
  }
}

.hero .content .info-principal span {
  font-family: regular;
  color: #229cd9;
  display: inline-block;
  text-align: center;
  font-size: 1.3rem;
}

@media only screen and (max-width: 900px) {
  .hero .content .info-principal span {
    display: none;
  }
}

.hero .content .info-principal h1 {
  font-family: regular;
  color: #e5252f;
  max-width: 210px;
  text-align: center;
  line-height: 30px;
  font-size: 2rem;
}

@media only screen and (max-width: 900px) {
  .hero .content .info-principal h1 {
    font-size: 1.5rem;
    max-width: 200px;
    line-height: 18px;
  }
}

.hero .content .info-principal h1 strong {
  font-weight: 400;
  font-size: 3rem;
}

@media only screen and (max-width: 900px) {
  .hero .content .info-principal h1 strong {
    font-size: 1.5rem;
  }
}

.hero .content .chamada-destaque {
  display: flex;
  flex-direction: column;
}

.hero .content .chamada-destaque span {
  font-family: regular;
  color: #229cd9;
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
}

@media only screen and (max-width: 900px) {
  .hero .content .chamada-destaque span {
    display: none;
  }
}

.hero .content .chamada-destaque p {
  font-family: regular;
  color: #377a9f;
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  max-width: 320px;
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  .hero .content .chamada-destaque p {
    display: none;
  }
}

.hero .content .chamada-destaque .btn-chamada {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  .hero .content .chamada-destaque .btn-chamada {
    margin-right: 30px;
  }
}

.hero .content .chamada-destaque .btn-chamada a {
  font-family: regular;
  color: #fff;
  background-color: #1c7eaf;
  padding: 1rem 1.5rem;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 1rem;
  width: 170px;
  text-align: center;
  border-radius: 5px;
  transition: all ease-in-out 0.5s;
}

@media only screen and (max-width: 900px) {
  .hero .content .chamada-destaque .btn-chamada a {
    padding: 0.5rem;
    width: 140px;
  }
}

.hero .content .chamada-destaque .btn-chamada a:hover {
  background-color: #219cd8;
}

.hero form .content-form {
  display: flex;
  flex-direction: column;
}

.hero form .content-form label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.2rem;
  border-radius: 17px;
}

.hero form .content-form label:has(input:checked) {
  background: #229cd9;
  color: #fff;
}

.hero form .content-form label:has(input:checked) .qtd-in {
  color: #fff;
}

.hero form .content-form label:has(input:checked) .valor {
  color: #fff;
}

.hero form .content-form label:has(input:checked) .obs {
  color: #fff;
}

.hero form .content-form label input {
  display: none;
}

.hero form .content-form label .qtd-in {
  font-family: regular;
  color: #229cd9;
  font-size: 1.4rem;
}

.hero form .content-form label .valor-in {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero form .content-form label .valor-in .valor {
  font-family: regular;
  color: #229cd9;
  font-size: 1.4rem;
}

.hero form .content-form label .valor-in .obs {
  font-family: regular;
  color: #229cd9;
  font-size: 0.65rem;
}

.hero form .content-form .btn-sub {
  display: flex;
  justify-content: center;
}

.hero form .content-form .btn-sub .btn-enviar {
  background-color: #3dc14d;
  color: #fff;
  font-family: regular;
  border: none;
  width: 230px;
  padding: 0.85rem 1rem;
  border-radius: 15px;
  font-size: 1.3rem;
  transition: all ease-in-out 0.5s;
  border: solid 1px #3dc14d;
  cursor: pointer;
}

.hero form .content-form .btn-sub .btn-enviar:hover {
  background-color: #fff;
  color: #3dc14d;
}

.video-home {
  padding: 5rem 0;
  background-image: url("../img/bg-conheca.jpg");
  background-size: cover;
  position: relative;
  top: -42px;
}

@media only screen and (max-width: 900px) {
  .video-home {
    padding: 3rem 0;
  }
}

.video-home .content-video {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 900px) {
  .video-home .content-video {
    flex-direction: column;
  }
}

.video-home .content-video .col-info {
  width: 30%;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .video-home .content-video .col-info {
    width: 100%;
  }
}

.video-home .content-video .col-info h2 {
  color: #fff;
  font-family: regular;
  font-size: 2.7rem;
  font-weight: normal;
  margin-bottom: 0;
  line-height: 29px;
}

@media only screen and (max-width: 900px) {
  .video-home .content-video .col-info h2 {
    font-size: 2rem;
    text-align: center;
  }
}

.video-home .content-video .col-info h3 {
  color: #fff;
  font-family: regular;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 44px;
  max-width: 230px;
}

@media only screen and (max-width: 900px) {
  .video-home .content-video .col-info h3 {
    font-size: 3rem;
    text-align: center;
    max-width: inherit;
  }
}

.video-home .content-video .col-info p {
  color: #fff;
  font-family: regular;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 0;
  line-height: 28px;
  max-width: 310px;
}

@media only screen and (max-width: 900px) {
  .video-home .content-video .col-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 28px;
    max-width: inherit;
    text-align: center;
  }
}

.video-home .content-video .col-info img {
  position: absolute;
  width: 310px;
  top: 250px;
  left: -70px;
  z-index: 5;
}

@media only screen and (max-width: 900px) {
  .video-home .content-video .col-info img {
    display: none;
  }
}

.video-home .content-video .col-video {
  width: 65%;
}

@media only screen and (max-width: 900px) {
  .video-home .content-video .col-video {
    width: 100%;
  }
}

.video-banner {
  position: relative;
  width: 100%;
  height: 421px;
  cursor: pointer;
  overflow: hidden;
  background-color: #000;
}

@media only screen and (max-width: 900px) {
  .video-banner {
    height: 260px;
  }
}

.video-banner__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-banner__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  transition: 0.3s;
}

.video-banner__play:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-banner__loading {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-banner__loading.active {
  opacity: 1;
}

.video-banner iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media only screen and (max-width: 900px) {
  .video-banner iframe {
    height: 260px;
  }
}

.chamada-ingresso {
  background-image: url("../img/bg-chamada.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 0;
  position: relative;
  top: -42px;
  z-index: 1;
}

.chamada-ingresso .content-ingresso {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso .content-ingresso {
    flex-direction: column;
  }
}

.chamada-ingresso .content-ingresso .col-info {
  margin-left: 200px;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso .content-ingresso .col-info {
    margin-left: 0;
  }
}

.chamada-ingresso h3 {
  color: #fff;
  font-family: regular;
  font-size: 2.85rem;
  font-weight: normal;
  text-transform: uppercase;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso h3 {
    font-size: 2rem;
    text-align: center;
  }
}

.chamada-ingresso p {
  color: #fff;
  font-family: regular;
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 0;
  max-width: 560px;
  line-height: 32px;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso p {
    font-size: 1rem;
    max-width: inherit;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 18px;
  }
}

.chamada-ingresso .col-ingressos a {
  background-color: #e2242c;
  color: #fff;
  padding: 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  width: 210px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 61px;
  transition: all ease-in-out 0.5s;
  font-weight: bold;
  font-size: 1.3rem;
  text-decoration: none;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso .col-ingressos a {
    font-size: 1rem;
    height: 50px;
    width: 190px;
  }
}

.chamada-ingresso .col-ingressos a img {
  margin-right: 5px;
}

.atracoes {
  padding-top: 0rem;
  background: #eba647;
  position: relative;
  top: -42px;
  background: linear-gradient(360deg, #eba647 8%, #fbe9c2 100%);
  /* ===== CAROUSEL ===== */
  /* Gradient overlay on peek slides */
  /* Active badge */
  /* ===== NAV ARROWS ===== */
}

.atracoes .titulo-atracoes-bg {
  font-family: regular;
  color: #1cbaea;
  font-size: 3rem;
  width: max-content;
  position: relative;
  top: 80px;
  left: 160px;
  background-image: url(../icons/bg-blog-titulo.png);
  background-repeat: no-repeat;
  width: 340px;
  height: 250px;
  background-size: contain;
}

@media only screen and (max-width: 900px) {
  .atracoes .titulo-atracoes-bg {
    top: 20px;
    left: 20px;
    width: 130px;
    height: 130px;
  }
}

.atracoes .titulo-atracoes-bg h2 {
  font-size: 4.5rem;
  position: absolute;
  top: 60px;
  left: 90px;
}

@media only screen and (max-width: 900px) {
  .atracoes .titulo-atracoes-bg h2 {
    font-size: 2.3rem;
    position: absolute;
    top: 30px;
    left: 40px;
  }
}

.atracoes .content-atracoes {
  display: flex;
}

@media only screen and (max-width: 900px) {
  .atracoes .content-atracoes {
    flex-direction: column;
  }
}

.atracoes .col-img {
  width: 35%;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .atracoes .col-img {
    width: 100%;
  }
}

.atracoes .col-img img {
  width: 470px;
  position: absolute;
  top: -70px;
  right: -110px;
}

@media only screen and (max-width: 900px) {
  .atracoes .col-img img {
    display: none;
  }
}

.atracoes .col-carrosel {
  width: 65%;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .atracoes .col-carrosel {
    width: 100%;
  }
}

.atracoes .carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.atracoes .carousel-track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform var(--transition);
}

.atracoes .carousel-slide {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  /* Default: peek state */
  width: var(--peek);
  transition: width var(--transition), filter var(--transition);
  filter: brightness(0.65) saturate(0.7);
}

.atracoes .carousel-slide.active {
  /* Active: full width = viewport - 3 peeks - 3 gaps */
  width: calc(100% - (3 * var(--peek)) - (3 * var(--gap)));
  filter: brightness(1) saturate(1);
  cursor: default;
}

.atracoes .carousel-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

@media only screen and (max-width: 900px) {
  .atracoes .carousel-slide img {
    height: 250px;
  }
}

.atracoes .carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 169, 106, 0.15) 0%, transparent 60%);
  border-radius: 28px;
  opacity: 0;
  transition: opacity var(--transition);
}

.atracoes .carousel-slide:not(.active):hover::after {
  opacity: 1;
}

.atracoes .carousel-slide .badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: "Syne", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s 0.2s, transform 0.35s 0.2s;
  white-space: nowrap;
  pointer-events: none;
}

.atracoes .carousel-slide.active .badge {
  opacity: 1;
  transform: translateY(0);
}

.atracoes .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-right: 4px;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .atracoes .nav {
    display: none;
  }
}

.atracoes .nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  outline: none;
}

.atracoes .nav-btn img {
  width: 50px;
}

.atracoes #nextBtn {
  position: absolute;
  top: -75px;
  right: -140px;
  z-index: 2;
}

.atracoes #prevBtn {
  position: absolute;
  top: -75px;
  right: -80px;
  z-index: 2;
}

.atracoes .nav-btn:hover {
  color: #fff;
  transform: scale(1.08);
}

.atracoes .nav-btn:active {
  transform: scale(0.96);
}

.atracoes .nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.atracoes .nav-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.atracoes .content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3.5rem;
}

@media only screen and (max-width: 900px) {
  .atracoes .content-bottom {
    flex-direction: column;
  }
}

.atracoes .content-bottom .col-informacoes {
  width: 65%;
}

@media only screen and (max-width: 900px) {
  .atracoes .content-bottom .col-informacoes {
    width: 100%;
  }
}

.atracoes .content-bottom .col-informacoes h3 {
  color: #fff;
  font-family: regular;
  font-size: 2.85rem;
  font-weight: normal;
}

@media only screen and (max-width: 900px) {
  .atracoes .content-bottom .col-informacoes h3 {
    font-size: 2rem;
    text-align: center;
  }
}

.atracoes .content-bottom .col-informacoes p {
  color: #fff;
  font-family: regular;
  font-size: 1.22rem;
  font-weight: normal;
  margin-bottom: 0;
}

@media only screen and (max-width: 900px) {
  .atracoes .content-bottom .col-informacoes p {
    text-align: center;
    line-height: 20px;
    margin-bottom: 1.5rem;
  }
}

.atracoes .content-bottom .col-ingressos {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e1a558;
  padding: 1.5rem 2rem;
}

.atracoes .content-bottom .col-ingressos h3 {
  color: #fff;
  font-family: regular;
  font-size: 1.7rem;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
}

.atracoes .content-bottom .col-ingressos a {
  background-color: #e2242c;
  color: #fff;
  padding: 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  width: 210px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 61px;
  transition: all ease-in-out 0.5s;
  font-weight: bold;
  font-size: 1.3rem;
  text-decoration: none;
}

@media only screen and (max-width: 900px) {
  .atracoes .content-bottom .col-ingressos a {
    font-size: 1rem;
    height: 50px;
    width: 190px;
  }
}

.atracoes .content-bottom .col-ingressos a img {
  margin-right: 5px;
}

.blog-home {
  background-image: url("../img/bg-blog-home.jpg");
  background-size: cover;
  position: relative;
  top: -42px;
  z-index: 1;
  background-repeat: no-repeat;
  height: 700px;
}

@media only screen and (max-width: 900px) {
  .blog-home {
    height: inherit;
    padding-bottom: 4rem;
  }
}

.blog-home .content-blog-home {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  .blog-home .content-blog-home {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.blog-home .col-infos {
  width: 37%;
  height: 100%;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .blog-home .col-infos {
    width: 100%;
    height: max-content;
    margin-bottom: 3.5rem;
  }
}

.blog-home .col-infos .titulo-blog-bg {
  background-image: url(../icons/bg-blog-titulo.png);
  background-repeat: no-repeat;
  width: 330px;
  height: 280px;
  background-size: cover;
  position: relative;
  top: 80px;
  left: 70px;
}

@media only screen and (max-width: 900px) {
  .blog-home .col-infos .titulo-blog-bg {
    width: 140px;
    height: 120px;
    background-size: cover;
    position: relative;
    top: 40px;
    left: 10px;
  }
}

.blog-home .col-infos h2 {
  font-family: regular;
  color: #007fa7;
  font-size: 3rem;
  width: max-content;
  position: absolute;
  top: 80px;
  left: 100px;
  font-size: 4.5rem;
}

@media only screen and (max-width: 900px) {
  .blog-home .col-infos h2 {
    font-size: 2.5rem;
    top: 35px;
    left: 40px;
  }
}

.blog-home .col-infos img {
  position: absolute;
  top: 130px;
  left: -170px;
  width: 450px;
}

@media only screen and (max-width: 900px) {
  .blog-home .col-infos img {
    display: none;
  }
}

.blog-home .parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  width: 86%;
  z-index: 3;
}

@media only screen and (max-width: 900px) {
  .blog-home .parent {
    width: 100%;
  }
}

.blog-home .parent article:nth-of-type(1) {
  grid-area: 1 / 1 / 6 / 3;
  height: 442px;
  margin-right: 1rem;
}

@media only screen and (max-width: 900px) {
  .blog-home .parent article:nth-of-type(1) {
    height: 250px;
  }
}

.blog-home .parent article:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.blog-home .parent article:nth-of-type(2) {
  grid-area: 1 / 3 / 3 / 5;
  margin-bottom: 1rem;
}

.blog-home .parent article:nth-of-type(2) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.blog-home .parent article:nth-of-type(3) {
  grid-area: 3 / 3 / 5 / 5;
}

.blog-home .parent article:nth-of-type(3) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.onde-estamos {
  position: relative;
  top: -42px;
  z-index: 1;
}

.onde-estamos img {
  width: 100%;
}

@media only screen and (max-width: 900px) {
  .onde-estamos img {
    width: 100%;
    height: 330px;
    object-fit: cover;
  }
}

.onde-estamos .content-onde-estamos {
  position: relative;
}

.onde-estamos h2 {
  color: #fff;
  font-family: regular;
  font-size: 3.5rem;
  position: absolute;
  top: 50px;
  left: 68px;
}

@media only screen and (max-width: 900px) {
  .onde-estamos h2 {
    font-size: 2rem;
    top: 10px;
    left: 20px;
  }
}

header .container {
  max-width: 1200px;
}

@media only screen and (max-width: 900px) {
  header .menu-desktop {
    display: none;
  }
}

header .top-header {
  padding: 1rem 0 0 0;
  background-image: url(../img/base.png);
  background-size: cover;
  background-position: center;
  z-index: 2;
  position: relative;
  height: 175px;
}

@media only screen and (min-width: 1750px) {
  header .top-header {
    height: 265px;
  }
}

header .top-header nav {
  margin-left: 70px;
  height: 30px;
}

header .top-header ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  height: 30px;
}

header .top-header ul li a {
  font-family: regular;
  color: #6e6e6e;
  text-decoration: none;
}

header .top-header ul li a img {
  margin-right: 5px;
}

header .top-header ul li .logo {
  width: 160px;
}

@media only screen and (min-width: 1750px) {
  header .top-header ul li .logo {
    width: 200px;
  }
}

header .top-header ul .ing a {
  background-color: #229cd9;
  color: #fff;
  padding: 0.8rem;
  border-radius: 30px;
  text-transform: uppercase;
  width: 155px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  transition: all ease-in-out 0.5s;
}

header .top-header ul .ing a img {
  margin-right: 5px;
}

.menu-mobile {
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  position: relative;
  background: #fff;
  padding: 1rem;
  display: none;
}

@media only screen and (max-width: 900px) {
  .menu-mobile {
    display: flex;
  }
}

.menu-mobile img {
  width: 100px;
}

.bottom-header {
  height: 55px;
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 81px;
  z-index: 1;
  background-size: cover;
  background-position: center;
  z-index: 9;
}

@media only screen and (min-width: 1750px) {
  .bottom-header {
    top: 150px;
  }
}

.content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.content-bottom span {
  text-transform: uppercase;
  font-family: regular;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff;
  font-size: 0.85rem;
}

.content-bottom ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.content-bottom ul li {
  margin: 0 7px;
}

.content-bottom ul a {
  font-family: regular;
  color: #fff;
  text-decoration: none;
}

body {
  background-color: #229cd9;
}

footer {
  background-color: #229cd9;
  padding-bottom: 42px;
}

@media only screen and (max-width: 900px) {
  footer {
    padding-bottom: 20px;
  }
}

footer #clock {
  width: 75px;
}

footer .content-footer .linha {
  width: 100%;
  background-image: url("../img/linha.png");
  height: 3px;
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 1.3rem 0;
}

footer .content-footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  footer .content-footer .top {
    flex-direction: column;
  }
}

footer .content-footer .top h5 {
  color: #fff;
  font-family: regular;
  font-size: 2.5rem;
  margin-bottom: 0;
}

@media only screen and (max-width: 900px) {
  footer .content-footer .top h5 {
    font-size: 1.5rem;
  }
}

footer .content-footer .top a {
  color: #48cbf4;
  font-family: regular;
  font-size: 1.3rem;
  text-decoration: underline;
}

footer .content-footer .top img {
  width: 25px;
  margin-left: 10px;
}

footer .mid {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 900px) {
  footer .mid {
    flex-direction: column;
  }
}

footer .mid .item-mid-info {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  footer .mid .item-mid-info {
    width: 100%;
    margin-bottom: 1rem;
  }
}

footer .mid .item-mid-info .info {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
}

footer .mid .item-mid-info .info h4 {
  color: #fff;
  font-family: regular;
  font-size: 1.35rem;
  font-weight: normal;
  margin-bottom: 0;
}

footer .mid .item-mid-info .info span {
  color: #fff;
  font-family: regular;
  font-size: 0.95rem;
  font-weight: normal;
  margin-bottom: 0;
}

footer .mid .item-mid-info .info a {
  color: #fff;
  font-family: regular;
  font-size: 0.95rem;
  font-weight: normal;
  margin-bottom: 0;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}

footer .mid .item-mid-info .info a:hover {
  color: #fad700;
}

footer .mid .item-mid-info img {
  width: 95px;
}

@media only screen and (max-width: 900px) {
  footer .mid .item-mid-info img {
    width: 75px;
  }
}

footer .bottom {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

footer .bottom img {
  width: 33px;
  margin-right: 15px;
}

footer .bottom a {
  color: #fff;
  font-family: regular;
  font-size: 1.25rem;
  font-weight: normal;
  margin-bottom: 0;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}

@media only screen and (max-width: 900px) {
  footer .bottom a {
    font-size: 0.9rem;
    line-height: 20px;
  }
}

footer .bottom a:hover {
  color: #fad700;
}

.banner-interno {
  background-image: url("../img/bg-paginas.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 0;
  position: relative;
  top: -42px;
  z-index: 1;
  padding-top: 42px;
}

@media only screen and (max-width: 900px) {
  .banner-interno {
    padding: 1.5rem 0;
    position: relative;
    top: 0px;
  }
}

.banner-interno h2 {
  color: #fff;
  font-family: regular;
  font-size: 3.85rem;
  font-weight: normal;
}

@media only screen and (max-width: 900px) {
  .banner-interno h2 {
    font-size: 2.8rem;
  }
}

.chamada-ingresso-interno {
  background-image: url("../img/bg-chamada.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 0;
  position: relative;
  top: -42px;
  z-index: 1;
  margin: 5rem 0;
}

.chamada-ingresso-interno .content-ingresso {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso-interno .content-ingresso {
    flex-direction: column;
  }
}

.chamada-ingresso-interno .content-ingresso .col-info {
  margin-left: 200px;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso-interno .content-ingresso .col-info {
    margin-left: 0;
  }
}

.chamada-ingresso-interno .content-ingresso .col-info img {
  position: absolute;
  top: -80px;
  width: 250px;
  left: -260px;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso-interno .content-ingresso .col-info img {
    display: none;
  }
}

.chamada-ingresso-interno h3 {
  color: #fff;
  font-family: regular;
  font-size: 2.85rem;
  font-weight: normal;
  text-transform: uppercase;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso-interno h3 {
    font-size: 2rem;
    text-align: center;
  }
}

.chamada-ingresso-interno p {
  color: #fff;
  font-family: regular;
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 0;
  max-width: 560px;
  line-height: 32px;
}

@media only screen and (max-width: 900px) {
  .chamada-ingresso-interno p {
    font-size: 1rem;
    max-width: inherit;
    line-height: 24px;
    margin-bottom: 1.5rem;
    text-align: center;
  }
}

.chamada-ingresso-interno .col-ingressos a {
  background-color: #e2242c;
  color: #fff;
  padding: 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  width: 210px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 61px;
  transition: all ease-in-out 0.5s;
  font-weight: bold;
  font-size: 1.3rem;
  text-decoration: none;
}

.chamada-ingresso-interno .col-ingressos a img {
  margin-right: 5px;
}

.menu-icon {
  display: none;
}

@media only screen and (max-width: 900px) {
  .menu-icon {
    width: 45px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: block;
    z-index: 9999;
  }
}

.menu-icon__line {
  height: 2px;
  width: 40px;
  display: block;
  background-color: #229cd9;
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease, -webkit-transform 0.2s ease;
  border-radius: 3px;
}

.menu-icon__line-left {
  width: 40px;
  margin-top: 7px;
}

.menu-icon__line-right {
  width: 40px;
  margin-bottom: 0;
}

.overlay {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 11111111;
  top: 0;
  left: 0;
  background-color: #229cd9c4;
  overflow-x: hidden;
  transition: 0.4s;
}

@media only screen and (max-width: 900px) {
  .overlay {
    height: 100vh;
  }
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  display: block;
  transition: 0.3s;
  width: max-content;
  margin-left: 4rem;
  font-size: 3rem;
  font-family: regular;
}

.overlay a span {
  color: #fff;
  text-transform: uppercase;
}

@media only screen and (max-width: 900px) {
  .overlay a {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
}

.overlay a:hover {
  color: #fff;
}

.overlay a:focus {
  color: #fff;
}

.overlay .overlay-content {
  position: relative;
  top: 7%;
  width: 100%;
  text-align: left;
  margin-top: 30px;
}

@media only screen and (max-width: 900px) {
  .overlay .overlay-content {
    top: 10%;
  }
}

@media only screen and (max-width: 600px) {
  .overlay .overlay-content {
    top: 20px;
  }
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media only screen and (max-width: 900px) {
  .overlay .closebtn {
    top: 0;
    right: 10px;
    font-size: 40px;
  }
}

.menu-icon__line-left {
  width: 38px;
}

.line-center {
  width: 24px;
  position: relative;
  left: 13px;
}

.menu-icon__line-right {
  width: 15px;
  position: relative;
  left: 21px;
}

.wpp {
  position: relative;
}

.wpp a {
  position: fixed;
  top: 770px;
  right: 5%;
  width: 70px;
  z-index: 999999;
}

@media only screen and (max-width: 900px) {
  .wpp a {
    width: 45px;
    top: 570px !important;
    right: 5px !important;
    left: inherit !important;
  }
}

.wpp a img {
  width: 70px;
}

@media only screen and (max-width: 900px) {
  .wpp a img {
    width: 45px !important;
  }
}

.promocoes {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.promocoes .filtros {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.promocoes .filtros button {
  padding: 10px 18px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

.promocoes .filtros button.active {
  background: #6b46c1;
  color: #fff;
}

.promocoes .filtros button:hover {
  background: #6b46c1;
  color: white;
}

.promocoes .lista-promocoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.promocoes .promo-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.promocoes .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.promocoes .promo-card img {
  width: 100%;
  display: block;
}

.promocoes .promo-card .promo-content {
  padding: 15px;
}

.promocoes .promo-card .promo-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.promocoes .promo-card .promo-content .descricao {
  font-size: 14px;
  color: #666;
}

@media (max-width: 900px) {
  .promocoes .lista-promocoes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .promocoes .lista-promocoes {
    grid-template-columns: 1fr;
  }
}

.page-template-page-fale-conosco footer {
  padding: 41px 0;
}

.banner-fale-conosco {
  background-image: url("../img/bg-paginas.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 0;
  position: relative;
  top: -42px;
  z-index: 1;
}

.banner-fale-conosco h2 {
  color: #fff;
  font-family: regular;
  font-size: 3.85rem;
  font-weight: normal;
}

.fale-conosco {
  background-color: #fff;
}

.fale-conosco .titulo-atracoes-bg {
  font-family: regular;
  color: #1cbaea;
  font-size: 3rem;
  width: max-content;
  position: relative;
  top: 80px;
  left: 160px;
  background-image: url(../icons/bg-blog-titulo.png);
  background-repeat: no-repeat;
  width: 340px;
  height: 250px;
  background-size: contain;
}

.fale-conosco .titulo-atracoes-bg h2 {
  font-size: 4.5rem;
  position: absolute;
  top: 60px;
  left: 90px;
}

.content-fale-consoco {
  display: flex;
  flex-direction: column;
  padding: 0 0 4rem 0;
}

@media only screen and (max-width: 900px) {
  .content-fale-consoco {
    flex-direction: column;
    padding: 1rem;
  }
}

.content-fale-consoco .content-form-fale {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 900px) {
  .content-fale-consoco .content-form-fale {
    flex-direction: column;
  }
}

.content-fale-consoco .col-form {
  width: 60%;
}

@media only screen and (max-width: 900px) {
  .content-fale-consoco .col-form {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.content-fale-consoco .col-form form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
}

@media only screen and (max-width: 900px) {
  .content-fale-consoco .col-form form {
    max-width: inherit;
  }
}

.content-fale-consoco .col-form form h3 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  font-family: regular;
  font-size: 1.5rem;
  color: #007fa7;
}

.content-fale-consoco .col-form form p {
  color: #6b6b66c7;
  line-height: 17px;
  margin-bottom: 0;
  font-family: regular;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.content-fale-consoco .col-form form label {
  font-family: regular;
  color: #6b6b66a3;
}

.content-fale-consoco .info-card {
  width: 30%;
}

@media only screen and (max-width: 900px) {
  .content-fale-consoco .info-card {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.form-card,
.info-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 24px;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.form-card h2 {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

.form-group label {
  font-size: 13px;
  color: #6b6b66;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 12px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a18;
  background: #f5f4f0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s;
  border: solid 1px #a8daeedb;
}

.form-group input,
.form-group select {
  height: 38px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a5cff;
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9c9a92;
}

.form-required-note {
  font-size: 12px;
  color: #9c9a92;
}

.form-success {
  background: #e6f4ec;
  color: #1a7a44;
  border: 1px solid #a8d9bc;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  text-align: center;
}

/* botão */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--primary {
  background: #1a5cffb0;
  color: #fff;
}

.btn--primary:hover {
  opacity: 0.88;
}

.btn--full {
  width: 100%;
  text-align: center;
  display: block;
}

/* info items */
.info-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-item__icon {
  font-size: 18px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  color: #6b6b66;
  margin-top: 2px;
}

.info-item__icon img {
  width: 25px;
}

.info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  font-family: regular;
  font-size: 1rem;
  color: #007fa7;
}

.info-item p {
  color: #6b6b66c7;
  line-height: 17px;
  margin-bottom: 0;
  font-family: regular;
  font-size: 1rem;
}

.info-map__placeholder {
  width: 100%;
  height: 120px;
  background: #f5f4f0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #9c9a92;
}

.info-map__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.info-social strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  font-family: regular;
  font-size: 1rem;
  color: #007fa7;
  text-align: center;
}

.info-social__links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.info-social__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-social__btn img {
  width: 25px;
}

.quem-somos {
  background-color: #fff;
  position: relative;
  padding-bottom: 20px;
}

.quem-somos .content-info-chamada {
  padding: 1rem 0 0 0;
}

@media only screen and (max-width: 900px) {
  .quem-somos .content-info-chamada {
    padding: 0;
  }
}

.quem-somos .content-info-chamada h3 {
  text-align: center;
  font-family: bold-interna;
  color: #209bd9;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem auto;
}

@media only screen and (max-width: 900px) {
  .quem-somos .content-info-chamada h3 {
    font-size: 1.6rem;
    margin-top: 3rem;
  }
}

.quem-somos .content-info-chamada p {
  font-family: regular-interna;
  text-align: center;
  font-size: 1.7rem;
  max-width: 960px;
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  .quem-somos .content-info-chamada p {
    max-width: initial;
    font-size: 1.1rem;
  }
}

.quem-somos .video-banner-qs {
  position: relative;
  width: 100%;
  height: 660px;
  cursor: pointer;
  overflow: hidden;
  background-color: #000;
  margin: 3.5rem 0;
}

@media only screen and (max-width: 900px) {
  .quem-somos .video-banner-qs {
    height: 210px;
  }
}

.quem-somos .video-banner-qs iframe {
  width: 100%;
  height: 100%;
}

.quem-somos .content-pre-galeria h3 {
  font-family: regular-interna;
  text-align: center;
  font-size: 1.85rem;
  margin: 0 auto 1rem auto;
  line-height: 35px;
}

@media only screen and (max-width: 900px) {
  .quem-somos .content-pre-galeria h3 {
    font-size: 1.6rem;
  }
}

.quem-somos .content-pre-galeria h3 strong {
  font-style: italic;
  font-weight: 600;
}

.quem-somos .content-pre-galeria p {
  font-family: regular-interna;
  text-align: center;
  font-size: 1.7rem;
  max-width: 1070px;
  margin: 0 auto;
}

@media only screen and (max-width: 900px) {
  .quem-somos .content-pre-galeria p {
    font-size: 1.35rem;
  }
}

.quem-somos .galeria-qs {
  padding: 41px 0;
}

.quem-somos .galeria-qs .gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
}

@media (max-width: 900px) {
  .quem-somos .galeria-qs .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .quem-somos .galeria-qs .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.quem-somos .galeria-qs .thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: #161616;
}

.quem-somos .galeria-qs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s;
}

.quem-somos .galeria-qs .thumb:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.quem-somos .galeria-qs .thumb:hover .thumb-overlay {
  opacity: 1;
}

.quem-somos .galeria-qs .thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.25s;
}

.quem-somos .galeria-qs .thumb-overlay svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.quem-somos .galeria-qs .thumb-num {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.qs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 24px;
}

.qs-overlay.active {
  display: flex;
}

.qs-overlay .qs-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1000px;
  width: 92vw;
}

.qs-overlay .modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.qs-overlay .modal-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(240, 237, 232, 0.45);
  text-transform: uppercase;
}

.qs-overlay .close-btn {
  background: none;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  color: #f0ede8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}

.qs-overlay .close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.qs-overlay .modal-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qs-overlay .modal-img-wrap img {
  max-width: 100%;
  max-height: 68vh;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.qs-overlay .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.07);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 2;
}

.qs-overlay .arrow:hover {
  background: rgba(255, 255, 255, 0.15);
}

.qs-overlay .arrow.left {
  left: -20px;
}

.qs-overlay .arrow.right {
  right: -20px;
}

@media (max-width: 700px) {
  .qs-overlay .arrow.left {
    left: 4px;
  }
  .qs-overlay .arrow.right {
    right: 4px;
  }
}

.qs-overlay .thumb-strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  max-width: 100%;
  padding: 4px 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.qs-overlay .thumb-strip::-webkit-scrollbar {
  height: 3px;
}

.qs-overlay .thumb-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.qs-overlay .mini {
  width: 56px;
  height: 38px;
  border-radius: 4px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.4;
  border: 1.5px solid transparent;
  transition: opacity 0.15s, border-color 0.15s;
  flex-shrink: 0;
}

.qs-overlay .mini.active {
  opacity: 1;
  border-color: #c8a96e;
}

.qs-overlay .mini:hover {
  opacity: 0.8;
}

.qs-overlay .modal-footer {
  display: flex;
  align-items: center;
  gap: 24px;
}

.qs-overlay .nav-btn {
  background: none;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.qs-overlay .nav-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.qs-overlay .counter {
  font-size: 13px;
  color: rgba(240, 237, 232, 0.45);
  letter-spacing: 1px;
  min-width: 52px;
  text-align: center;
}

.regras {
  background-color: #fff;
  padding-bottom: 9rem;
}

.regras .content-regras {
  display: flex;
}

@media only screen and (max-width: 900px) {
  .regras .content-regras {
    flex-direction: column;
    margin-top: 3rem;
  }
}

.regras .content-regras nav {
  width: 30%;
}

@media only screen and (max-width: 900px) {
  .regras .content-regras nav {
    width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  .regras .content-regras nav ul {
    margin-bottom: 2rem;
  }
}

.regras .content-regras nav ul li {
  margin-bottom: 0.5rem;
}

.regras .content-regras nav ul li a {
  font-family: bold-interna;
  color: #209bd9;
  text-decoration: none;
  font-size: 1.3rem;
}

.regras .content-regras .content-info {
  width: 70%;
}

@media only screen and (max-width: 900px) {
  .regras .content-regras .content-info {
    width: 100%;
  }
}

.regras .content-regras .content-info article {
  margin-bottom: 1.4rem;
}

.regras .content-regras .content-info h3 {
  font-family: bold-interna;
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.regras .content-regras .content-info p {
  font-family: regular-interna;
  font-size: 1.15rem;
  margin-bottom: 0;
  color: #000;
}

.regras .content-regras .content-info li {
  font-family: regular-interna;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.regras .content-regras .content-info a {
  text-decoration: underline;
  font-family: bold-interna;
  font-size: 1.15rem;
  transition: all ease-in-out 0.5s;
}

.regras .content-regras .content-info #como-chegar p {
  margin-bottom: 1rem;
  color: #000;
}

.regras .content-regras .content-info #como-chegar a {
  text-decoration: underline;
  font-family: bold-interna;
  font-size: 1.15rem;
}

.cadastro {
  background-color: #fff;
  padding: 0 0 10rem 0;
}

.cadastro .cad-card {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.cadastro .cad-card .cad-header h2 {
  text-align: center;
  font-family: bold-interna;
  color: #209bd9;
}

.cadastro .cad-card .cad-header p {
  font-family: regular-interna;
  text-align: center;
  font-size: 1.2rem;
}

.cadastro form .cad-section-title {
  font-family: regular-interna;
  color: #209bd9;
  margin-top: 1.5rem;
}

.cadastro form .cad-field {
  margin-bottom: 0.5rem;
}

.cadastro form .cad-error {
  margin-top: 0.5rem;
  font-family: regular-interna;
  color: red;
}

.cadastro form #btn-busca-cep {
  font-family: regular-interna;
  background-color: #209bd9;
}

.cadastro form h3 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  font-family: regular-interna;
  font-size: 1.5rem;
  color: #007fa7;
}

.cadastro form p {
  color: #000;
  line-height: 17px;
  margin-bottom: 0;
  font-family: regular-interna;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cadastro form label {
  font-family: regular-interna;
  font-size: 1rem;
  color: #000;
}

.cadastro form input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: regular-interna;
}

.cadastro form select {
  width: 60%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: regular-interna;
  font-size: 1rem;
}

.cadastro form button {
  width: 100%;
  padding: 10px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: regular-interna;
}

.cadastro form button:hover {
  background: #218838;
}

.cadastro form .message {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-family: regular-interna;
}

.grupos {
  background-color: #fff;
  padding-bottom: 7rem;
}

.grupos .content-grupos article {
  display: flex;
  margin-bottom: 6rem;
}

@media only screen and (max-width: 900px) {
  .grupos .content-grupos article {
    flex-direction: column;
    margin-top: 3rem;
  }
}

.grupos .content-grupos article .img-info img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  margin-right: 3.5rem;
}

@media only screen and (max-width: 900px) {
  .grupos .content-grupos article .img-info img {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}

.grupos .content-grupos article .content-info h3 {
  font-family: bold-interna;
  color: #209bd9;
  font-size: 1.5rem;
}

.grupos .content-grupos article .content-info span {
  font-family: bold-interna;
  font-size: 1.1rem;
}

.grupos .content-grupos article .content-info li {
  font-family: bold-interna;
  font-size: 1.1rem;
}

.groupos-sessao {
  padding: 0 0 7rem 0;
  background-color: #fff;
}

@media only screen and (max-width: 900px) {
  .groupos-sessao {
    margin-top: 3rem;
  }
}

.groupos-sessao p {
  font-family: regular-interna;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
  line-height: 35px;
}

.groupos-sessao a {
  color: #209bd9;
}

.groupos-sessao strong {
  font-family: bold-interna;
  font-size: 1.5rem;
}

.accordion-wrapper {
  width: 100%;
  margin: 2.5rem auto;
  padding: 0 1.25rem 4rem;
}

.accordion-item {
  background: #fff;
  border: 1px solid #d0e8f5;
  border-radius: 10px;
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.accordion-item.open {
  box-shadow: 0 4px 16px rgba(32, 155, 217, 0.12);
  border-color: #209bd9;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
  transition: background 0.15s;
  outline: none;
  border: solid 1px #c1c1c1;
}

.accordion-trigger:focus {
  outline: none;
}

.accordion-trigger:hover {
  background: #f0f8fd;
}

.accordion-item.open .accordion-trigger {
  background: #f0f8fd;
  font-family: bold-interna;
  color: #1578a8;
  font-size: 1.2rem;
}

.section-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: #e8f5fd;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.accordion-item.open .section-icon {
  background: #209bd9;
}

.trigger-label {
  flex: 1;
}

.chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #999;
}

.accordion-item.open .chevron {
  transform: rotate(180deg);
  color: #209bd9;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.accordion-body.open {
  max-height: 2000px;
}

.faq {
  background: #fff;
}

.accordion-content {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid #e8f2f9;
  font-family: regular-interna;
}

ul.info-list {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0.5rem;
}

ul.info-list li {
  font-size: 1rem;
  line-height: 1.6;
  padding: 0.15rem 0 0.15rem 1.1rem;
  position: relative;
  color: #1a1a1a;
}

ul.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #209bd9;
}

.alert {
  background: #fff8e1;
  border-left: 3px solid #1578a8;
  padding: 0.5rem 0.75rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.86rem;
  color: #1578a8;
  margin: 0.5rem 0;
  line-height: 1.5;
  font-family: bold-interna;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 0.75rem 0 0.5rem;
}

.price-card {
  background: #f7fbfe;
  border: 1px solid #d0eaf8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.price-card .day-label {
  font-size: 1rem;
  font-weight: 700;
  color: #209bd9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  font-family: bold-interna;
}

.price-card .price-highlight {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1578a8;
  display: block;
  margin: 0.12rem 0;
}

.price-card .price-row {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.tag {
  display: inline-block;
  background: #e8f5fd;
  color: #107ab0;
  font-size: 1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 2px 2px 2px 0;
}

.info-block {
  background: #f7fbfe;
  border: 1px solid #d0eaf8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
}

.info-block .block-label {
  font-size: 1rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 0.6rem 0;
}

.tobogua-card {
  background: #f7fbfe;
  border: 1px solid #d0eaf8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.tobogua-card .name {
  font-weight: 800;
  font-size: 0.98rem;
  color: #209bd9;
  margin-bottom: 0.2rem;
}

.tobogua-card .ext {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 580px) {
  .price-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 1.4rem;
  }
  .accordion-trigger {
    font-size: 0.88rem;
  }
}

.blog {
  background-color: #fff;
  padding-bottom: 9rem;
}

.blog .content-grupos article {
  margin-bottom: 2rem;
}

.blog .content-grupos article a {
  text-decoration: none;
  display: flex;
}

@media only screen and (max-width: 900px) {
  .blog .content-grupos article a {
    flex-direction: column;
  }
}

.blog .content-grupos article .img-info {
  width: 450px;
  margin-right: 1.5rem;
}

@media only screen and (max-width: 900px) {
  .blog .content-grupos article .img-info {
    width: 100%;
    margin: 1.5rem 0;
  }
}

.blog .content-grupos article .img-info img {
  width: 450px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

@media only screen and (max-width: 900px) {
  .blog .content-grupos article .img-info img {
    width: 100%;
  }
}

.blog .content-grupos article .content-info h3 {
  font-family: bold-interna;
  color: #209bd9;
  font-size: 1.5rem;
}

.blog .content-grupos article .content-info p {
  font-family: regular-interna;
  color: #000000c2;
  font-size: 1rem;
}

.content-blog-destaque {
  max-width: 800px;
  margin: 0 auto;
}

.content-blog-destaque h1 {
  font-family: bold-interna;
  color: #209bd9;
  font-size: 2rem;
  margin: 0 auto 1rem auto;
}

@media only screen and (max-width: 900px) {
  .content-blog-destaque h1 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
}

.content-blog-destaque h2 {
  font-family: bold-interna;
  font-size: 1.8rem;
}

@media only screen and (max-width: 900px) {
  .content-blog-destaque h2 {
    font-size: 1.6rem;
  }
}

.content-blog-destaque h3 {
  font-family: bold-interna;
  font-size: 1.6rem;
}

@media only screen and (max-width: 900px) {
  .content-blog-destaque h3 {
    font-size: 1.5rem;
  }
}

.content-blog-destaque h4 {
  font-family: bold-interna;
  font-size: 1.4rem;
}

@media only screen and (max-width: 900px) {
  .content-blog-destaque h4 {
    font-size: 1.3rem;
  }
}

.content-blog-destaque h5 {
  font-family: bold-interna;
  font-size: 1.2rem;
}

@media only screen and (max-width: 900px) {
  .content-blog-destaque h5 {
    font-size: 1.1rem;
  }
}

.content-blog-destaque p {
  font-family: regular-interna;
}

.content-blog-destaque strong {
  font-family: bold-interna;
}

.content-blog-destaque span {
  font-family: regular-interna;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.content-blog-destaque img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.politicas {
  background-color: #fff;
  padding-bottom: 9rem;
}

.politicas .content-politicas {
  display: flex;
}

@media only screen and (max-width: 900px) {
  .politicas .content-politicas {
    flex-direction: column;
    margin-top: 3rem;
  }
}

.politicas .content-politicas nav {
  width: 30%;
}

@media only screen and (max-width: 900px) {
  .politicas .content-politicas nav {
    width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  .politicas .content-politicas nav ul {
    margin-bottom: 2rem;
  }
}

.politicas .content-politicas nav ul li {
  margin-bottom: 0.5rem;
}

.politicas .content-politicas nav ul li a {
  font-family: bold-interna;
  color: #3782a7;
  text-decoration: none;
  font-size: 1.3rem;
}

.politicas .content-politicas .content-info {
  width: 70%;
}

@media only screen and (max-width: 900px) {
  .politicas .content-politicas .content-info {
    width: 100%;
  }
}

.politicas .content-politicas .content-info article {
  margin-bottom: 2rem;
}

.politicas .content-politicas .content-info h3 {
  font-family: bold-interna;
  color: #000;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.politicas .content-politicas .content-info h4 {
  font-family: bold-interna;
  color: #912d2d;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.politicas .content-politicas .content-info p {
  font-family: regular-interna;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  color: #000;
}

.politicas .content-politicas .content-info li {
  font-family: regular-interna;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.politicas .content-politicas .content-info a {
  text-decoration: underline;
  font-family: bold-interna;
  font-size: 1.15rem;
  transition: all ease-in-out 0.5s;
  color: #3782a7;
}

.politicas .content-politicas .content-info #como-chegar p {
  margin-bottom: 1rem;
  color: #000;
}

.politicas .content-politicas .content-info #como-chegar a {
  text-decoration: underline;
  font-family: bold-interna;
  font-size: 1.15rem;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

@font-face {
  font-family: bold-interna;
  src: url(../css/fonts/calibri-bold.ttf);
}

@font-face {
  font-family: regular-interna;
  src: url(../css/fonts/calibri-regular.ttf);
}

@font-face {
  font-family: regular;
  src: url(../css/fonts/CoolveticaRg-Regular.ttf);
}
