:root {
      --azul-profundo: #062c56;
      --azul-logo: #0b3d70;
      --azul-ceu: #39a9e8;
      --verde-floresta: #2f7d32;
      --dourado: #f6b51b;
      --branco: #ffffff;
      --texto: #102a43;
      --sombra: 0 10px 30px rgba(6, 44, 86, 0.16);
    }

    body.dark-mode {
      --branco: #102a43;
      --texto: #e6f4ff;
      --azul-profundo: #d9efff;
      --azul-logo: #75c8f2;
      --sombra: 0 10px 30px rgba(0, 0, 0, 0.3);
      background: #071a2c;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
      background: #f5fbff;
      color: var(--texto);
      transition: background 0.45s ease, color 0.45s ease;
    }

    header,
    .destination-card,
    .destinos-toolbar,
    .search-input,
    .filter-select {
      transition: background-color 0.45s ease, border-color 0.45s ease,
        color 0.45s ease, box-shadow 0.45s ease;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: var(--branco);
      box-shadow: var(--sombra);
    }

    header::before {
      content: "";
      display: block;
      height: 5px;
      background: linear-gradient(
        90deg,
        var(--azul-profundo) 0%,
        var(--azul-ceu) 48%,
        var(--verde-floresta) 78%,
        var(--dourado) 100%
      );
    }

    header > section {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    header > section:first-child {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 92px;
    }

    header > section:first-child > div:first-child {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    header img {
      display: block;
      width: 76px;
      height: 76px;
      object-fit: contain;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .brand-text strong {
      color: var(--azul-profundo);
      font-size: 1.15rem;
      letter-spacing: 0.03em;
    }

    .brand-text span {
      margin-top: 6px;
      color: var(--verde-floresta);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .theme-toggle {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid #b9d2e3;
      border-radius: 999px;
      background: transparent;
      color: var(--azul-profundo);
      cursor: pointer;
      font: inherit;
      font-size: 0.85rem;
      font-weight: 700;
      padding: 8px 12px;
    }

    .theme-toggle:hover,
    .theme-toggle:focus-visible {
      background: rgba(57, 169, 232, 0.12);
    }

    .language {
      color: var(--azul-profundo);
      font-size: 0.9rem;
      font-weight: 700;
    }

    .theme-toggle {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid #b9d2e3;
      border-radius: 999px;
      background: transparent;
      color: var(--azul-profundo);
      cursor: pointer;
      font: inherit;
      font-size: 0.85rem;
      font-weight: 700;
      padding: 8px 12px;
    }

    .theme-toggle:hover,
    .theme-toggle:focus-visible {
      background: rgba(57, 169, 232, 0.12);
    }

    .theme-icon {
      font-size: 1rem;
    }

    .menu-toggle {
      display: none;
      border: 0;
      border-radius: 10px;
      background: var(--azul-profundo);
      color: var(--branco);
      cursor: pointer;
      font-size: 1.35rem;
      padding: 8px 11px;
    }

    header > section:nth-child(2) {
      border-top: 1px solid #e6f0f7;
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 58px;
    }

    nav ul {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    nav a {
      position: relative;
      display: inline-block;
      color: var(--azul-profundo);
      font-size: 0.94rem;
      font-weight: 700;
      padding: 20px 0;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    nav a::after {
      position: absolute;
      right: 0;
      bottom: 11px;
      left: 0;
      height: 3px;
      border-radius: 3px;
      background: var(--dourado);
      content: "";
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }

    nav a:hover,
    nav a:focus-visible {
      color: var(--azul-ceu);
    }

    nav a:hover::after,
    nav a:focus-visible::after {
      transform: scaleX(1);
    }

    .cta {
      border-radius: 999px;
      background: var(--dourado);
      color: #15314b !important;
      padding: 12px 20px !important;
      box-shadow: 0 5px 12px rgba(246, 181, 27, 0.25);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .cta::after {
      display: none;
    }

    .cta:hover,
    .cta:focus-visible {
      background: #ffc83d;
      color: #102a43 !important;
      transform: translateY(-2px);
    }

    .hero-cataratas {
      position: relative;
      display: grid;
      min-height: min(700px, calc(100vh - 155px));
      isolation: isolate;
      overflow: hidden;
      background: transparent;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(0deg, rgba(3, 28, 54, 0.42), transparent 55%);
    }

    .hero-content {
      align-self: center;
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
      padding: 90px 0;
      color: var(--branco);
    }

    .hero-kicker {
      display: inline-block;
      margin-bottom: 18px;
      color: #ffe18a;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero-content h1 {
      max-width: 720px;
      font-size: clamp(2.7rem, 7vw, 5.8rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
      text-wrap: balance;
    }

    .hero-content p {
      max-width: 560px;
      margin-top: 24px;
      color: #e8f6ff;
      font-size: clamp(1rem, 2vw, 1.25rem);
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .hero-buttons a {
      border-radius: 999px;
      font-weight: 800;
      padding: 14px 22px;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .hero-primary {
      background: var(--dourado);
      color: #15314b;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    }

    .hero-secondary {
      border: 1px solid rgba(255, 255, 255, 0.7);
      color: var(--branco);
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
    }

    .hero-buttons a:hover,
    .hero-buttons a:focus-visible {
      transform: translateY(-3px);
    }

    .hero-primary:hover,
    .hero-primary:focus-visible {
      background: #ffc83d;
    }

    .hero-secondary:hover,
    .hero-secondary:focus-visible {
      background: rgba(255, 255, 255, 0.2);
    }

    .hero-scroll {
      position: absolute;
      right: 7%;
      bottom: 28px;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      color: var(--branco);
      font-size: 1.4rem;
    }

  .destinos {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

    .destinos-toolbar {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 24px;
      border: 1px solid rgba(57, 169, 232, 0.18);
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(232, 246, 255, 0.8));
      padding: 16px 18px;
      box-shadow: 0 8px 24px rgba(6, 44, 86, 0.08);
    }

    .search-label,
    .filter-label {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--azul-profundo);
      font-size: 0.92rem;
      font-weight: 700;
      transition: transform 0.25s ease;
    }

    .search-label:hover,
    .filter-label:hover,
    .favorite-filter:hover {
      transform: translateY(-2px);
    }

    .search-input {
      width: min(260px, 100%);
      border: 1px solid #b9d2e3;
      border-radius: 10px;
      outline: none;
      background: rgba(255, 255, 255, 0.92);
      color: var(--azul-profundo);
      font: inherit;
      font-size: 0.9rem;
      padding: 10px 12px;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .search-input::placeholder {
      color: #7191a8;
    }

    .search-input:focus-visible {
      border-color: var(--azul-ceu);
      box-shadow: 0 0 0 4px rgba(57, 169, 232, 0.18);
      transform: translateY(-2px);
    }

    .filter-select {
      border: 1px solid #b9d2e3;
      border-radius: 10px;
      background: var(--branco);
      color: var(--azul-profundo);
      cursor: pointer;
      font: inherit;
      font-size: 0.9rem;
      padding: 10px 34px 10px 12px;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .filter-select:focus-visible {
      border-color: var(--azul-ceu);
      box-shadow: 0 0 0 4px rgba(57, 169, 232, 0.18);
      transform: translateY(-2px);
    }

    .filter-select:hover {
      border-color: var(--azul-ceu);
      transform: translateY(-2px);
    }

    .favorite-filter {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--azul-profundo);
      font-size: 0.92rem;
      font-weight: 700;
      transition: transform 0.25s ease;
    }

    body.dark-mode .destinos-toolbar {
      border-color: #315675;
      background: linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(11, 61, 112, 0.65));
    }

    .destinos-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
    }

    .destination-card {
      width: 100%;
      overflow: hidden;
      border: 1px solid #e1edf4;
      border-radius: 18px;
      background: var(--branco);
      box-shadow: 0 12px 30px rgba(6, 44, 86, 0.13);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    body.dark-mode .destination-card,
    body.dark-mode .filter-select,
    body.dark-mode .search-input {
      border-color: #315675;
      background: #102a43;
    }

    body.dark-mode .destination-card h3,
    body.dark-mode .filter-label,
    body.dark-mode .search-label {
      color: #e6f4ff;
    }

    body.dark-mode .search-input,
    body.dark-mode .filter-select {
      color: #e6f4ff;
    }

    body.dark-mode .search-input::placeholder {
      color: #a5c2d8;
    }

    .destination-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 38px rgba(6, 44, 86, 0.2);
    }

    .destination-card img {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 10;
      height: auto;
      object-fit: cover;
      background: transparent;
    }

    .destination-card-content {
      padding: 22px;
    }

    .destination-title-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
    }

    .destination-card h3 {
      color: var(--azul-profundo);
      font-size: 1.35rem;
    }

    .favorite-button {
      flex: 0 0 auto;
      width: 36px;
      height: 36px;
      border: 1px solid #c8dce9;
      border-radius: 50%;
      background: var(--branco);
      color: #7895a8;
      cursor: pointer;
      font-size: 1.35rem;
      line-height: 1;
      transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .favorite-button:hover,
    .favorite-button:focus-visible {
      color: #e7a900;
      transform: scale(1.08);
    }

    .favorite-button.is-favorite {
      border-color: #f6b51b;
      background: #fff8df;
      color: #e7a900;
    }

    body.dark-mode .favorite-filter,
    body.dark-mode .favorite-button {
      color: #e6f4ff;
    }

    body.dark-mode .favorite-button {
      border-color: #315675;
      background: #102a43;
    }

    body.dark-mode .favorite-button.is-favorite {
      border-color: #d99d00;
      background: #4b3b12;
      color: #ffd65b;
    }

    .favorites-count {
      display: inline-flex;
      min-width: 22px;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: var(--dourado);
      color: #15314b;
      font-size: 0.76rem;
      padding: 2px 6px;
    }

    .no-results {
      display: none;
      margin: 30px auto 0;
      color: var(--azul-profundo);
      font-size: 1rem;
      text-align: center;
    }

    .no-results.visible {
      display: block;
    }

    .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--azul-logo);
      font-weight: 800;
      text-decoration: none;
    }

    .learn-more::after {
      content: "→";
      color: var(--dourado);
      font-size: 1.2rem;
      transition: transform 0.2s ease;
    }

    .learn-more:hover::after,
    .learn-more:focus-visible::after {
      transform: translateX(4px);
    }

    .whatsapp-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin-top: 14px;
      border-radius: 9px;
      background: #25d366;
      color: var(--branco);
      font-size: 0.92rem;
      font-weight: 800;
      padding: 11px 14px;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .whatsapp-button img {
      width: 20px;
      height: 20px;
      margin-right: 8px;
    }

    .whatsapp-button:hover,
    .whatsapp-button:focus-visible {
      background: #1ebe5d;
      transform: translateY(-2px);
    }

  /* =========================
   SEÇÃO DE INGRESSOS
========================= */

.ingressos {
  width: min(1180px, calc(100% - 40px ));
  margin: 70px auto 80px;
}

.ingressos-header {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--verde-floresta);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ingressos-header h2 {
  margin: 0;
  color: var(--azul-profundo);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.ingressos-header p {
  margin: 14px auto 0;
  color: #5b7182;
  line-height: 1.6;
}

.ingressos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ingresso-card {
  overflow: hidden;
  border: 1px solid #e2edf3;
  border-radius: 18px;
  background: var(--branco);
  box-shadow: 0 8px 24px rgba(6, 44, 86, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ingresso-card:hover {
  box-shadow: 0 14px 30px rgba(6, 44, 86, 0.17);
  transform: translateY(-6px);
}

.ingresso-card > img {
  display: block;
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.ingresso-card-content {
  padding: 18px;
}

.ingresso-tag {
  display: inline-block;
  margin-bottom: 9px;
  border-radius: 999px;
  background: #eaf6ed;
  color: var(--verde-floresta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  text-transform: uppercase;
}

.ingresso-card h3 {
  margin: 0;
  color: var(--azul-profundo);
  font-size: 1.1rem;
}

.ingresso-card p {
  min-height: 68px;
  margin: 10px 0 18px;
  color: #607586;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ingresso-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--azul-profundo);
  color: var(--branco);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.ingresso-button:hover,
.ingresso-button:focus-visible {
  background: var(--verde-floresta);
  color: var(--branco);
  transform: translateY(-2px);
}

.ingressos-footer {
  margin-top: 26px;
  text-align: center;
}

.ingressos-footer p {
  color: #607586;
  font-size: 0.92rem;
}

.ingressos-footer a {
  color: var(--azul-profundo);
  font-weight: 800;
  text-decoration: underline;
}

/* Compatibilidade com o modo escuro */

.dark-mode .ingresso-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #123653;
}

.dark-mode .ingressos-header h2,
.dark-mode .ingresso-card h3 {
  color: var(--branco);
}

.dark-mode .ingressos-header p,
.dark-mode .ingresso-card p,
.dark-mode .ingressos-footer p {
  color: #c4d7e4;
}



    @media (max-width: 980px) {
      .destinos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .destinos-toolbar {
        align-items: stretch;
        flex-direction: column;
      }

      .search-label,
      .filter-label,
      .favorite-filter {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
      }

      .search-input,
      .filter-select {
        width: 100%;
      }

      .destinos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }

      .destination-card-content {
        padding: 16px;
      }

      .destination-card h3 {
        font-size: 1.08rem;
      }

      .learn-more {
        margin-top: 14px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 420px) {
      .destinos-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      header > section {
        width: min(100% - 28px, 1180px);
      }

      header > section:first-child {
        min-height: 78px;
      }

      header img {
        width: 60px;
        height: 60px;
      }

      .brand-text strong {
        font-size: 1rem;
      }

      .brand-text span,
      .language {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      header > section:nth-child(2) {
        display: none;
        border-top: 1px solid #e6f0f7;
      }

      header > section:nth-child(2).open {
        display: block;
      }

      nav,
      nav ul {
        align-items: stretch;
        flex-direction: column;
      }

      nav ul {
        gap: 0;
        padding: 8px 0 14px;
      }

      nav a {
        padding: 14px 4px;
      }

      nav a::after {
        bottom: 7px;
      }

      .cta {
        margin-top: 8px;
        text-align: center;
      }

      .hero-cataratas {
        min-height: calc(100vh - 83px);
        background-position: 62% center;
      }

      .hero-content {
        width: min(100% - 28px, 1180px);
        padding: 70px 0;
      }

      .hero-scroll {
        right: 28px;
        bottom: 22px;
      }

.destinos {
  width: min(100% - 28px, 1180px);
  padding: 24px 0 52px;
}

      .theme-toggle {
        width: 38px;
        height: 38px;
        justify-content: center;
        padding: 0;
      }

      .theme-label {
        display: none;
      }

    }
    @media (max-width: 950px) {
  .ingressos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ingressos {
    width: min(100% - 28px, 520px);
    margin-top: 50px;
  }

  .ingressos-grid {
    grid-template-columns: 1fr;
  }
}