:root {
      --bg: #f6f5f1;
      --surface-solid: #fff;
      --ink: #171717;
      --muted: #6d6d6f;
      --line: rgba(0,0,0,0.08);
      --green: #38a776;
      --green-dark: #0f6b4a;
      --amber: #d99b35;
      --shadow: 0 18px 50px rgba(20, 24, 30, 0.09);
      --shadow-soft: 0 8px 24px rgba(20, 24, 30, 0.06);
      --radius: 22px;
    }

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

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    :focus-visible {
      outline: 3px solid rgba(34, 200, 138, 0.72);
      outline-offset: 4px;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
      overflow-x: hidden;
    }

    body {
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--bg);
      overflow-x: hidden;
      min-height: 100vh;
    }

    img { max-width: 100%; display: block; }

    a { color: inherit; text-decoration: none; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 16px clamp(20px, 5vw, 72px);
      background: rgba(246,245,241,0.76);
      backdrop-filter: blur(22px) saturate(160%);
      -webkit-backdrop-filter: blur(22px) saturate(160%);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .logo {
      font-family: "Playfair Display", serif;
      font-size: 20px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      border-bottom: 1.5px solid var(--green);
      padding-bottom: 5px;
    }

    .logo span { color: var(--green); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      color: rgba(23,23,23,0.62);
      font-size: 13px;
      font-weight: 700;
    }

    .nav-cta,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      background: #151515;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 14px 34px rgba(0,0,0,0.14);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

    .nav-cta:hover,
    .btn:hover {
      transform: translateY(-2px);
      background: #000;
      box-shadow: 0 18px 44px rgba(0,0,0,0.18);
    }

    .btn.secondary {
      background: rgba(255,255,255,0.72);
      color: var(--ink);
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .hero {
      display: grid;
      align-items: end;
      padding: clamp(38px, 6vw, 68px) clamp(20px, 5vw, 72px) 16px;
      color: var(--ink);
      position: relative;
    }

    .hero-inner {
      max-width: 1180px;
      width: 100%;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(56,167,118,0.18);
      background: rgba(56,167,118,0.08);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      color: var(--green-dark);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    h1 {
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      max-width: 780px;
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.02;
      font-weight: 900;
      letter-spacing: 0;
      margin-bottom: 0;
    }

    h1 em { color: var(--green); font-style: italic; }

    .hero-kicker {
      max-width: 520px;
      margin-top: 14px;
      color: rgba(23,23,23,0.58);
      font-size: clamp(12px, 1.25vw, 14px);
      line-height: 1.55;
      font-weight: 500;
    }

    .hero-kicker strong {
      color: var(--ink);
      font-weight: 800;
    }

    .hero p {
      max-width: 560px;
      color: var(--muted);
      font-size: clamp(15px, 1.6vw, 18px);
      line-height: 1.7;
      margin-bottom: 0;
    }

    .hero-actions {
      display: none;
      gap: 12px;
      flex-wrap: wrap;
    }

    .toolbar {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 72px);
      position: relative;
      z-index: 4;
    }

    .filter-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0;
      border-radius: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    .filter-buttons {
      display: flex;
      gap: 7px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .filter-buttons::-webkit-scrollbar { display: none; }

    .filter-btn {
      border: 0;
      border-radius: 999px;
      padding: 7px 12px;
      background: rgba(255,255,255,0.54);
      color: rgba(23,23,23,0.58);
      font: inherit;
      font-size: 11.5px;
      font-weight: 800;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
      white-space: nowrap;
    }

    .filter-btn.active {
      background: #151515;
      color: #fff;
    }

    .filter-btn:focus-visible,
    .sort-btn:focus-visible,
    .card-link:focus-visible,
    .btn:focus-visible {
      outline: 3px solid rgba(34, 200, 138, 0.72);
      outline-offset: 4px;
    }

    .sort-control {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
      color: rgba(23,23,23,0.44);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .sort-buttons {
      display: inline-flex;
      gap: 6px;
    }

    .sort-btn {
      border: 0;
      border-radius: 999px;
      background-color: rgba(255,255,255,0.54);
      color: rgba(23,23,23,0.58);
      box-shadow: none;
      font: inherit;
      font-size: 11.5px;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: none;
      padding: 7px 11px;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .sort-btn:hover {
      transform: translateY(-1px);
    }

    .sort-btn.active {
      background: #151515;
      color: #fff;
    }

    .nav::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -20px;
      width: min(340px, 72vw);
      height: 20px;
      transform: translateX(-50%);
      pointer-events: none;
      background: radial-gradient(ellipse at top, rgba(17, 17, 17, 0.08), transparent 68%);
      opacity: 0.8;
    }

    .section {
      max-width: 1120px;
      margin: 0 auto;
      padding: 28px clamp(20px, 5vw, 72px) 96px;
    }

    .section-head {
      display: none;
    }

    h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.02;
    }

    .section-head p {
      max-width: 430px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .destinations-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .destination-card {
      display: flex;
      flex-direction: column;
      min-height: 0;
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid rgba(0,0,0,0.07);
      background: var(--surface-solid);
      box-shadow: 0 1px 0 rgba(255,255,255,0.8), var(--shadow-soft);
      transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
    }

    .destination-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .destination-card.is-hidden {
      display: none;
    }

    .card-media {
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #e9e7df;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card-media::after {
      content: "";
      position: absolute;
      inset: 32% 0 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.38) 58%, transparent);
      pointer-events: none;
    }

    .destination-card:hover .card-media img {
      transform: scale(1.04);
    }

    .status {
      position: absolute;
      left: 16px;
      top: 16px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 14px;
      border-radius: 999px;
      color: #fff;
      background: rgba(12, 24, 18, 0.62);
      border: 1px solid rgba(255,255,255,0.22);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .status.package { color: #dff9ec; }
    .status.waitlist { color: #ffd975; }

    .duration-badge {
      position: absolute;
      right: 16px;
      top: 16px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 13px;
      border-radius: 999px;
      color: #eafff4;
      background: rgba(56, 167, 118, 0.34);
      border: 1px solid rgba(215,255,233,0.32);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 10px 28px rgba(9,80,54,0.18);
    }

    .card-media-copy {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      color: #fff;
    }

    .destination-card .card-media-copy h3 {
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: clamp(22px, 2.1vw, 29px);
      font-weight: 900;
      line-height: 1.02;
      letter-spacing: 0;
      margin-bottom: 8px;
      text-shadow: 0 10px 24px rgba(0,0,0,0.32);
    }

    .country-flag {
      display: inline-block;
      margin-left: 7px;
      font-size: 0.68em;
      line-height: 1;
      vertical-align: 0.08em;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.28));
    }

    .destination-card .card-media-copy p {
      max-width: 92%;
      color: rgba(255,255,255,0.82);
      font-size: 12.5px;
      line-height: 1.42;
      font-weight: 600;
      text-shadow: 0 8px 20px rgba(0,0,0,0.28);
    }

    .card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 12px 14px 14px;
    }

    .date {
      display: none;
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .destination-card h3 {
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: clamp(24px, 2.4vw, 32px);
      font-weight: 900;
      line-height: 1.04;
      letter-spacing: 0;
      margin-bottom: 9px;
    }

    .destination-card p {
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.48;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin: 11px 0 12px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 4px 8px;
      border-radius: 999px;
      background: #f4f2ec;
      color: rgba(23,23,23,0.64);
      font-size: 10.5px;
      font-weight: 800;
      line-height: 1.15;
    }

    .price-row {
      margin-top: auto;
      padding-top: 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .price {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .price small {
      color: rgba(23,23,23,0.46);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.10em;
    }

    .price strong {
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 22px;
      font-weight: 900;
      line-height: 1;
    }

    .price .unit {
      color: rgba(23,23,23,0.52);
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 13px;
      font-weight: 800;
      margin-left: 4px;
    }

    .price-note {
      color: rgba(23,23,23,0.50);
      font-size: 11px;
      font-weight: 700;
      margin-top: 6px;
    }

    .price-note strong {
      font-family: inherit;
      font-size: inherit;
      line-height: inherit;
      font-weight: 900;
      color: #151515;
    }

    .card-link {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 15px;
      border-radius: 11px;
      background: var(--green-dark);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      box-shadow: 0 12px 28px rgba(0,0,0,0.14);
      transition: transform 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

    .destination-card:hover .card-link {
      transform: translateY(-1px);
      background: #151515;
    }

    .custom-card {
      margin-top: 24px;
      padding: clamp(28px, 5vw, 54px);
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(9,22,18,0.82), rgba(15,107,74,0.70)),
        url("../Fotos%20Viagem/mar%20turquesa.webp") center / cover;
      color: #fff;
      box-shadow: var(--shadow);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
    }

    .custom-card h2 {
      max-width: 650px;
      font-size: clamp(30px, 4vw, 48px);
      margin-bottom: 12px;
    }

    .custom-card p {
      max-width: 560px;
      color: rgba(255,255,255,0.78);
      line-height: 1.65;
    }

    .custom-card .btn {
      background: rgba(255,255,255,0.92);
      color: #151515;
      box-shadow: 0 16px 36px rgba(0,0,0,0.16);
      flex-shrink: 0;
    }

    .custom-card .btn:hover {
      background: #fff;
    }

    .travelers-section {
      padding: clamp(44px, 6vw, 72px) 0 clamp(50px, 7vw, 82px);
      background: #fff;
      overflow: hidden;
    }

    .travelers-header {
      max-width: 680px;
      margin: 0 auto clamp(24px, 4vw, 38px);
      padding: 0 22px;
      text-align: center;
    }

    .travelers-header h2 {
      font-family: "Playfair Display", serif;
      font-size: clamp(34px, 5vw, 60px);
      line-height: 1.02;
      letter-spacing: 0;
      color: var(--ink);
    }

    .travelers-header h2 em {
      color: var(--green);
      font-style: italic;
    }

    .travelers-header p {
      max-width: 520px;
      margin: 16px auto 0;
      color: rgba(23,23,23,0.58);
      font-size: clamp(16px, 1.8vw, 20px);
      line-height: 1.45;
      font-weight: 500;
    }

    .travelers-carousel {
      overflow: hidden;
      width: 100%;
      padding: 8px 0 18px;
      mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    }

    .travelers-carousel::-webkit-scrollbar { display: none; }

    .travelers-track {
      display: flex;
      gap: 20px;
      width: max-content;
      padding-inline: clamp(20px, 5vw, 72px);
      animation: travelers-marquee 58s linear infinite;
    }

    .travelers-carousel:hover .travelers-track {
      animation-play-state: paused;
    }

    .traveler-card {
      flex: 0 0 clamp(230px, 24vw, 310px);
    }

    .traveler-photo {
      position: relative;
      overflow: hidden;
      min-height: 350px;
      border-radius: 28px;
      background: #111;
      box-shadow: 0 18px 44px rgba(0,0,0,0.13);
    }

    .traveler-photo::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 44%;
      background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
      pointer-events: none;
    }

    .traveler-photo img {
      width: 100%;
      height: 100%;
      min-height: 350px;
      object-fit: cover;
    }

    .traveler-meta {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 20px;
      z-index: 1;
      color: #fff;
    }

    .traveler-meta strong {
      display: block;
      font-size: 21px;
      line-height: 1.1;
      font-weight: 900;
    }

    .traveler-meta span {
      display: block;
      margin-top: 6px;
      color: rgba(255,255,255,0.82);
      font-size: 13px;
      font-weight: 800;
    }

    .traveler-note {
      margin-top: 13px;
      color: rgba(23,23,23,0.58);
      font-size: 15px;
      line-height: 1.5;
      font-weight: 500;
    }

    .destinos-faq {
      padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 72px) clamp(58px, 7vw, 88px);
      background: var(--bg);
    }

    .destinos-faq-heading {
      max-width: 900px;
      margin: 0 auto 24px;
      text-align: center;
    }

    .destinos-faq-heading span {
      display: block;
      margin-bottom: 12px;
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .destinos-faq-heading h2 {
      font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;
      line-height: 1.05;
    }

    .destinos-faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      gap: 10px;
    }

    .faq-item {
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.07);
      border-radius: 18px;
      background: rgba(255,255,255,0.78);
      box-shadow: var(--shadow-soft);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 20px;
      border: 0;
      background: transparent;
      color: var(--ink);
      font: inherit;
      font-size: 15px;
      font-weight: 900;
      line-height: 1.25;
      text-align: left;
      cursor: pointer;
    }

    .faq-icon {
      position: relative;
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(56,167,118,0.12);
    }

    .faq-icon::before,
    .faq-icon::after {
      content: "";
      position: absolute;
      left: 7px;
      right: 7px;
      top: 11px;
      height: 2px;
      border-radius: 999px;
      background: var(--green-dark);
      transition: transform 0.2s ease;
    }

    .faq-icon::after {
      transform: rotate(90deg);
    }

    .faq-question[aria-expanded="true"] .faq-icon::after {
      transform: rotate(0deg);
    }

    .faq-answer {
      padding: 0 20px 18px;
    }

    .faq-answer p {
      color: rgba(23,23,23,0.62);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.65;
    }

    @keyframes travelers-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-50% - 10px)); }
    }

    .footer {
      padding: 42px clamp(20px, 5vw, 72px);
      border-top: 1px solid rgba(0,0,0,0.07);
      background: rgba(255,255,255,0.70);
      color: rgba(23,23,23,0.56);
      font-size: 13px;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    footer.site-footer {
      background: #151d1a;
      color: rgba(255,255,255,0.82);
      padding: clamp(56px, 7vw, 86px) clamp(20px, 5vw, 72px) 34px;
      border-top: 1px solid rgba(255,255,255,0.10);
    }

    .footer-container {
      display: grid;
      grid-template-columns: 1.2fr 0.5fr 1.6fr 1.5fr;
      gap: clamp(24px, 4vw, 44px);
      max-width: 1180px;
      margin: 0 auto;
      align-items: start;
    }

    .footer-logo-col {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .footer-tagline {
      max-width: 230px;
      color: #fff;
      font-size: 1.35rem;
      font-weight: 800;
      line-height: 1.18;
    }

    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-contact-item {
      color: rgba(255,255,255,0.78);
      font-size: 0.94rem;
      font-weight: 600;
      transition: color 0.2s ease;
    }

    .footer-contact-item:hover {
      color: #68d7a5;
    }

    .footer-social-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .social-icon {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.14);
      color: #fff;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .social-icon:hover {
      background: var(--green);
      transform: translateY(-2px);
    }

    .social-icon-disabled,
    .social-icon-disabled:hover {
      opacity: 0.45;
      cursor: default;
      transform: none;
      background: rgba(255,255,255,0.10);
    }

    .footer-title {
      color: #fff;
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .footer-text {
      color: rgba(255,255,255,0.62);
      font-size: 0.88rem;
      line-height: 1.65;
    }

    .cadastur-box {
      margin-top: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .cadastur-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 8px 12px;
      border-radius: 8px;
      background: #fff;
      line-height: 1.2;
    }

    .cadastur-text-top {
      color: #666;
      font-size: 0.55rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .cadastur-brand {
      color: var(--green-dark);
      font-size: 1.1rem;
      font-weight: 900;
      font-style: italic;
    }

    .cadastur-brand span { color: #e2b13c; }

    .cadastur-text-bottom {
      color: #888;
      font-size: 0.5rem;
    }

    .cadastur-info,
    .footer-destinations {
      color: rgba(255,255,255,0.58);
      font-size: 0.76rem;
      line-height: 1.5;
    }

    .cadastur-info {
      margin-top: 10px;
      font-weight: 600;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-contact-item svg {
      color: #68d7a5;
      flex-shrink: 0;
    }

    .footer-destinations { margin-top: 20px; }

    .footer-bottom {
      max-width: 1180px;
      margin: 52px auto 0;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.12);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.52);
      font-size: 0.75rem;
    }

    .footer-bottom a {
      color: inherit;
      text-decoration: none;
      font-weight: 700;
    }

    .footer-bottom a:hover {
      color: rgba(255,255,255,0.86);
    }

    .footer-legal-links {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 30;
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      box-shadow: 0 18px 44px rgba(37,211,102,0.34);
    }

    .legal-page {
      padding: clamp(44px, 8vw, 92px) clamp(20px, 6vw, 80px) clamp(64px, 9vw, 110px);
    }

    .legal-hero,
    .legal-content {
      max-width: 880px;
      margin: 0 auto;
    }

    .legal-eyebrow {
      margin-bottom: 14px;
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .legal-hero h1 {
      max-width: 780px;
      margin-bottom: 18px;
      font-family: "Playfair Display", serif;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .legal-hero p {
      max-width: 680px;
      color: rgba(23,23,23,0.62);
      font-size: clamp(17px, 2vw, 22px);
      font-weight: 650;
      line-height: 1.5;
    }

    .legal-content {
      margin-top: 44px;
      padding: clamp(24px, 4vw, 44px);
      border-radius: 28px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(0,0,0,0.065);
      box-shadow: var(--shadow-soft);
    }

    .legal-content h2 {
      margin: 28px 0 10px;
      color: #171717;
      font-size: 18px;
      line-height: 1.25;
    }

    .legal-content h2:first-child {
      margin-top: 0;
    }

    .legal-content h3 {
      margin: 26px 0 10px;
      color: #171717;
      font-size: 17px;
      line-height: 1.35;
      font-weight: 900;
    }

    .legal-content p {
      color: rgba(23,23,23,0.64);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.75;
      margin-bottom: 16px;
    }

    .legal-content ul,
    .legal-content ol {
      color: rgba(23,23,23,0.64);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.75;
      margin: 0 0 20px 22px;
      padding-left: 18px;
    }

    .legal-content li + li {
      margin-top: 5px;
    }

    .legal-content hr {
      border: 0;
      border-top: 1px solid rgba(0,0,0,0.08);
      margin: 32px 0;
    }

    .not-found-page {
      min-height: calc(100vh - 72px);
      display: grid;
      place-items: center;
      padding: clamp(44px, 8vw, 92px) clamp(20px, 6vw, 80px);
    }

    .not-found-card {
      width: min(760px, 100%);
      padding: clamp(30px, 5vw, 56px);
      border-radius: 28px;
      background: rgba(255,255,255,0.80);
      border: 1px solid rgba(0,0,0,0.07);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .not-found-card h1 {
      max-width: none;
      margin-bottom: 16px;
      font-size: clamp(34px, 6vw, 64px);
    }

    .not-found-card p {
      max-width: 580px;
      margin: 0 auto;
      color: rgba(23,23,23,0.62);
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 650;
      line-height: 1.55;
    }

    .not-found-actions {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .destinations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .section-head { align-items: start; flex-direction: column; }
      .custom-card { align-items: flex-start; flex-direction: column; }
    }

    @media (max-width: 680px) {
      .nav { padding: 14px 18px; }
      .logo { font-size: 17px; }
      .nav-cta { padding: 10px 15px; font-size: 12.5px; }
      .hero { min-height: auto; padding: 34px 20px 20px; }
      h1 { font-size: clamp(31px, 9vw, 42px); line-height: 1.04; }
      .hero p { font-size: 16px; }
      .toolbar { padding: 0 14px; }
      .filter-shell { align-items: flex-start; flex-direction: column; gap: 10px; }
      .filter-buttons {
        width: 100%;
        gap: 6px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
      }
      .filter-btn { padding: 7px 11px; font-size: 11px; }
      .sort-control {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }
      .sort-buttons {
        width: 100%;
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 2px;
      }
      .sort-btn {
        white-space: nowrap;
        padding: 7px 10px;
        font-size: 11px;
      }
      .section { padding: 36px 18px 74px; }
      .destinations-grid { grid-template-columns: 1fr; gap: 18px; }
      .destination-card { min-height: 0; border-radius: 24px; }
      .card-media { aspect-ratio: 1 / 1.08; }
      .card-body { padding: 13px 14px 15px; }
      .card-media-copy { left: 16px; right: 16px; bottom: 16px; }
      .destination-card .card-media-copy h3 { font-size: 25px; }
      .destination-card .card-media-copy p { font-size: 12px; max-width: 100%; }
      .destination-card h3 { font-size: 28px; }
      .destination-card p { font-size: 12.5px; }
      .meta-row { gap: 5px; margin: 10px 0 12px; }
      .pill { min-height: 23px; padding: 4px 7px; font-size: 10px; }
      .status, .duration-badge { top: 14px; }
      .status { left: 14px; }
      .duration-badge { right: 14px; }
      .custom-card { border-radius: 28px; }
      .custom-card .btn { width: 100%; }
      .destinos-faq { padding-inline: 18px; }
      .faq-question { padding: 16px; font-size: 14px; }
      .faq-answer { padding: 0 16px 16px; }
      .not-found-actions .btn { width: 100%; }
      .travelers-section { padding-top: 44px; }
      .travelers-track { gap: 16px; padding-inline: 18px; animation-duration: 48s; }
      .traveler-card { flex-basis: min(72vw, 280px); }
      .traveler-photo, .traveler-photo img { min-height: 330px; }
      .traveler-note { font-size: 14px; }
      .footer-inner { flex-direction: column; }
      .footer-container { grid-template-columns: 1fr; gap: 34px; }
      .footer-social-col { align-items: flex-start; flex-direction: row; }
      .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 34px; }
      .whatsapp { right: 14px; bottom: 14px; width: 48px; height: 48px; box-shadow: 0 12px 30px rgba(37,211,102,0.26); }
      .whatsapp svg { width: 22px; height: 22px; }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
      .travelers-track {
        animation: none !important;
        transform: none !important;
      }
    }

    /* Mobile overflow guard */
    @media (max-width: 680px) {
      html,
      body {
        max-width: 100%;
        overflow-x: hidden;
      }

      body *,
      body *::before,
      body *::after {
        min-width: 0;
      }

      .hero,
      .hero-inner,
      .toolbar,
      .section,
      .destinations-grid,
      .destination-card,
      .custom-card,
      .travelers-section,
      footer {
        width: 100%;
        max-width: 100%;
      }

      h1,
      .hero h1,
      .section-title,
      .custom-card h2,
      .travelers-title {
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
      }

      .hero h1 {
        font-size: clamp(34px, 10vw, 40px);
      }

      .hero-kicker {
        max-width: 100%;
      }

      .filter-buttons,
      .sort-buttons {
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
      }

      .destination-card {
        overflow: hidden;
      }

      .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
      }

      .card-link {
        width: 100%;
        justify-content: center;
      }

      .destination-card .card-media-copy h3 {
        font-size: clamp(22px, 7.2vw, 25px);
        line-height: 1.05;
      }
    }
  
  .logo {
    display: inline-flex !important;
    align-items: center;
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 0 !important;
    letter-spacing: 0 !important;
  }
  .logo img {
    display: block;
    width: clamp(150px, 18vw, 230px);
    height: auto;
    max-height: 68px;
    object-fit: contain;
  }
  footer .logo img, .footer-logo-col .logo img {
    width: clamp(150px, 16vw, 220px);
  }
  @media (max-width: 680px) {
    .logo img { width: clamp(138px, 46vw, 190px); max-height: 54px; }
  }


  /* ===== TRUST RIBBON ===== */
  .trust-ribbon {
    position: relative;
    z-index: 4;
    padding: 0 clamp(20px, 5vw, 72px) 22px;
  }

  .trust-ribbon-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.78);
    border-radius: 24px;
    background: rgba(255,255,255,0.76);
    box-shadow: 0 16px 46px rgba(20,24,30,0.08);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
  }

  .trust-ribbon-item {
    min-height: 68px;
    padding: 13px 15px;
    border-radius: 18px;
    background: rgba(246,245,241,0.62);
    border: 1px solid rgba(20,20,20,0.045);
  }

  .trust-ribbon-item strong,
  .trust-ribbon-item span {
    display: block;
  }

  .trust-ribbon-item strong {
    margin-bottom: 4px;
    color: #151515;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .trust-ribbon-item span {
    color: rgba(23,23,23,0.58);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
  }

  @media (max-width: 780px) {
    .trust-ribbon {
      padding: 0 18px 18px;
    }

    .trust-ribbon-inner {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border-radius: 20px;
      padding: 8px;
    }

    .trust-ribbon-item {
      min-height: 62px;
      padding: 12px;
      border-radius: 15px;
    }
  }
  /* ===== END TRUST RIBBON ===== */


  /* ===== LIGHT CENTERED HEADER OVERRIDE ===== */
  body > nav,
  body > .nav,
  nav.nav {
    position: relative !important;
    top: auto !important;
    overflow: visible !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 66px !important;
    padding: 12px clamp(18px, 5vw, 72px) 10px !important;
    background: rgba(246, 245, 241, 0.88) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.045) !important;
    box-shadow: none !important;
    backdrop-filter: blur(18px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
  }

  body > nav .nav-left,
  body > .nav .nav-left,
  nav.nav .nav-left {
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
  }

  body > nav .logo,
  body > .nav .logo,
  nav.nav .logo {
    margin-left: auto !important;
    margin-right: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  body > nav .logo img,
  body > .nav .logo img,
  nav.nav .logo img {
    width: clamp(148px, 15vw, 205px) !important;
    max-height: 46px !important;
    filter: none !important;
  }

  body > nav .nav-links-small,
  body > .nav .nav-links-small,
  nav.nav .nav-links-small,
  body > .nav .nav-links,
  nav.nav .nav-links {
    display: none !important;
  }

  @media (max-width: 680px) {
    body > nav,
    body > .nav,
    nav.nav {
      min-height: 56px !important;
      padding: 9px 16px 8px !important;
    }

  body > nav .logo img,
  body > .nav .logo img,
  nav.nav .logo img {
    width: clamp(136px, 43vw, 172px) !important;
    max-height: 38px !important;
  }
}

/* Final mobile fit pass */
@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  .hero,
  .hero-inner,
  .toolbar,
  .section,
  .section-head,
  .destinations-grid,
  .destination-card,
  .card-media,
  .card-body,
  .custom-card,
  .travelers-section,
  .footer,
  .footer-inner,
  .footer-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero,
  .section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  h1,
  .hero h1 {
    max-width: calc(100vw - 40px) !important;
    font-size: clamp(31px, 8.6vw, 36px) !important;
    line-height: 1.08 !important;
    overflow-wrap: normal;
  }

  .hero p {
    max-width: calc(100vw - 40px) !important;
    font-size: 15.5px !important;
    line-height: 1.55 !important;
    overflow-wrap: normal;
  }

  .filter-buttons,
  .sort-buttons {
    flex-wrap: nowrap !important;
    max-width: calc(100vw - 28px) !important;
    overflow-x: auto !important;
  }

  .destination-card .card-media-copy h3 {
    font-size: clamp(22px, 6.8vw, 25px) !important;
    line-height: 1.04 !important;
  }

  .destination-card .card-media-copy p {
    max-width: 100% !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .meta-row {
    flex-wrap: wrap !important;
    overflow: hidden !important;
  }

  .pill {
    max-width: 100%;
    white-space: normal !important;
    line-height: 1.2 !important;
  }
}

@media (max-width: 430px) {
  h1,
  .hero h1 {
    max-width: 320px !important;
    font-size: 33px !important;
  }

  .hero p {
    max-width: 320px !important;
  }

  .filter-buttons,
  .sort-buttons {
    max-width: 360px !important;
  }

  .destination-card {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 350px !important;
  }

  .duration-badge {
    max-width: 128px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .destination-card .card-media-copy h3 {
    font-size: 23px !important;
  }
}

/* Design polish: tighter cards, clearer controls and stronger mobile rhythm */
.toolbar {
  margin-top: 6px;
}

.filter-shell {
  align-items: flex-start;
}

.filter-buttons,
.sort-buttons {
  padding: 2px 0 4px;
}

.filter-btn,
.sort-btn {
  min-height: 32px;
  padding: 8px 13px;
  font-size: 12px;
}

.sort-control {
  gap: 8px;
  font-size: 10.5px;
}

.destination-card {
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.78), 0 10px 28px rgba(20,24,30,0.055);
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(20,24,30,0.09);
}

.card-media {
  aspect-ratio: 1.07 / 1;
}

.card-media::after {
  inset: 28% 0 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.42) 58%, transparent);
}

.card-media-copy {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.destination-card .card-media-copy h3 {
  font-size: clamp(22px, 2.25vw, 26px);
  line-height: 1.02;
}

.destination-card .card-media-copy p {
  font-size: 12.8px;
  line-height: 1.36;
}

.card-body {
  padding: 14px 16px 16px;
}

.meta-row {
  gap: 6px;
  margin: 0 0 14px;
}

.pill {
  padding: 6px 9px;
  font-size: 11.8px;
  color: rgba(23,23,23,0.62);
}

.price strong {
  letter-spacing: 0;
}

.price-note {
  font-size: 11.8px;
  color: rgba(23,23,23,0.68);
}

@media (max-width: 680px) {
  .hero {
    padding-top: 30px !important;
  }

  .toolbar {
    margin-top: 8px;
  }

  .filter-shell {
    gap: 6px !important;
  }

  .filter-btn,
  .sort-btn {
    min-height: 31px;
    padding: 7px 11px;
    font-size: 11.5px !important;
  }

  .sort-control {
    font-size: 10px;
  }

  .section {
    padding-top: 26px !important;
  }

  .destination-card {
    max-width: 344px !important;
    border-radius: 18px !important;
  }

  .card-media {
    aspect-ratio: 1.15 / 1 !important;
  }

  .card-body {
    padding: 13px 15px 15px;
  }

  .destination-card .card-media-copy h3 {
    font-size: 22px !important;
  }

  .destination-card .card-media-copy p {
    font-size: 12px !important;
    line-height: 1.32 !important;
  }

  .pill {
    font-size: 11.2px;
  }

  .price-note {
    font-size: 11.5px;
  }
}
  /* ===== END LIGHT CENTERED HEADER OVERRIDE ===== */

/* Expedition card */
.status.expedition {
  color: #fff3c4;
  background: rgba(118, 74, 24, 0.58);
  border-color: rgba(255, 219, 142, 0.38);
}

.expedition-destination .card-media::after {
  background: linear-gradient(to top, rgba(8, 28, 34, 0.86), rgba(8, 28, 34, 0.48) 58%, transparent);
}

/* Grouped destinations */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.destination-group {
  display: grid;
  gap: 18px;
}

.destination-group + .destination-group {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.destination-group[hidden] {
  display: none;
}

.destination-group-head {
  display: grid;
  grid-template-columns: minmax(120px, 0.26fr) minmax(0, 1fr);
  gap: clamp(14px, 3vw, 26px);
  align-items: start;
}

.destination-group-head > span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(56,167,118,0.10);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-group-head h3 {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.destination-group-head p {
  max-width: 620px;
  color: rgba(23,23,23,0.56);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

@media (max-width: 680px) {
  .section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
  }

  .destination-group {
    gap: 14px;
  }

  .destination-group + .destination-group {
    margin-top: 34px;
    padding-top: 26px;
  }

  .destination-group-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .destination-group-head h3 {
    font-size: 25px;
  }

  .destination-group-head p {
    font-size: 13.5px;
  }
}
