:root {
  --creme: #feffda;
  --oliva: #7a7441;
  --oliva-claro: #bdbf76;
  --verde-oliva: #999a66;
  --laranja: #d48238;
  --laranja-claro: #ffa95b;
  --vermelho: #b84737;
  --branco: #ffffff;

  --fonte: 'Space Grotesk', system-ui, sans-serif;
  --t-titulo: clamp(1.75rem, 1rem + 2.4vw, 2.75rem);
  --t-subtitulo: clamp(1.375rem, 1rem + 1.25vw, 1.9375rem);
  --t-corpo-g: clamp(1.0625rem, 0.95rem + 0.45vw, 1.3125rem);
  --t-corpo-m: clamp(1rem, 0.9rem + 0.35vw, 1.1875rem);
  --t-corpo-p: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);

  --raio-botao: 23px;
  --largura-max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: var(--fonte);
  background: var(--creme);
  color: var(--oliva);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--laranja);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(100% - 2.5rem, var(--largura-max));
  margin-inline: auto;
}

.titulo-secao {
  font-size: var(--t-titulo);
  font-weight: 700;
  color: var(--branco);
  text-align: center;
  line-height: 1.05;
}

.titulo-secao--oliva {
  color: var(--oliva);
}

.titulo-secao--vermelho {
  color: var(--vermelho);
}

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1.6em;
  min-height: 3em;
  border-radius: var(--raio-botao);
  font-family: var(--fonte);
  font-weight: 600;
  font-size: var(--t-corpo-g);
  text-decoration: none;
  text-align: center;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.botao:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.botao:active {
  transform: translateY(0);
  box-shadow: none;
}

.botao--sm {
  font-size: clamp(0.9rem, 0.82rem + 0.3vw, 1.0625rem);
  min-height: 44px;
  padding: 0.5em 1.3em;
}

.botao--oliva {
  background: var(--oliva);
  border-color: var(--oliva);
  color: var(--branco);
}

.botao--oliva-claro {
  background: var(--oliva-claro);
  color: var(--branco);
}

.botao--branco {
  background: var(--branco);
  color: var(--laranja);
}

.botao--branco-laranja {
  background: var(--branco);
  color: var(--laranja);
}

.botao--laranja-claro {
  background: var(--laranja-claro);
  color: var(--branco);
}

.botao--vermelho {
  background: var(--vermelho);
  color: var(--branco);
}

.botao--vermelho-claro {
  background: #cf5443;
  color: var(--branco);
}

.barra {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--laranja);
  transition: box-shadow 0.2s ease;
}

.barra.rolou {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.barra__conteudo {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
  flex-wrap: wrap;
}

.barra__logo img {
  width: clamp(82px, 7vw, 102px);
  height: auto;
}

.barra__nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* ── Game DNJ – botão chamativo estilo neon gamer ── */
@keyframes game-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(184, 71, 55, 0.5), 0 0 20px rgba(153, 154, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.2); }
  50%      { box-shadow: 0 0 14px rgba(153, 154, 102, 0.6), 0 0 36px rgba(212, 130, 56, 0.45), 0 4px 18px rgba(0, 0, 0, 0.25); }
}

.botao--game {
  background: linear-gradient(135deg, var(--vermelho), var(--laranja), var(--laranja-claro), var(--oliva-claro));
  background-size: 300% 300%;
  color: var(--creme) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid rgba(254, 255, 218, 0.35);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  animation: game-pulse 2.2s ease-in-out infinite, game-gradient 4s ease infinite;
  transition: transform 0.22s ease, filter 0.22s ease;
}

@keyframes game-gradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.botao--game::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(254, 255, 218, 0.3), transparent);
  transform: skewX(-20deg);
  animation: game-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes game-shine {
  0%   { left: -60%; }
  30%  { left: 120%; }
  100% { left: 120%; }
}

.botao--game:hover {
  transform: translateY(-3px) scale(1.06);
  filter: brightness(1.15);
  box-shadow: 0 0 20px rgba(184, 71, 55, 0.8), 0 0 50px rgba(212, 130, 56, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.botao--game:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 0 8px rgba(184, 71, 55, 0.4);
}

.hero {
  line-height: 0;
}

.hero__banner {
  width: 100%;
  height: auto;
}

.dobra1 {
  position: relative;
  padding-block: clamp(7rem, 9vw, 9rem) clamp(2.6rem, 5vw, 4.2rem);
}

.dobra1__rasgo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  max-width: none;
  min-width: 1400px;
  pointer-events: none;
  z-index: 3;
  top: clamp(-50px, -4vw, -20px);
}

.dobra1__citacao {
  color: var(--laranja);
  font-size: var(--t-subtitulo);
  text-align: center;
}

.dobra1__conteudo {
  text-align: center;
  margin-top: -80px;
  margin-bottom: 120px;
  /* Aumentado para ~2cm de respiro */
}

.dobra1__faixa-wrap {
  position: relative;
  display: inline-block;
  margin-top: clamp(1.4rem, 3.5vw, 3.2rem);
}

.dobra1__selo {
  position: absolute;
  left: clamp(-34px, -2.6vw, -18px);
  top: clamp(-16px, -1vw, -8px);
  width: clamp(58px, 7vw, 94px);
  z-index: 2;
  filter: drop-shadow(-6px 7px 10px rgba(0, 0, 0, 0.09)) drop-shadow(-2px 2px 5px rgba(0, 0, 0, 0.1));
}

.dobra1__faixa {
  position: relative;
  width: min(460px, 86vw);
  padding: clamp(2.8rem, 7vw, 4.2rem) clamp(1.4rem, 4.5vw, 2.6rem) clamp(2.3rem, 6vw, 2.9rem);
}

.dobra1__faixa-fundo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dobra1__data {
  position: relative;
  font-size: clamp(1.7rem, 1rem + 2.5vw, 2.75rem);
  font-weight: 700;
  color: var(--branco);
  white-space: nowrap;
}

.dobra1__local {
  position: relative;
  font-size: clamp(0.9rem, 0.75rem + 0.55vw, 1.1875rem);
  font-weight: 500;
  color: var(--branco);
  margin-top: 0.3rem;
}

.dobra1__chamada {
  max-width: 800px;
  margin: clamp(1.4rem, 2.8vw, 2.1rem) auto 0;
  font-size: var(--t-corpo-g);
  font-weight: 500;
  line-height: 1.35;
}

.dobra1__botoes {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 2rem);
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 3.5vw, 2.6rem);
}

.dobra1__linha {
  width: min(980px, 90%);
  margin: clamp(2.2rem, 4.5vw, 3.6rem) auto 0;
}

.dobra1__sobre {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.4rem, 3.5vw, 3.4rem);
  margin-top: clamp(1.4rem, 2.8vw, 2.2rem);
}

.dobra1__ilustracao-wrap {
  margin-left: clamp(-2.6rem, -2.6vw, -1rem);
  justify-self: end;
  /* Traz a imagem para o lado do texto */
  margin-top: -34px;
  margin-bottom: -70px;
  /* Faz a foto "vazar" para baixo, sem empurrar a linha branca */
}

.dobra1__ilustracao {
  width: 100%;
  max-width: 660px;
}

.dobra1__texto {
  max-width: 470px;
  padding-right: clamp(1rem, 3.5vw, 2.6rem);
  font-size: var(--t-corpo-g);
  font-weight: 500;
  line-height: 1.35;
  display: grid;
  gap: 1.05em;
}

.dobra1__texto strong {
  font-weight: 700;
}

.dobra2 {
  position: relative;
  z-index: 5;
  background: var(--laranja);
  color: var(--branco);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1.8rem, 3.5vw, 3rem);
  margin-top: clamp(-20px, -3vw, -8px);
}

.dobra2__cabecalho .titulo-secao,
.dobra2__descricao {
  position: relative;
  z-index: 2;
}

.dobra2__rasgo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 160%;
  max-width: none;
  min-width: 1400px;
  pointer-events: none;
  z-index: 0;
  filter:
    drop-shadow(0 1px 0 var(--laranja)) drop-shadow(0 2px 0 var(--laranja)) drop-shadow(0 4px 0 var(--laranja)) drop-shadow(0 8px 0 var(--laranja)) drop-shadow(0 16px 0 var(--laranja)) drop-shadow(0 32px 0 var(--laranja)) drop-shadow(0 64px 0 var(--laranja)) drop-shadow(0 128px 0 var(--laranja)) drop-shadow(0 256px 0 var(--laranja)) drop-shadow(0 512px 0 var(--laranja));
}

.dobra2__rasgo--topo {
  bottom: calc(100% - 5px);
}

.dobra2__rasgo--baixo {
  top: calc(100% - 5px);
  transform: translateX(-50%) rotate(180deg);
}

.dobra2>.container {
  position: relative;
  z-index: 2;
}

.dobra2__cabecalho {
  position: relative;
  text-align: center;
  max-width: 940px;
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  isolation: isolate;
}

@media (max-width: 768px) {
  .dobra2__cabecalho .titulo-secao {
    font-size: 1.5rem !important;
    padding-inline: 1.5rem;
  }
}

.dobra2__cabecalho::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/rabisco-titulo.png') center / 100% 100% no-repeat;
  z-index: -1;
  pointer-events: none;
}

.dobra2__selo-titulo {
  position: absolute;
  top: -5%;
  right: 10%;
  width: clamp(90px, 11.5vw, 165px);
  z-index: 3;
}

.dobra2__selo {
  position: absolute;
  right: clamp(-5px, 2vw, 26px);
  top: clamp(-5px, 2vw, 2.6rem);
  width: clamp(62px, 13vw, 130px);
  filter: drop-shadow(-9px 10px 14px rgba(0, 0, 0, 0.09)) drop-shadow(-2px 3px 8px rgba(0, 0, 0, 0.1));
  z-index: 3;
}

.dobra2__rabisco {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 700px;
  max-width: 940px;
  pointer-events: none;
  z-index: -1;
}

.dobra2__descricao {
  position: relative;
  max-width: 700px;
  margin: clamp(1.1rem, 2.2vw, 1.7rem) auto 0;
  font-size: var(--t-corpo-g);
  font-weight: 500;
  line-height: 1.35;
}

.espaco {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(1.4rem, 3.5vw, 3rem);
  margin-top: clamp(2.6rem, 5vw, 4.5rem);
}

.espaco--invertido .espaco__foto-wrap {
  order: 2;
}

.espaco--invertido .espaco__balao {
  order: 1;
}

.espaco__foto-wrap {
  position: relative;
  justify-self: center;
  display: inline-flex;
}

.espaco__foto {
  width: clamp(250px, 28vw, 370px);
  transform: rotate(var(--rotacao, -5deg));
  filter: drop-shadow(-15px 15px 20px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.espaco__foto:hover {
  transform: rotate(0deg) scale(1.05);
}

.espaco__selo {
  position: absolute;
  width: clamp(90px, 11.5vw, 165px);
  z-index: 3;
}

.espaco:nth-of-type(1) .espaco__selo {
  top: 0%;
  left: 0%;
}

.espaco:nth-of-type(2) .espaco__selo {
  top: -8%;
  left: 6%;
}

.espaco:nth-of-type(3) .espaco__selo {
  bottom: 4%;
  left: 10%;
}

.espaco:nth-of-type(4) .espaco__selo {
  top: -12%;
  right: 2%;
}

.espaco:nth-of-type(5) .espaco__selo {
  bottom: 8%;
  left: 0%;
}

.espaco__doodle {
  position: absolute;
  width: clamp(105px, 11.5vw, 165px);
  z-index: 2;
  pointer-events: none;
}

.espaco__doodle--esq {
  left: clamp(-48px, -3.5vw, -24px);
  bottom: clamp(-48px, -3.5vw, -26px);
}

.espaco__doodle--dir {
  right: clamp(-36px, -2.7vw, -14px);
  top: clamp(-42px, -3vw, -20px);
}

.espaco__sticker {
  position: absolute;
  left: clamp(-36px, -2.7vw, -16px);
  bottom: clamp(-38px, -2.8vw, -19px);
  width: clamp(96px, 10.5vw, 142px);
  aspect-ratio: 1;
  z-index: 2;
  transform: rotate(-12deg);
}

.espaco__sticker-circulo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.espaco__sticker-circulo--interno {
  inset: 6%;
  width: 88%;
  height: 88%;
}

.espaco__sticker-foto {
  position: absolute;
  inset: 11%;
  width: 78%;
  height: 78%;
  object-fit: cover;
  border-radius: 50%;
}

.espaco__balao {
  position: relative;
  max-width: 540px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem) clamp(1.4rem, 3.5vw, 2.9rem) clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  isolation: isolate;
}

.espaco__balao::before,
.espaco__balao::after {
  content: '';
  position: absolute;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.espaco__balao::before {
  inset: -6px -8px 6px 8px;
  transform: rotate(180deg);
}

.espaco__balao::after {
  inset: 0;
}

.espaco__balao--a::before {
  background-image: url('../assets/balao-tras-a.png');
}

.espaco__balao--a::after {
  background-image: url('../assets/balao-frente-a.png');
}

.espaco__balao--b::before {
  background-image: url('../assets/balao-tras-b.png');
}

.espaco__balao--b::after {
  background-image: url('../assets/balao-frente-b.png');
}

.espaco__balao--c::before {
  background-image: url('../assets/balao-tras-c.png');
}

.espaco__balao--c::after {
  background-image: url('../assets/balao-frente-c.png');
}

.espaco__titulo {
  font-size: var(--t-subtitulo);
  font-weight: 700;
  line-height: 1.05;
}

.espaco__linha {
  width: min(370px, 88%);
  margin: clamp(0.6rem, 1.3vw, 0.9rem) auto;
}

.espaco__patrono {
  font-size: var(--t-corpo-m);
  font-weight: 500;
  margin-bottom: 0.85em;
}

.espaco__texto {
  font-size: var(--t-corpo-m);
  font-weight: 500;
  line-height: 1.35;
}

.dobra2__cta {
  text-align: center;
  margin-top: clamp(2.6rem, 5vw, 4.5rem);
  padding-bottom: clamp(1.8rem, 4.5vw, 3.8rem);
}

.dobra3 {
  position: relative;
  padding-top: clamp(4.5rem, 11vw, 9.5rem);
  isolation: isolate;
}

.dobra3__fundo {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(185, 71, 56, 0.85), rgba(185, 71, 56, 0.85)), url('../assets/escalada.jpg?v=4') center center / cover no-repeat;
  pointer-events: none;
}

.dobra3__cabecalho {
  text-align: center;
}

.dobra3__descricao {
  max-width: 620px;
  margin: clamp(1.1rem, 2.2vw, 1.7rem) auto 0;
  font-size: var(--t-corpo-g);
  font-weight: 500;
  line-height: 1.35;
  color: var(--branco);
}

.dobra3__carrossel-wrap {
  position: relative;
  display: block;
  /* Swiper needs block */
  width: 100%;
  max-width: 1200px;
  margin: clamp(1.8rem, 3.5vw, 3rem) auto 0;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.dobra3__carrossel {
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE/Edge */
  scrollbar-width: none;
  /* Firefox */
  cursor: grab;
  padding-block: clamp(2rem, 4vw, 3rem) 80px;
  user-select: none;
  -webkit-user-select: none;
}

.dobra3__carrossel::-webkit-scrollbar {
  display: none;
}

.dobra3__carrossel.active {
  cursor: grabbing;
}

.dobra3__trilha {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  list-style: none;
  width: max-content;
}

/* Swiper navigation buttons */
.carrossel__btn {
  width: clamp(42px, 4vw, 56px);
  height: clamp(42px, 4vw, 56px);
  border-radius: 50%;
  border: 2px solid var(--branco);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.carrossel__btn::after {
  display: none;
  /* Hide default swiper font icon */
}

.carrossel__btn svg {
  width: 22px;
  height: 22px;
}

.carrossel__btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carrossel__btn:active {
  transform: translateY(-50%) scale(0.96);
}

.carrossel__btn--prev {
  left: -10px;
}

.carrossel__btn--next {
  right: -10px;
}

.carrossel__dots {
  position: relative;
  bottom: 0;
  margin-top: 1rem;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid var(--branco);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--branco);
  transform: scale(1.2);
}

.experiencia {
  position: relative;
  width: clamp(260px, 60vw, 350px);
  height: 280px;
  flex: 0 0 auto;
  background: var(--branco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -6px 8px 12px rgba(0, 0, 0, 0.08);
  transition: height 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.experiencia:hover {
  height: 450px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.experiencia__imagem {
  height: 200px;
  width: 100%;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.experiencia__imagem img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  /* Evita arrastar a imagem em si no PC */
  pointer-events: none;
}

.experiencia__top-text {
  padding: 15px;
  text-align: center;
  flex-shrink: 0;
}

.experiencia__titulo {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--vermelho);
}

.experiencia__bottom-text {
  padding: 0 20px 20px 20px;
  margin-top: 5px;
  background: var(--branco);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  text-align: center;
}

.experiencia:hover .experiencia__bottom-text {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.1s;
}

@media (max-width: 960px) {
  .experiencia {
    height: 450px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .experiencia__bottom-text {
    opacity: 1;
    visibility: visible;
  }
}

.experiencia__logo {
  width: min(360px, 84%);
  margin-inline: auto;
}

.experiencia__titulo {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.experiencia__texto {
  font-size: var(--t-corpo-p);
  font-weight: 500;
  line-height: 1.35;
  margin-top: 0.8em;
}

.dobra3__cta {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3.4rem);
  padding-bottom: clamp(1.8rem, 3.5vw, 2.6rem);
}

.dobra-atracoes {
  padding-block: clamp(2.6rem, 6vw, 5rem) clamp(2rem, 4.5vw, 3.6rem);
  text-align: center;
}

.dobra-atracoes__descricao {
  max-width: 640px;
  margin: clamp(1rem, 2vw, 1.6rem) auto 0;
  font-size: var(--t-corpo-g);
  color: var(--vermelho);
  font-weight: 500;
  line-height: 1.35;
}

.atracoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3.5vw, 2.8rem);
  max-width: 860px;
  margin: clamp(2rem, 5vw, 4rem) auto;
  justify-items: center;
}

.atracao-item {
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.atracao-item:hover {
  transform: translateY(-10px) scale(1.03);
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.atracao-item img {
  width: 100%;
  height: auto;
  display: block;
}



.dobra-atracoes__cta {
  margin-top: clamp(2rem, 4vw, 3.4rem);
}

.titulo-secao--laranja {
  color: var(--laranja);
}

.dobra-mapa {
  padding-block: clamp(2.6rem, 6vw, 5rem);
  text-align: center;
}

.dobra-mapa__ilustracao-wrap {
  position: relative;
  max-width: 1000px;
  margin: clamp(4rem, 8vw, 7rem) auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dobra-mapa__fundo {
  width: 110%;
  height: 120%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.dobra-mapa__mapa {
  width: 95%;
  max-width: 860px;
  height: auto;
  position: relative;
  top: clamp(-40px, -8vw, -80px);
  z-index: 1;
  transition: transform 0.5s ease;
}

.dobra-mapa__mapa:hover {
  transform: scale(1.02);
}

.dobra-mapa__cta {
  margin-top: clamp(2rem, 4vw, 3.4rem);
}

/* 🏔️ Dobra 4 - O Local 🏔️ */

.dobra4 {
  padding-block: clamp(2.6rem, 6vw, 5.5rem) clamp(1.8rem, 4.5vw, 3.4rem);
  overflow: hidden;
}

.dobra4__grade {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(1.4rem, 3.5vw, 2.6rem);
}

.dobra4__decoracao {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dobra4__fundo {
  width: 130%;
  height: 130%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.dobra4__foto {
  width: 100%;
  max-width: 560px;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.12));
}

.dobra4__conteudo {
  display: grid;
  justify-items: start;
  gap: clamp(1.3rem, 2.6vw, 1.9rem);
}

.dobra4__conteudo .titulo-secao {
  text-align: left;
}

.dobra4__texto {
  max-width: 440px;
  font-size: var(--t-corpo-g);
  font-weight: 500;
  line-height: 1.35;
  display: grid;
  gap: 1.05em;
}

.dobra4__mapa {
  width: min(450px, 100%);
  border: 3px solid var(--oliva);
  border-radius: 12px;
  overflow: hidden;
}

.dobra4__mapa iframe,
.dobra4__mapa img {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  object-fit: cover;
}

/* ─── Seção Caravana ─── */

.dobra-caravana {
  padding-block: clamp(2.6rem, 5.5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.dobra-caravana__grade {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.4rem, 3.5vw, 2.6rem);
}

.dobra-caravana__ilustracao-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 650px;
  margin-inline: auto;
}

.dobra-caravana__fundo {
  width: 180%;
  height: 180%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.dobra-caravana__foto {
  width: 75%;
  height: auto;
  position: relative;
  top: clamp(-40px, -7vw, -90px);
  left: clamp(-40px, -8vw, -100px);
  z-index: 1;
  display: block;
  margin-inline: auto;
}

.dobra-caravana__conteudo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  text-align: left;
}

.dobra-caravana__conteudo .titulo-secao {
  text-align: left;
}

.dobra-caravana__texto {
  font-size: var(--t-corpo-g);
  font-weight: 500;
  line-height: 1.35;
  color: var(--oliva);
}

.faq {
  padding-block: clamp(1.8rem, 4.5vw, 3.4rem) clamp(2.6rem, 6vw, 5rem);
}

.container--faq {
  width: min(100% - 2.5rem, 880px);
}

.faq__titulo {
  margin-bottom: clamp(1.8rem, 4.5vw, 3.4rem);
}

.faq__lista {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Cada item é uma pasta de arquivo */
.faq__item {
  position: relative;
  margin-top: -36px;
  border-radius: 14px;
  overflow: hidden;
}

/* Z-index crescente — cada pasta na frente da anterior */
.faq__item:nth-child(1) {
  z-index: 1;
}

.faq__item:nth-child(2) {
  z-index: 2;
}

.faq__item:nth-child(3) {
  z-index: 3;
}

.faq__item:nth-child(4) {
  z-index: 4;
}

.faq__item:nth-child(5) {
  z-index: 5;
}

.faq__item:nth-child(6) {
  z-index: 6;
}

.faq__item:nth-child(7) {
  z-index: 7;
}

.faq__item:nth-child(8) {
  z-index: 8;
}

.faq__item:nth-child(9) {
  z-index: 9;
}

.faq__item:nth-child(10) {
  z-index: 10;
}

.faq__item:nth-child(11) {
  z-index: 11;
}

.faq__item:nth-child(12) {
  z-index: 12;
}

/* Primeiro item sem sobreposição */
.faq__item:first-child {
  margin-top: 0;
}

/* Item aberto fica acima de todos e empurra o de baixo */
.faq__item--aberto {
  z-index: 20 !important;
  margin-bottom: 36px;
}

.faq__pergunta-wrap {
  margin: 0;
  font-size: inherit;
}

.faq__pergunta {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--branco);
}

/* Empilha aba e retângulo sem nenhum gap */
.faq__cabecalho {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

/* Aba — ocupa ~55% da largura, ancorada na base */
.faq__aba-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url('../assets/aba-faq-2.png') left bottom / 100% 100% no-repeat;
  padding: clamp(0.5rem, 1.2vw, 0.8rem) clamp(0.8rem, 1.8vw, 1.4rem);
  min-height: 44px;
  color: var(--branco);
  width: 55%;
  max-width: 55%;
  margin-left: calc(-0.3rem - 2px);
}

.faq__item--aberto .faq__aba-wrap {
  background: url('../assets/aba-faq-1.png') left bottom / 100% 100% no-repeat;
}

/* Rectangle 12 — barra fina (corpo fechado), altura ~32px */
.faq__rect--fechado {
  display: block;
  width: 100%;
  height: 70px;
  object-fit: fill;
  margin-top: -10px;
  /* fecha a linha creme entre aba e retângulo */
  vertical-align: bottom;
  border-radius: 14px;
}

.faq__rect--aberto {
  display: none;
}

.faq__item--aberto .faq__rect--fechado {
  display: none;
}

.faq__item--aberto .faq__rect--aberto {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -10px;
  vertical-align: bottom;
  border-radius: 14px;
}

.faq__aba {
  font-size: var(--t-corpo-g);
  font-weight: 700;
  pointer-events: none;
  padding-right: 0.3rem;
  line-height: 1.2;
  flex: 1;
  text-align: center;
}

.faq__seta {
  flex-shrink: 0;
  width: 18px;
  height: auto;
  transition: transform 0.3s ease;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}

.faq__item--aberto .faq__seta {
  transform: rotate(0deg);
}

/* Painel de resposta — Rectangle 11 como fundo */
.faq__painel {
  background: url('../assets/Rectangle 11.png') center / 100% 100% no-repeat;
  overflow: visible;
  margin-top: 0;
}

.faq__painel[hidden] {
  display: none;
}

.faq__resposta {
  padding: clamp(1rem, 2.4vw, 1.6rem) clamp(1.4rem, 3vw, 2.2rem) clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--branco);
  font-size: var(--t-corpo-m);
  font-weight: 500;
  line-height: 1.45;
  max-width: 800px;
}

@media (max-width: 720px) {
  .faq__seta {
    margin-right: 6px;
    width: 16px;
  }

  .faq__item {
    margin-top: -12px;
  }

  .faq__item--aberto {
    margin-bottom: 12px;
  }
}

/* ─── Patrocinadores ─── */

.patrocinadores {
  padding-block: clamp(2.6rem, 5.5vw, 4.5rem);
}

.patrocinadores__conteudo {
  background: var(--branco);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.4rem) clamp(1.4rem, 3vw, 2.6rem);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.patrocinadores__titulo {
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.patrocinadores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.patrocinadores__slot {
  aspect-ratio: 16 / 9;
  background: #f0f0ed;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #bbb;
  border: 2px dashed #ddd;
}

.rodape {
  position: relative;
  width: 100%;
  line-height: 0;
}

.rodape__onda {
  width: 100%;
  height: auto;
  display: block;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--creme);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader--escondido {
  opacity: 0;
  visibility: hidden;
}

.loader__logo {
  width: clamp(110px, 13vw, 150px);
  animation: pulso-logo 1.5s infinite alternate ease-in-out;
}

.loader__spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--oliva-claro);
  border-top-color: var(--laranja);
  border-radius: 50%;
  animation: girar-spinner 1s linear infinite;
}

@keyframes pulso-logo {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes girar-spinner {
  to {
    transform: rotate(360deg);
  }
}

.revelar {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.revelar.visivel {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .revelar {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .botao,
  .faq__aba,
  .faq__painel,
  .faq__seta {
    transition: none;
  }

  html {
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 960px) {
  .dobra-caravana__grade {
    grid-template-columns: 1fr;
  }

  .dobra-caravana__conteudo {
    align-items: center;
    text-align: center;
  }

  .dobra-caravana__conteudo .titulo-secao {
    text-align: center;
  }

  .dobra1 {
    padding-block: clamp(3rem, 5vw, 5rem) 140px;
  }

  .dobra1__conteudo {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .dobra1__sobre {
    grid-template-columns: 1fr;
  }

  .dobra1__ilustracao-wrap {
    margin: 0;
    justify-self: center;
  }

  .dobra1__ilustracao {
    max-width: 500px;
    margin-inline: auto;
  }

  .dobra1__texto {
    max-width: 600px;
    margin-inline: auto;
    padding-right: 0;
    text-align: center;
  }

  .dobra2__cabecalho {
    padding: 2.5rem 1rem;
  }

  .dobra2__cabecalho::before {
    inset: -5px -20px;
  }

  .dobra4__grade {
    grid-template-columns: 1fr;
  }

  .dobra4__decoracao {
    order: 0;
  }

  .dobra4__foto {
    max-width: 400px;
    margin-inline: auto;
  }

  .dobra4__conteudo {
    justify-items: center;
  }

  .dobra4__conteudo .titulo-secao,
  .dobra4__texto {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .barra__conteudo {
    justify-content: center;
  }

  .barra__nav {
    justify-content: center;
    width: 100%;
    gap: 0.8rem;
  }

  .espaco,
  .espaco--invertido {
    grid-template-columns: 1fr;
  }

  .espaco--invertido .espaco__foto-wrap {
    order: 0;
  }

  .espaco--invertido .espaco__balao {
    order: 0;
  }

  .espaco__balao {
    margin-inline: auto;
  }

  .experiencia {
    width: min(72vw, 310px);
  }

  .carrossel__btn {
    width: 36px;
    height: 36px;
  }

  .carrossel__btn svg {
    width: 18px;
    height: 18px;
  }

  .faq__aba-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .faq__aba {
    max-width: 100%;
  }

  .faq__resposta {
    padding-right: clamp(1rem, 5vw, 1.6rem);
  }
}

@media (min-width: 768px) {



  .experiencia {
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .experiencia:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--oliva);
  }
}

/* ══════════ PROGRAMAÇÃO DNJ ══════════ */
.programacao {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  background: var(--creme);
}

.programacao__cabecalho {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.programacao__descricao {
  max-width: 620px;
  margin: clamp(0.8rem, 1.5vw, 1.2rem) auto 0;
  font-size: var(--t-corpo-g);
  font-weight: 500;
  line-height: 1.4;
  color: var(--oliva);
}

/* ── Tabs ── */
.programacao__tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
}

.programacao__tab {
  display: flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.65em 1.2em;
  border: 2px solid var(--oliva-claro);
  border-radius: 50px;
  background: transparent;
  color: var(--oliva);
  font-family: var(--fonte);
  font-size: clamp(0.82rem, 0.78rem + 0.3vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}

.programacao__tab::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--vermelho), var(--laranja));
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 0;
  border-radius: 50px;
}

.programacao__tab > * {
  position: relative;
  z-index: 1;
}

.programacao__tab:hover {
  border-color: var(--laranja);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(212, 130, 56, 0.2);
}

.programacao__tab--ativo {
  border-color: transparent;
  color: var(--branco);
  box-shadow: 0 6px 20px rgba(184, 71, 55, 0.3);
  transform: translateY(-2px);
}

.programacao__tab--ativo::before {
  opacity: 1;
}

.programacao__tab-icon {
  font-size: 1.15em;
  line-height: 1;
}

/* ── Painéis ── */
.programacao__paineis {
  position: relative;
}

.programacao__painel {
  display: none;
  animation: prog-fadeIn 0.4s ease;
}

.programacao__painel--ativo {
  display: block;
}

@keyframes prog-fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Tabela ── */
.programacao__tabela-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: var(--branco);
  -webkit-overflow-scrolling: touch;
}

.programacao__tabela {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: var(--t-corpo-p);
  font-family: var(--fonte);
}

.programacao__tabela thead {
  background: linear-gradient(135deg, var(--oliva), var(--verde-oliva));
  color: var(--creme);
  position: sticky;
  top: 0;
  z-index: 2;
}

.programacao__tabela th {
  padding: 1em 1.1em;
  text-align: left;
  font-weight: 700;
  font-size: 0.92em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.programacao__tabela th:first-child {
  border-radius: 16px 0 0 0;
}

.programacao__tabela th:last-child {
  border-radius: 0 16px 0 0;
}

.programacao__tabela td {
  padding: 0.85em 1.1em;
  border-bottom: 1px solid rgba(122, 116, 65, 0.08);
  vertical-align: top;
  line-height: 1.4;
  color: var(--oliva);
}

.programacao__tabela td:first-child {
  font-weight: 700;
  color: var(--vermelho);
  white-space: nowrap;
  font-size: 1.05em;
}


.programacao__tabela tbody tr {
  transition: background 0.2s ease;
}

.programacao__tabela tbody tr:nth-child(even) {
  background: rgba(189, 191, 118, 0.07);
}

.programacao__tabela tbody tr:hover {
  background: rgba(212, 130, 56, 0.1);
}

.programacao__tabela tbody tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}

.programacao__tabela tbody tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}

/* ── Responsivo Programação ── */
@media (max-width: 600px) {
  .programacao__tabs {
    gap: 0.35rem;
  }

  .programacao__tab {
    padding: 0.5em 0.85em;
    font-size: 0.78rem;
  }

  .programacao__tab-icon {
    font-size: 1.4em;
  }

  .programacao__tabela {
    font-size: 0.85rem;
  }

  .programacao__tabela th,
  .programacao__tabela td {
    padding: 0.65em 0.75em;
  }
}