    :root {
      --primary-color: #0031d4;
      --secondary-color: #e31c79;
      --tertiary-color: #ffa606;
      --gray-color: #797563;
      --text-color: #00a9e0;
      --background-light: #fff;
      --curve-color: #fff;
    }

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

    body {
      font-family: 'Bryant', sans-serif;
      background-color: #f8f9fa;
    }

    .bold{
      font-weight: 700;
    }

    .medium{
      font-weight: 500;
    }

    .regular{
      font-weight: 400;
    }

    .light{
      font-weight: 300;
    }
    
    .carousel-inner {
      overflow: hidden;
      position: relative;
      width: 100%;
    }

    .carousel-item {
      background: no-repeat 50% scroll;
      background-size: cover;
      height: 100vh;
      min-height: 350px;
    }

    .carousel-item a {
  position: relative;
  z-index: 10;
}

    .carousel-control-next, .carousel-control-prev{
      z-index: 8;
    }

    .onda-banner {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: 7;
      overflow: hidden;
      pointer-events: none;
    }

    .onda-banner svg {
      position: absolute;
      bottom: -7px;
      width: 100%;
      height: auto;
      display: block;
    }

    .carousel-banner {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      object-position: center;
    }

    .calendario-text {
      padding: 0rem 2rem;
      text-align: left;
    }

    .py-10{
      padding-top: 9rem !important;
      padding-bottom: 3rem !important;
    }

    #calendario h2 {
      color: #00a9e0;
      font-size: 2.5rem;
    }

    #calendario .subp{
      font-size: 1.3rem;
    }
    
    #calendario p {
      color: #797563;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    #calendario-img {
      max-width: 100%;
      height: auto;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.onda-bottom-calendario {
  position: relative;
  margin-bottom: -1px; /* remove espaçamentos indesejados */
  z-index: 1;
}

.onda-bottom-calendario svg {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* .ingresso-desconto {
  position: relative;
  z-index: 2;
  margin-top: -5px;
  background: url('/imagens/pocobranco.jpg') no-repeat center center;
  background-size: cover;
} */

/* Container principal com efeito parallax */
.home-ticket {
  position: relative;
  background: url('../../assets/img/optimized/ingressodesconto.webp') no-repeat center center fixed;
  background-size: cover;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  z-index: 3;
  /* display: flex; */
  /* align-items: center;
  justify-content: center; */
}

/* Camada escura */
.home-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.home-ticket__text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 2rem;
}

/* Títulos */
.home-ticket__text h1 {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffc406;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.home-ticket__text h2 {
  font-size: 1.4rem;
  color: #fff;
  padding-bottom: 35px;
  line-height: 1.5;
  max-width: 750px;
  margin: 0 auto;
}

/* Grid com 3 colunas fixas no desktop */
.home-ticket__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  align-items: stretch;
}

/* Item */
/* .home-ticket__benefits-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  backdrop-filter: blur(6px);
} */

.home-ticket__benefits-item:hover {
  transform: translateY(-6px);
}

/* Texto */
.home-ticket__benefits-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #fff;
}

/* Ícone circular */
.circle-icon {
  width: 90px;
  height: 90px;
  border: 3px solid #ffc406;
  background: #f1b434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.circle-icon:hover {
  transform: rotate(20deg) scale(1.05);
}

.icon-ingresso {
  fill: white;
  width: 50%;
  height: 50%;
}

/* Botão centralizado */
.btn-compre {
  display: inline-block;
  background: linear-gradient(135deg, #69be69, #57a857);
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 14px 48px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-compre:hover {
  background: linear-gradient(135deg, #5dff5d, #4ed24e);
  transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 992px) {
  .home-ticket__benefits {
    grid-template-columns: 1fr 1fr; /* tablet em 2 colunas */
  }
}

@media (max-width: 600px) {
  .home-ticket__benefits {
    grid-template-columns: 1fr; /* mobile em 1 coluna */
  }

  .circle-icon {
    width: 70px;
    height: 70px;
  }

  .home-ticket__benefits-text {
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .btn-compre {
    font-size: 1.1rem;
    padding: 12px 32px;
  }
}

    
/* .home-ticket {
  background: url('../../assets/img/banner/ingressodesconto.png') no-repeat center center scroll;
  background-size: cover;
  min-height: 700px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
  top: 80px;
  z-index: 3;
}

.home-ticket__text {
  color: #fff;
  text-align: left;
  margin-left: 170px;
  max-width: 700px;
}

.home-ticket__text h1 {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffc406;
  line-height: 1.2;
  transition: all 0.8s ease;
}

.home-ticket__text h2 {
  font-size: 1.4rem;
  color: #fff;
  padding-bottom: 35px;
  line-height: 1.5;
  transition: all 0.8s ease 0.1s;
}

.home-ticket__benefits {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.home-ticket__benefits-item {
  width: fit-content;
  color: #fff;
  text-align: center;
  transition: all 0.8s ease;
  transition-delay: 0.35s;
}

.home-ticket__benefits-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 1.3rem;
  line-height: 1.5rem;
  margin-bottom: 30px;
}

.circle-icon {
  width: 100px;
  height: 100px;
  border: 3px solid #ffc406;
  border-radius: 100px;
  position: relative;
  text-align: center;
  backface-visibility: hidden;
  transform: perspective(2500px) rotateY(0);
  transition: transform 0.8s ease 0.8s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-icon img.icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-ingresso{
  fill: #f1b434;
  width: 50%;
  height: 50%;
}

.btn-compre {
  background-color: rgb(105, 190, 105);
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 15px 60px;
  border-radius: 60px;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-compre:hover {
  background-color: rgb(93, 255, 93);
  transform: scale(1.05);
} */

.promo-cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  /* gap: 2rem; */
  /* justify-content: center; */
  /* margin-top: 60px; */
}


.promo-card {
  position: relative;
  width: 100%;
  max-width: 25%;
  height: 500px;
  background: #fff;
  border: 2px solid #faf8f0;
  padding: 2rem 3rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* border-radius: 10px; */
  /* box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1); */
}

.promo-icon {
  width: 150px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.4s ease;
  /* margin: 0 auto 1rem; */
  z-index: 2;
}


/* .promo-content {
  z-index: 2;
  max-width: 80%;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
} */

.promo-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  transition: transform 0.4s ease;
}

.promo-text {
  color: #797563;
  font-size: 1rem;
  margin: 0;
  transition: transform 0.4s ease;
}

.promo-btn {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  background-color: #ff685c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  text-decoration: none;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  /* background-color: #ffc406; */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.promo-overlay.promo1 {
  background-color: #ffc406;
}
.promo-overlay.promo2 {
  background-color: #00a3ad;
}
.promo-overlay.promo3 {
  background-color: #e31c79;
}
.promo-overlay.promo4 {
  background-color: #00a9e0;
}

/* Hover Effects */
.promo-card:hover .promo-icon {
  transform: scale(1.7);
  opacity: 0.2;
}

.promo-card:hover .promo-title,
.promo-card:hover .promo-text {
  transform: translateY(-50px);
}

.promo-card:hover .promo-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.promo-card:hover .promo-overlay {
  opacity: 0.15;
}

.promo-cards + .onda-bottom-promo-card {
  position: relative;
  /* width: 100%;
  height: 100px; */
  margin-top: -100px; /* Faz a sobreposição da próxima seção */
  z-index: 2;
}

.onda-bottom-promo-card svg {
  display: block;
  width: 100%;
  /* height: 100%; */
}


.attraction-section {
  position: relative;
  z-index: 1;
  margin-top: -40px; /* remove o gap visual */
  background-color: #00a9ff;
  padding: 10rem 3rem;
}


.attraction-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.attraction-media {
  flex: 1 1 500px;
  position: relative;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.attraction-media video {
  width: 100%;
  height: auto;
  display: block;
}

.attraction-content {
  flex: 1 1 400px;
  text-align: left;
}

.attraction-content h2 {
  font-size: 3rem;
  color: #00a9e0;
  margin-bottom: 20px;
}

.attraction-content p {
  font-size: 1.3rem;
  color: #797563;
  margin-bottom: 30px;
}

.btn-attraction {
  display: inline-block;
  background-color: #ffc406;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-attraction:hover {
  background-color: #ff8c00;
}

/* Reset básico e container centralizado */
.atracoes {
  padding: 60px 20px;
  background-color: #f3f3f3;
}

.atracoes .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Título */
.atracoes-titulo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #005fa3;
}

/* Grid de cards no desktop */
.atracoes-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

  .attraction-section {
  background: #e5f6ff;
  position: relative;
  overflow: hidden;
}

.video-container {
  position: relative;
}

.attraction-shape {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 100%; */
  /* height: 105%; */
  pointer-events: none;
}

.attraction-linewater {
  position: absolute;
  bottom: -10px;
  left: 0;
  fill: rgb(0, 169, 224);
  width: 100%;
  pointer-events: none;
}

.pirate-img {
  position: absolute;
  bottom: 40px;
  left: 300px;
  width: 300px;
  max-width: 50%;
  fill: rgb(227, 28, 121);
  pointer-events: none;
}

.tree-svg {
  position: absolute;
  right: 0;
  fill: rgb(0 163 173);
  width: 250px;
  pointer-events: none;
  top: 0;
}

/* Estilo individual dos cards */
.card {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
}

/* Hover nos cards */
.card:hover {
  transform: scale(1.03);
}

/* BLOG THERMAS */
.title-blog{
  font-size: 2.7rem;
  color: var(--text-color);
}

.subtitle-blog{
  font-size: 1.2rem;
}

.blog-link {
  text-decoration: none;
  color: inherit;
}

.blog-card {
  background: var(--background-light);
  border-radius: 20px;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
  max-width: 380px;
  /* min-height: 530px; */
  height: 530px;
  padding: 0;
  position: relative;
  transition: 0.3s;
  text-align: left;
  color: var(--text-color);
}


.blog-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
  top: -30px;
  width: 90%;
  left: 5%;
  max-height: 200px;
  height: 100%;
  z-index: 1;
}

.blog-image img {
  width: 100%;
  height: 200px; /* você pode ajustar conforme seu layout */
  object-fit: cover;
  aspect-ratio: 16/9;
  object-position: center center; /* centraliza no meio da imagem */
  display: block;
}

.blog-image .curve {
  fill: var(--curve-color);
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}

.blog-content {
  padding: 0px 10% 100px;
}

.blog-title {
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 20px;
}

.blog-excerpt {
  font-weight: 400;
  font-size: 1rem;
  color: var(--gray-color);
  margin: 0 0 1rem;
}

.blog-title, .blog-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* número de linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word; /* força quebra de palavra longa */
  word-break: break-word; /* garante a quebra */
}

.blog-meta {
  position: absolute;
  bottom: 30px;
  left: 10%;
  font-size: 0.8rem;
  line-height: 1rem;
  text-transform: uppercase;
  color: var(--text-color);
}

.blog-line {
  display: inline-block;
  width: 1px;
  height: 50px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: 3px;
  left: 0;
}

.blog-category {
  color: var(--secondary-color);
  margin-left: 6px;
}

.blog-date {
  font-weight: 300;
  color: var(--gray-color);
  margin-left: 6px;
}

.blog-btn {
  background-color: #ebe8e4;
  border-radius: 100px;
  height: 50px;
  width: 50px;
  position: absolute;
  bottom: 30px;
  right: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.blog-section{
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 3rem; */
  padding: 0rem 3rem 10rem;
}

/* Hover nos cards do blog */
.blog-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-25px);
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.3);
}

.blog-card:hover .blog-btn {
  background-color: var(--secondary-color); /* destaque no botão */
  transform: scale(1.1);
}

.blog-btn {
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Garantir que o Swiper funcione com sua estrutura */
.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  display: flex !important;
  justify-content: center;
}

.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 20px !important;
}

.swiper-button-next,
.swiper-button-prev {
  border-radius: 50px;
  width: 50px !important;
  height: 50px !important;
  background-color: rgb(0, 180, 240);
  color: #000000; /* cor verde ou outra da sua paleta */
}

@media (max-width: 1200px) {
  
  .promo-card {
    padding: 2rem 1rem;
  }

  .promo-card:hover .promo-icon {
    transform: scale(1.5);
  }

  .promo-btn {
    position: absolute;
    bottom: 100px;
    transform: translateX(-50%) translateY(100%);
  }

  .promo-title {
    font-size: 1.5rem;
  }

  .promo-text {
    font-size: 0.8rem;
  }

  .blog-title{
    font-size: 1.2rem;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
  }

  .blog-card {
    margin: 50px 0;
    max-width: 100%;
    min-height: 400px;
  }

  .blog-section{
    padding: 5rem 1rem;
  }
}

/* Siga-nos em telas menores (entre 768px e 991px) */
@media (max-width: 991px) {
  .responsive-logo{
    display: flex;
    justify-content: space-evenly;
  }

  .home-ticket__text {
    margin-left: 50px;
    margin-top: 60px;
    max-width: 600px;
  }

  .home-ticket__text h1 {
    font-size: 2rem;
  }

  .home-ticket__text h2 {
    font-size: 1.2rem;
    padding-bottom: 25px;
  }

  .home-ticket__benefits {
    justify-content: center;
    gap: 30px;
  }

  .circle-icon {
    width: 80px;
    height: 80px;
    border-width: 2.5px;
  }

  .home-ticket__benefits-text {
    font-size: 1.1rem;
    gap: 15px;
  }

  .btn-compre {
    font-size: 1.3rem;
    padding: 12px 40px;
  }

  .calendario-resp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  .carousel-banner {
    height: 100vh !important;  /* Garante altura total no mobile */
    object-fit: cover;
    object-position: center;
  }

  .calendario-text {
    width: 100%;
    text-align: center;
  }

  #calendario h2 {
    font-size: 1.75rem;
  }
  #calendario p {
    font-size: 0.95rem;
  }

  .promo-card {
    max-width: 50%;
  }

  .promo-title{
    font-size: 2.2rem;
  }

  .promo-text{
    font-size: 1.2rem;
  }
  
  .attraction-section {
    margin-top: -20px;
  }

  .blog-card {
    max-width: 100%;
    min-height: 300px;
  }

  .blog-section {
    padding: 5rem 1rem;
  }
}

/* Em telas menores que 768px, apenas reduza os ícones */
@media (max-width: 768px) {
  .home-ticket {
    background-image: url('../../assets/img/optimized/ingressodesconto.webp');
  }

  .home-ticket__text {
    margin-left: 0px;
    /* margin-top: 50px; */
    max-width: 100%;
    padding: 0 20px;
    /* text-align: center; */
  }

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

  .home-ticket__text h1 {
    font-size: 2rem;
  }

  .home-ticket__text h2 {
    font-size: 1.2rem;
    padding-bottom: 20px;
  }

  .home-ticket__benefits {
    flex-direction: column;
    /* align-items: center; */
    gap: 20px;
  }

  .circle-icon {
    width: 70px;
    height: 70px;
  }

  .home-ticket__benefits-text {
    flex-direction: row;
    text-align: left;
    font-size: 1.2rem;
    gap: 10px;
    margin-bottom: 0;
  }

  .btn-compre {
    font-size: 1.5rem;
    padding: 15px 30px;
  }

  #calendario {
    padding: 2rem 1rem;
  }
  #calendario h2 {
    font-size: 1.5rem;
  }
  #calendario p {
    font-size: 0.9rem;
  }

  .col-lg-9 {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .pirate-img {
    width: 250px;
    left: 210px;
    bottom: 10px;
  }

  .tree-svg {
    width: 120px;
    top: 20px;
  }

  .promo-card {
    max-width: 100%;
  }
  
  .attraction-section {
    margin-top: -11px;
  }

  .col-lg-9 {
    width: 100%;
  }

  .responsive-logo {
    flex-direction: column;
  }
}

/* Evita quebra abaixo de 480px */
@media (max-width: 480px) {
  .swiper-button-next {
    right: 0;
  }
  .swiper-button-prev {
    left: 0;
  }

  .blog-content{
    padding: 0px 14% 100px;
  }

  .attraction-content p{
    font-size: 1rem;
  }
  .pirate-img {
    width: 200px;
    left: 180px;
    bottom: 30px;
  }

  .tree-svg {
    width: 150px;
    top: -30px;
  }

  .attraction-linewater {
    bottom: -5px;
  }

    .home-ticket__text {
    margin-top: 40px;
    margin-left: 0;
    max-width: 100%;
    min-height: 640px;
    padding: 0 30px;
    text-align: left;
  }

  .home-ticket__text h1 {
    font-size: 1.7rem;
  }

  .home-ticket__text h2 {
    font-size: 1.1rem;
    padding-bottom: 15px;
  }

  .home-ticket__benefits {
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 30px;
    /* align-items: center; */
    gap: 15px;
  }

  .circle-icon {
    width: 60px;
    height: 60px;
  }

  .home-ticket__benefits-text {
    font-size: 1rem;
    text-align: left;
    gap: 8px;
  }

  .btn-compre {
    font-size: 1.5rem;
    padding: 10px 20px;
  }


  #calendario {
    padding: 0rem;
  }

  .calendario-text{
    padding: 0rem 1rem;
    text-align: center;
  }

  /* .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .vem-termas {
    gap: 5px !important;
    transform: none !important;
  }

  .sem-transforme {
    transform: none !important;
  }

  .col-4 {
    width: 32.33% !important;
  } */

  .blog-section{
    padding: 5rem 0.6rem;
  }
}