:root {
    --beige: #f6f5f1;
    --beige-mid: #ece9e1;
    --green-dark: #123d2e;
    --green-mid: #2a8f64;
    --green-btn: #19b979;
    --green-light: #74e3ad;
    --accent: #d8956f;
    --white: #ffffff;
    --text-dark: #151515;
    --text-muted: #6e6e73;
    --border: rgba(0,0,0,0.08);
    --hero-overlay: rgba(18, 61, 46, 0.42);
    --surface: rgba(255,255,255,0.74);
    --surface-solid: #fbfaf7;
    --shadow-soft: 0 18px 60px rgba(20, 24, 22, 0.08);
    --shadow-lift: 0 28px 80px rgba(20, 24, 22, 0.14);
  }

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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
	    background: linear-gradient(180deg, #fbfaf7 0%, var(--beige) 48%, #fff 100%);
	    overflow-x: hidden;
	    -webkit-font-smoothing: antialiased;
	    text-rendering: geometricPrecision;
	  }

  .skip-link {
    position: absolute;
    left: 16px;
    top: -52px;
    z-index: 1000;
    background: var(--green-dark);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
  }

  .skip-link:focus { top: 12px; }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
	    background: rgba(251, 250, 247, 0.76);
	    backdrop-filter: blur(22px) saturate(165%);
	    -webkit-backdrop-filter: blur(22px) saturate(165%);
	    border-bottom: 1px solid rgba(0,0,0,0.055);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	    padding: 16px 48px;
    height: auto;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease;
  }

  nav.nav-hidden {
    transform: translateY(-100%);
  }

  .nav-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1.5px solid var(--green-mid);
    line-height: 1;
  }

  .logo em, .logo span {
    font-style: normal;
    color: var(--green-mid);
  }

  .nav-links-small {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    color: rgba(30, 61, 47, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .nav-links-small a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links-small a:hover { color: var(--green-mid); }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
	    background: #151515;
	    color: var(--white);
	    padding: 12px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
	    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
  }
  .nav-cta:hover {
	    background: var(--green-dark);
    transform: translateY(-1px);
	    box-shadow: 0 16px 34px rgba(18, 61, 46, 0.24);
  }

  /* ===== HERO ===== */
	  .hero {
	    background: linear-gradient(180deg, rgba(7,18,14,0.56), rgba(7,18,14,0.76)), url('../Fotos%20Viagem/grindeewald-1600.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: scroll;
	    padding-top: 150px;
	    padding-bottom: 140px;
    min-height: 760px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
	    gap: 0;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
	    background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.16) 0%, transparent 38%);
    pointer-events: none;
    z-index: 0;
  }

  .hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 150px;
	    background: linear-gradient(180deg, rgba(251,250,247,0) 0%, rgba(251,250,247,0.34) 62%, var(--surface-solid) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
	    background: rgba(255, 255, 255, 0.14);
	    backdrop-filter: blur(18px) saturate(150%);
	    -webkit-backdrop-filter: blur(18px) saturate(150%);
	    border: 1px solid rgba(255, 255, 255, 0.22);
	    padding: 9px 17px;
    border-radius: 999px;
    margin-bottom: 24px;
  }
  .trust-avatars {
    display: flex;
  }
  .trust-avatars img {
    width: 28px; height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-dark);
    margin-left: -8px;
  }
  .trust-avatars img:first-child { margin-left: 0; }
  .trust-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
  }
  .trust-stars { font-weight: 700; color: #ffc107; letter-spacing: 0.5px; font-size: 10px; }
  .trust-stars-svg {
    vertical-align: middle;
    margin-right: 6px;
  }
  .trust-score {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
  }
  .trust-label strong { color: #fff; }

  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
  }

  .hero-text h1 {
    font-family: 'Playfair Display', serif;
	    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    color: var(--white);
	    line-height: 1.02;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
	    max-width: 820px;
  }

  .hero-text h1 .highlight {
	    color: #77e4ac;
    font-style: italic;
  }

  .hero-text p {
	    color: rgba(255,255,255,0.84);
    font-size: 18px;
    margin-bottom: 0;
	    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 15px 28px;
	    border: 1px solid rgba(255,255,255,0.36);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
	    backdrop-filter: blur(14px);
	    -webkit-backdrop-filter: blur(14px);
	    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .btn-ghost:hover {
    background: rgba(255,255,255,0.12);
	    border-color: rgba(255,255,255,0.75);
	    transform: translateY(-1px);
  }

  .hero-assurance {
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    letter-spacing: 0.25px;
    margin-top: 18px;
  }

	  .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
	    background: #f8f8f5;
	    border: none;
	    color: #111;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
	    box-shadow: 0 14px 38px rgba(0,0,0,0.16);
  }

  .btn-outline:hover {
	    background: #fff;
    transform: translateY(-2px);
	    box-shadow: 0 18px 42px rgba(0,0,0,0.2);
	    color: #111;
  }

  /* ===== SOBRE A EMPRESA ===== */
  .sobre {
    background: var(--beige);
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .sobre-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .sobre-text p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 14px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .stat-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .stat-icon { font-size: 22px; margin-bottom: 8px; display: block; }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 2px;
  }

  .stat-label {
    color: var(--text-muted);
    font-size: 13px;
  }

  .sobre-img {
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    background: rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .sobre-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
  }

  .sobre-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    min-height: 0;
    min-width: 0;
    border-radius: 20px;
  }

  .sobre-img:hover img {
    opacity: 0.75;
  }

  .sobre-img img:hover {
    transform: scale(1.04);
    opacity: 1 !important;
  }

  /* ===== DESTINOS ===== */
  .destinos {
    background: var(--beige);
    padding: 100px 80px;
  }

  .pacotes-section {
    background: var(--surface-solid);
    padding-top: 96px;
    position: relative;
    overflow: hidden;
  }

  .pacotes-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 120px;
    background: linear-gradient(180deg, var(--surface-solid) 0%, #fff 100%);
    pointer-events: none;
  }

  .pacotes-section > * {
    position: relative;
    z-index: 1;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
  }

  .section-title em {
    font-style: italic;
    color: var(--green-mid);
  }

  .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: -20px auto 40px;
    max-width: 620px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 350px;
    background: var(--green-mid);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
  }

  .card:hover { transform: translateY(-5px); }

  .card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
    display: block;
  }

  .card:hover img { transform: scale(1.07); }

  .scarcity-tag { position: absolute; top: 16px; right: 16px; background: rgba(8,24,16,0.75); backdrop-filter: blur(8px); color: rgba(255,255,255,0.92); font-size: 10.5px; font-weight: 600; padding: 5px 12px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.15); z-index: 2; letter-spacing: 0.8px; text-transform: uppercase; }
  .scarcity-tag.waitlist { color: #fbbf24; border-color: rgba(251,191,36,0.3); }
  .scarcity-tag.new-date { color: #5deba0; border-color: rgba(93,235,160,0.3); }

  .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,28,18,0.95) 0%, rgba(8,28,18,0.25) 55%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
  }

  .card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(43,181,115,0.2);
    border: 1px solid rgba(43,181,115,0.4);
    color: #5deba0;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    width: fit-content;
    letter-spacing: 0.3px;
  }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }

  .card-desc {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.55;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s;
  }

  .card:hover .card-link { gap: 10px; }

  /* ===== PERSONALIZADO ===== */
  .personalizado {
    background: var(--beige);
    padding: 0 80px 80px;
  }

  .custom-banner {
    background: linear-gradient(135deg, rgba(10, 50, 45, 0.98), rgba(15, 107, 74, 0.94));
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 64px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  }

  .custom-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .custom-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 550px;
  }

  .custom-sub {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 300px;
    text-align: right;
  }

  .custom-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
    margin-bottom: 40px;
    border: none;
  }

  .features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    border-right-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .feature-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
  }

  .feature-item .fi-icon {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--green-btn);
  }

  .feature-item h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
  }

  .feature-item p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.55;
  }

  .custom-footer {
    display: flex;
    justify-content: flex-end;
  }

  .btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-btn);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }

  .btn-green:hover { transform: scale(1.04); background: #23a065; }

  /* ===== DEPOIMENTOS ===== */
  .depoimentos {
    background: var(--white);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .dep-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
  }

  .dep-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    max-width: 100%;
    margin: 0 -80px;
    padding: 20px 80px 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }
  .dep-grid::-webkit-scrollbar { display: none; }

  .dep-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 450px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dep-avatar {
    width: 90px; height: 90px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    margin-bottom: 0;
    border: 3px solid var(--white);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .dep-card:hover .dep-avatar { transform: scale(1.05); }

  .dep-avatar img { width: 100%; height: 100%; object-fit: cover; }

  .dep-bubble {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 28px;
    padding: 24px 28px;
    position: relative;
    z-index: 1;
    box-shadow: 0 12px 32px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
  }
  .dep-card:hover .dep-bubble {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  }

  .dep-text {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
  }

  .dep-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 0.2rem;
  }

  .dep-trip {
    color: var(--green-mid);
    font-size: 13.5px;
    font-weight: 600;
  }

  .dep-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2.5rem;
  }

  .dep-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #e0e7e3;
    display: inline-block;
  }

  .dep-dot.active {
    background: var(--green-mid);
    width: 24px;
    border-radius: 4px;
    transition: width 0.3s ease;
  }

  .dep-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 14px 0 10px;
  }

  .dep-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
  }

  .dep-dest {
    color: var(--green-mid);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  /* ===== SOBRE MIM ===== */
  .sobre-mim {
    background: #e4edea;
    padding: 100px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .jonas-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jonas-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--green-mid);
    border: 5px solid var(--green-dark);
    flex-shrink: 0;
  }

  .jonas-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .ring-text {
    position: absolute;
    width: 420px;
    height: 420px;
    animation: none;
    pointer-events: none;
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  .sobre-mim-text small {
    color: var(--green-mid);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
  }

  .sobre-mim-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.15;
  }

  .sobre-mim-text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 14px;
  }

  .sobre-mim-text strong { color: var(--text-dark); }
  .jonas-note {
    margin-top: 20px;
    padding: 18px 20px;
    background: rgba(34,200,138,0.06);
    border-left: 3px solid var(--green-mid);
    border-radius: 8px;
  }
  .jonas-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
  }
  .btn-row {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* ===== FAQ & VIP ===== */
  .faq-section { background: var(--beige); padding: 100px 80px; color: var(--text-dark); }
  .faq-container { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px 60px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
  .faq-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  .faq-heading-title {
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
  }
  .faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
  .faq-item:first-of-type { border-top: 1px solid rgba(0,0,0,0.1); }
  .faq-question { width: 100%; background: none; border: none; color: var(--text-dark); font-size: 16px; font-weight: 700; padding: 24px 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
  .faq-question:hover { color: var(--green-mid); }
  .faq-icon { width: 20px; height: 20px; border-radius: 50%; background: #f0a07a; transition: background 0.3s; display: inline-block; flex-shrink: 0; }
  .faq-item.active .faq-icon { background: var(--green-mid); }
  .faq-item.active .faq-question { color: var(--text-dark); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
  .faq-answer p { padding-bottom: 24px; color: var(--text-muted); line-height: 1.6; margin: 0; font-size: 15px; }

  .vip-section { background: linear-gradient(135deg, #1a9e6e, #0f6b4a); padding: 80px 40px; display: flex; justify-content: center; }
  .vip-container { max-width: 1000px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; background: rgba(255,255,255,0.1); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.2); border-bottom-color: rgba(255,255,255,0.05); border-right-color: rgba(255,255,255,0.05); padding: 50px 60px; border-radius: 32px; box-shadow: 0 24px 48px rgba(0,0,0,0.15); }
  .vip-content { flex: 1; color: var(--white); }
  .vip-content h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; margin-bottom: 12px; }
  .vip-content p { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.5; }
  .vip-form { flex: 1; display: flex; gap: 12px; width: 100%; }
  .vip-form input { flex: 1; padding: 16px 24px; border-radius: 999px; border: 1px solid transparent; outline: none; font-size: 16px; font-family: 'DM Sans', sans-serif; transition: border 0.3s; }
  .vip-form input:focus { border: 1px solid var(--green-light); box-shadow: 0 0 0 4px rgba(34, 200, 138, 0.15); }
  .vip-form .btn-green { background: #111; box-shadow: 0 8px 24px rgba(0,0,0,0.2); white-space: nowrap; }
  .vip-form .btn-green:hover { background: #222; transform: translateY(-2px); }
  .vip-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.16) !important;
    border: 1px solid rgba(255,255,255,0.28);
    cursor: default;
    box-shadow: none !important;
  }

  /* ===== CONTATO ===== */
  .contato-wrapper { background: var(--beige); padding: 80px 40px; display: flex; justify-content: center; }
  .contato {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(135deg, #2c3830, #1b241e);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
    border-radius: 32px;
    padding: 64px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }

  .contato small {
    color: #5deba0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
  }

  .contato h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
  }

  .contato p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-top: 8px;
    max-width: 440px;
    line-height: 1.6;
  }

  /* ===== FOOTER ===== */
  footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    color: #333333;
    padding: 6rem 80px 3rem 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
    position: relative;
    z-index: 10;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.5fr 1.5fr 1.5fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
  }

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

  .footer-logo-col .logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .footer-logo-col .logo em, .footer-logo-col .logo span {
    font-style: normal;
    color: var(--green-mid);
  }

  .footer-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
  }

  .footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green-btn);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    width: fit-content;
  }

  .footer-btn:hover {
    background: var(--green-dark);
    transform: scale(1.03);
  }

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

  .footer-menu-col a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.15s;
  }

  .footer-menu-col a:hover {
    color: var(--green-mid);
  }

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

  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.15s, background 0.15s;
  }

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

  .social-icon-disabled,
  .social-icon-disabled:hover {
    opacity: 0.45;
    cursor: default;
    transform: none;
    background: var(--green-dark);
  }

  .footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .footer-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
  }

  .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;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 8px 12px;
    border-radius: 8px;
    background: #fafafa;
    line-height: 1.2;
  }

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

  .cadastur-brand {
    font-size: 1.1rem;
    font-weight: 900;
    color: #0f6b4a;
    font-style: italic;
  }

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

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

  .cadastur-info {
    font-size: 0.75rem;
    color: #555;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.4;
  }

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

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-contact-item svg {
    color: var(--green-btn);
    flex-shrink: 0;
  }

  .footer-destinations {
    margin-top: 20px;
    font-size: 0.78rem;
    color: #777;
    line-height: 1.5;
  }

  .footer-bottom {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #888;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-bottom a {
    color: #666;
    text-decoration: none;
    font-weight: 600;
  }

  .footer-bottom a:hover {
    color: var(--green-mid);
  }

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

  /* ===== VIAJANTES CAROUSEL ===== */
  .viajantes-section {
    background: var(--white);
    padding: 80px 0 100px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .viajantes-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 24px;
  }

  .viajantes-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
  }

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

  .viajantes-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
  }

  .viajantes-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    scrollbar-width: none;
    cursor: grab;
  }
  .viajantes-carousel::-webkit-scrollbar { display: none; }

  .viajantes-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
  }

  .viajantes-carousel .img-box {
    width: 200px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .viajantes-carousel .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .viajantes-carousel .img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  }

  .viajantes-carousel .img-box:hover img {
    transform: scale(1.05);
  }

  .viajantes-story {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(8, 28, 18, 0.82);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px;
    color: var(--white);
    backdrop-filter: blur(8px);
  }

  .viajantes-story strong {
    display: block;
    font-size: 12px;
    line-height: 1.2;
  }

  .viajantes-story span {
    display: block;
    color: #5deba0;
    font-size: 10.5px;
    font-weight: 700;
    margin-top: 2px;
  }

  .viajantes-story p {
    color: rgba(255,255,255,0.72);
    font-size: 10.5px;
    line-height: 1.35;
    margin-top: 6px;
  }

  /* ===== CARDS CAROUSEL ===== */
  .cards-carousel-wrapper {
    position: relative;
    overflow: hidden;
  }

  .cards-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 8px 4px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
  }
  .cards-carousel::-webkit-scrollbar { display: none; }
  .cards-carousel:active { cursor: grabbing; }

	  .cards-carousel .card {
	    flex: 0 0 calc(50% - 10px);
	    min-width: 420px;
	    scroll-snap-align: start;
	    height: 460px;
	    border-radius: 24px;
	  }

  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--green-mid);
    background: var(--white);
    color: var(--green-mid);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    flex-shrink: 0;
  }
  .carousel-btn:hover {
    background: var(--green-mid);
    color: var(--white);
    transform: scale(1.08);
  }

  .carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s, width 0.3s;
    cursor: pointer;
    border: none;
    padding: 0;
  }
  .carousel-dot.active {
    background: var(--green-mid);
    width: 22px;
    border-radius: 4px;
  }

  /* ===== INSTAGRAM SECTION ===== */
  .instagram-section {
    background: var(--beige);
    padding: 80px 80px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .instagram-section .section-title {
    margin-bottom: 12px;
  }

  .instagram-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 44px;
    line-height: 1.6;
  }

  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 40px;
  }

  .instagram-tile {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--green-mid);
    cursor: pointer;
  }

  .instagram-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.25,1,0.5,1);
    display: block;
  }

  .instagram-tile:hover img { transform: scale(1.08); }

  .instagram-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,107,74,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
  }

  .instagram-tile:hover .instagram-tile-overlay { opacity: 1; }

  .instagram-tile-overlay span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 24px rgba(220,39,67,0.35);
  }

  .instagram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(220,39,67,0.45);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    html, body { overflow-x: hidden; max-width: 100%; }
    
    nav { padding: 12px 20px; }
    .nav-cta { font-size: 12px; padding: 9px 16px; }
    .nav-links-small { display: none; }
    
    .hero { padding: 120px 24px 112px; gap: 0; min-height: 760px; }
    
    .sobre { display: flex; flex-direction: column; padding: 40px 24px 60px; gap: 0; text-align: center; align-items: center; }
    .sobre-text { display: contents; }
    .sobre-text h2 { order: 1; margin-bottom: 16px; text-align: center; }
    .sobre-text p:nth-of-type(1) { order: 2; margin: 0 auto 32px auto; text-align: center; }
    .sobre-text p:nth-of-type(2) { order: 3; margin: 0 auto 32px auto; text-align: center; }
    .sobre-img { order: 4; margin: 0 auto 32px auto; border-radius: 20px; overflow: hidden; height: auto; aspect-ratio: 1 / 1; width: 100%; gap: 1px; background: rgba(255, 255, 255, 0.2); }
    .stats-grid { order: 5; margin-top: 0; }
    .stat-card { text-align: center; }

    .sobre-mim { grid-template-columns: 1fr; padding: 60px 24px; }
    
    .destinos, .personalizado, .depoimentos, .contato-wrapper, footer, .faq-section, .vip-section { padding: 60px 24px; }
    .contato { padding: 40px 24px; flex-direction: column; text-align: center; border-radius: 24px; }
    .faq-container { padding: 30px 20px; border-radius: 16px; }
    .vip-container { flex-direction: column; padding: 30px 24px; text-align: center; border-radius: 24px; }
    .vip-form { flex-direction: column; }
    .cards-grid { grid-template-columns: 1fr; }
    .dep-grid { margin: 0 -24px; padding: 20px 24px 40px; gap: 20px; }
    .dep-card { flex: 0 0 85%; min-width: 280px; scroll-snap-align: center; }
    .dep-card { border-bottom: none; }
    
    .custom-banner { grid-template-columns: 1fr; padding: 40px; text-align: center; }
    .custom-header { flex-direction: column; align-items: center; text-align: center; }
    .custom-sub { text-align: center; margin: 0 auto; }
    .features-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .feature-item { align-items: center; text-align: center; padding: 16px 12px; border-radius: 14px; }
    .feature-item h4 { font-size: 13px; }
    .feature-item p { font-size: 12px; }
    .custom-banner { padding: 28px 20px; }
    .custom-header h3 { font-size: clamp(16px, 3.5vw, 22px); }
    #personalizado .custom-banner { display: flex; flex-direction: column; gap: 16px; }
    .custom-footer { justify-content: center; }
    
    .contato { flex-direction: column; align-items: center; text-align: center; }
    .contato div { text-align: center; }
    .contato p { margin: 8px auto 0; text-align: center; }
    
    footer { padding: 3rem 24px 1.5rem 24px; }
    .footer-container { grid-template-columns: 1fr; gap: 35px; }
    .footer-social-col { align-items: flex-start; flex-direction: row; }
    .footer-bottom { margin-top: 2rem; flex-direction: column; align-items: flex-start; gap: 15px; }
    
    .viajantes-section { padding: 60px 0; }
	    .viajantes-carousel .img-box { width: 170px; height: 285px; }
    .viajantes-carousel-track { animation: none; }
  }
  /* ===== UX IMPROVEMENTS ===== */
  .btn-outline:active, .btn-green:active, .nav-cta:active, .footer-btn:active {
    transform: scale(0.95) !important;
    box-shadow: 0 4px 12px rgba(34, 200, 138, 0.3) !important;
  }
  .dep-stars {
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 2px;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }

  /* ===== CARD INCLUDES ===== */
  .card-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 6px 0 8px;
  }
  .card-includes span {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: 0.2px;
  }

  @media (max-width: 960px) {
	    .cards-carousel .card { flex: 0 0 88%; min-width: 280px; height: 430px; }
    .instagram-section { padding: 60px 24px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* ===== CARD INFO BADGES ===== */
  .card-info-row {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  .card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.2px;
  }
  .card-badge-days {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
  }
  .card-badge-price {
    background: rgba(34, 200, 138, 0.2);
    border: 1px solid rgba(34, 200, 138, 0.4);
    color: #5deba0;
  }

  /* ===== LUXURY UX/UI UPGRADES ===== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-title {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 40px;
    opacity: 0.9;
  }
  .hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-scarcity {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
  }
  @media (max-width: 960px) {
    .hero-cta-wrapper { align-items: center; }
  }

  /* Concierge WhatsApp Button */
  .concierge-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f4a36;
    color: #fff;
    padding: 14px 24px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(15, 74, 54, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
  }
  .concierge-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(15, 74, 54, 0.4);
    background: #155e46;
  }
  @media (max-width: 768px) {
    .concierge-whatsapp { padding: 11px 18px; right: 16px; bottom: 16px; font-size: 13px; gap: 8px; }
    .concierge-whatsapp svg { width: 20px; height: 20px; }
  }
  
  /* Global Soft Shadows & Radiuses */
  .card {
	    box-shadow: 0 20px 50px rgba(0,0,0,0.03) !important;
	    border-radius: 24px !important;
	  }
  .card-img-wrap { border-radius: 12px 12px 0 0 !important; }

  /* ===== MOBILE CARD CLEANUP ===== */
  @media (max-width: 768px) {
	    .card { height: 430px; }
	    .card-desc, .card-includes { display: flex !important; }
	    .card-desc { display: block !important; color: rgba(255,255,255,0.78); }
	    .card-overlay { padding: 18px; background: linear-gradient(to top, rgba(8,28,18,0.98) 0%, rgba(8,28,18,0.55) 62%, rgba(8,28,18,0.08) 100%); justify-content: flex-end; }
    .card-title { font-size: 18px; margin-bottom: 2px; }
    .card-info-row { margin-bottom: 4px; gap: 4px; }
    .card-badge { padding: 3px 8px; font-size: 10px; background: rgba(0,0,0,0.4) !important; border: 1px solid rgba(255,255,255,0.2) !important; color: #fff !important; backdrop-filter: blur(4px); }
    .card-date { background: transparent !important; border: none !important; padding: 0 !important; font-size: 11px !important; color: rgba(255,255,255,0.85) !important; }
    .card-link { margin-top: 0; font-size: 12px; }
    .scarcity-tag { font-size: 9px; padding: 4px 10px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ===== TRAVEL CARDS: PREMIUM SPLIT STYLE ===== */
  .cards-carousel .card {
    display: flex;
    flex-direction: column;
    height: 620px;
    min-width: 430px;
    max-width: 520px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 34px !important;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(22, 26, 23, 0.10) !important;
  }

  .cards-carousel .card > img {
    width: 100%;
    height: 285px;
    object-fit: cover;
    filter: saturate(0.94) brightness(0.82);
    transition: transform 0.45s ease, filter 0.45s ease;
  }

  .cards-carousel .card:hover > img {
    transform: scale(1.025);
    filter: saturate(1) brightness(0.88);
  }

  .cards-carousel .card .card-overlay {
    position: static;
    inset: auto;
    flex: 1;
    background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
    color: var(--text-dark);
    padding: 34px 34px 32px;
    justify-content: flex-start;
    gap: 12px;
  }

  .cards-carousel .card .card-info-row {
    order: 4;
    margin: 10px 0 4px;
  }

  .cards-carousel .card .card-date {
    order: 0;
    background: transparent;
    border: 0;
    color: var(--green-mid);
    padding: 0;
    border-radius: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .cards-carousel .card .card-title {
    order: 1;
    color: var(--text-dark);
    font-size: clamp(28px, 2.7vw, 40px);
    line-height: 1.05;
    margin-top: 4px;
  }

  .cards-carousel .card .card-desc {
    order: 2;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.62;
    max-width: 96%;
  }

  .cards-carousel .card .card-includes {
    order: 3;
    margin: 8px 0 0;
    gap: 8px;
  }

  .cards-carousel .card .card-includes span,
  .cards-carousel .card .card-badge {
    background: rgba(21,21,21,0.04);
    border: 1px solid rgba(0,0,0,0.07);
    color: #3a3a3c;
  }

  .cards-carousel .card .card-badge-days {
    color: var(--text-dark);
  }

  .cards-carousel .card .card-badge-price {
    color: var(--green-mid);
    background: rgba(42,143,100,0.08);
    border-color: rgba(42,143,100,0.16);
  }

  .cards-carousel .card .price-note-inline {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: rgba(42, 143, 100, 0.7);
    text-transform: none;
  }

  .cards-carousel .card .price-note-inline strong {
    font-size: inherit;
    line-height: inherit;
    font-weight: 900;
    color: #151515;
  }

  .cards-carousel .card .card-link {
    order: 5;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    background: var(--green-btn);
    color: #fff;
    padding: 17px 22px;
    border-radius: 999px;
    font-size: 15px;
    box-shadow: 0 16px 34px rgba(25,185,121,0.24);
  }

  .cards-carousel .card:hover .card-link {
    gap: 6px;
    background: #151515;
    box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  }

  .cards-carousel .card .scarcity-tag,
  .scarcity-tag {
    top: 30px;
    left: 30px;
    right: auto;
    background: rgba(10, 20, 16, 0.36);
    border: 1px solid rgba(255,255,255,0.38);
    color: rgba(255,255,255,0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    padding: 9px 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .scarcity-tag.waitlist {
    color: #f4c95d;
    border-color: rgba(244,201,93,0.52);
  }

  /* ===== COMPACT HOW-IT-WORKS ===== */
  .personalizado {
    padding: 32px 80px 64px;
  }

  .custom-banner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 40px 44px;
    border-radius: 26px;
  }

  .custom-header {
    margin-bottom: 18px;
  }

  .custom-banner h3 {
    font-size: clamp(22px, 2.1vw, 30px);
    max-width: 620px;
  }

  .custom-divider {
    margin-bottom: 24px;
  }

  .features-row {
    gap: 12px;
    margin-bottom: 22px;
  }

  .feature-item {
    padding: 18px;
  }

  .feature-item p {
    font-size: 12px;
  }

  /* ===== TRAVELER CAROUSEL: META ON IMAGE + GLASS NOTE BELOW ===== */
  .viajantes-carousel-track {
    gap: 18px;
  }

  .viajantes-carousel .img-box {
    width: 220px;
    height: auto;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .viajantes-photo {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
  }

  .viajantes-photo::after {
    content: '';
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(to top, rgba(5,12,9,0.72), transparent);
    pointer-events: none;
  }

  .viajantes-carousel .img-box img {
    height: 100%;
  }

  .viajantes-meta {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    color: #fff;
  }

  .viajantes-meta strong {
    display: block;
    font-size: 14px;
    line-height: 1.1;
  }

  .viajantes-meta span {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,0.76);
    font-size: 11px;
    font-weight: 700;
  }

  .viajantes-note {
    margin-top: 10px;
    padding: 14px 15px;
    min-height: 88px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.45;
    box-shadow: 0 12px 34px rgba(20,24,22,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .viajantes-story {
    display: none;
  }

  /* ===== CLEAN TESTIMONIALS ===== */
  .depoimentos {
    background: linear-gradient(180deg, #fff 0%, var(--surface-solid) 100%);
  }

  .dep-title {
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 46px;
  }

  .dep-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
  }

  .dep-card {
    min-width: 0;
    max-width: none;
    align-items: flex-start;
    text-align: left;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-soft);
  }

  .dep-avatar {
    width: 64px;
    height: 64px;
    border: 0;
    box-shadow: none;
  }

  .dep-meta {
    align-items: flex-start;
    padding: 14px 0 18px;
  }

  .dep-stars {
    color: #f5b94d;
    font-size: 13px;
    letter-spacing: 1px;
  }

  .dep-bubble {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .dep-card:hover .dep-bubble {
    transform: none;
    box-shadow: none;
  }

  .dep-text {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.72;
  }

  .dep-dots {
    display: none;
  }

  @media (max-width: 960px) {
    .cards-carousel .card {
      min-width: 84vw;
      height: auto;
      min-height: 720px;
    }

    .cards-carousel .card > img {
      height: 275px;
    }

    .cards-carousel .card .card-overlay {
      padding: 28px 26px 28px;
    }

    .cards-carousel .card .card-title {
      font-size: 33px;
    }

    .personalizado {
      padding: 24px 24px 54px;
    }

    .custom-banner {
      padding: 30px 22px;
    }

    .features-row {
      grid-template-columns: 1fr 1fr;
    }

    .viajantes-carousel .img-box {
      width: 190px;
    }

    .viajantes-photo {
      height: 260px;
    }

    .dep-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }

  /* ===== PREMIUM APPLE-INSPIRED POLISH ===== */
  .hero-title {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.01;
    letter-spacing: 0;
    max-width: 820px;
  }

  .hero-subtitle {
    font-size: clamp(17px, 1.45vw, 21px);
    color: rgba(255,255,255,0.86);
    max-width: 740px;
  }

  .section-title {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    margin-bottom: 24px;
  }

  .section-subtitle {
    font-size: 16px;
    max-width: 680px;
    margin-bottom: 56px;
  }

  .destinos,
  .depoimentos,
  .instagram-section,
  .faq-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .pacotes-section {
    background: #fff;
  }

  .btn-green,
  .footer-btn {
    background: #151515;
    color: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,0.14);
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  }

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

  .cards-carousel {
    gap: 24px;
    padding: 12px 8px 32px;
  }

  .cards-carousel .card {
    height: 500px;
    min-width: 450px;
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow: var(--shadow-soft) !important;
    isolation: isolate;
  }

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

  .card-overlay {
    padding: 30px;
    background: linear-gradient(to top, rgba(5,12,9,0.96) 0%, rgba(5,12,9,0.68) 48%, rgba(5,12,9,0.05) 100%);
  }

  .card-title {
    font-size: 26px;
    letter-spacing: 0;
  }

  .card-desc {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
  }

  .card-includes span,
  .card-badge,
  .card-date {
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }

  .carousel-btn {
    border: 1px solid rgba(0,0,0,0.08);
    color: #151515;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  }

  .carousel-btn:hover {
    background: #151515;
    color: #fff;
    transform: translateY(-2px);
  }

  .custom-banner,
  .vip-container,
  .faq-container,
  .dep-bubble {
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
  }

  .custom-banner {
    background: linear-gradient(rgba(9, 22, 18, 0.74), rgba(9, 22, 18, 0.84)), url('../Fotos%20Viagem/mar%20turquesa.webp');
    background-size: cover;
    background-position: center;
  }

  .feature-item {
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
  }

  .viajantes-carousel .img-box {
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
  }

  .viajantes-story {
    border-radius: 16px;
    background: rgba(8, 15, 12, 0.76);
  }

  .instagram-section {
    background: #fff;
  }

  .instagram-embed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 1120px;
    margin: 0 auto 44px;
    align-items: start;
  }

  .instagram-embed-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
    background: var(--surface-solid);
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: var(--shadow-soft);
  }

  .instagram-embed-card .instagram-media {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .instagram-fallback {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 28px;
    color: rgba(23,23,23,0.62);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(145deg, rgba(246,245,241,0.92), rgba(255,255,255,0.78));
  }

  .instagram-cta {
    background: #151515;
    box-shadow: 0 14px 34px rgba(0,0,0,0.14);
  }

  .instagram-cta:hover {
    box-shadow: 0 18px 44px rgba(0,0,0,0.18);
  }

  .faq-container {
    max-width: 900px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.06);
  }

  .faq-icon {
    background: #151515;
  }

  .concierge-whatsapp {
    background: rgba(21,21,21,0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.22);
  }

  .concierge-whatsapp:hover {
    background: #000;
  }

  @media (max-width: 960px) {
    .hero {
      padding-top: 128px;
      padding-bottom: 120px;
      gap: 0;
      min-height: clamp(760px, calc(100svh - 84px), 920px);
      background-position: center 24%;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .hero-trust {
      align-self: center;
      margin-bottom: 52px;
      transform: translateY(-28px);
    }

    .hero-actions {
      margin-top: 52px;
    }

    .hero-title {
      font-size: clamp(30px, 8.8vw, 40px);
    }

    .hero-text h1 {
      font-size: clamp(30px, 8.8vw, 40px);
    }

    .destinos,
    .depoimentos,
    .instagram-section,
    .faq-section {
      padding-top: 72px;
      padding-bottom: 72px;
    }

    .cards-carousel .card {
      min-width: 286px;
      height: auto;
      min-height: 700px;
    }

    #pacCarousel {
      touch-action: pan-x pan-y;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    #pacCarousel .card {
      scroll-snap-align: start;
      scroll-snap-stop: always;
      transition: none;
      transform: none;
      -webkit-user-drag: none;
      user-select: none;
    }

    #pacCarousel .card:hover,
    #pacCarousel .card:active {
      transform: none;
    }

    #pacCarousel .card > img,
    #pacCarousel .card:hover > img,
    #pacCarousel .card:active > img {
      transform: none;
      transition: none;
      pointer-events: none;
      -webkit-user-drag: none;
      user-select: none;
    }

    #pacCarousel .card:hover .card-link,
    #pacCarousel .card:active .card-link {
      gap: 6px;
      background: var(--green-btn);
      box-shadow: 0 16px 34px rgba(25,185,121,0.24);
    }

    .instagram-embed-grid {
      grid-template-columns: 1fr;
      max-width: 420px;
      gap: 18px;
    }
  }

  /* ===== FINAL SOCIAL + CAROUSEL REFINEMENTS ===== */
  #san-andres-destaque .cards-carousel {
    justify-content: center;
    overflow-x: visible;
    cursor: default;
  }

  #san-andres-destaque .cards-carousel .card {
    min-width: min(520px, 92vw);
  }

  .viajantes-note {
    margin: 12px 4px 0;
    padding: 0 2px;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: rgba(26,26,26,0.62);
    font-size: 12.6px;
    line-height: 1.52;
  }

  .dep-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 22px;
    max-width: none;
    margin: 0 -80px;
    padding: 8px 80px 38px;
    scrollbar-width: none;
  }

  .dep-grid::-webkit-scrollbar {
    display: none;
  }

  .dep-card {
    flex: 0 0 min(390px, 82vw);
    scroll-snap-align: center;
  }

  .dep-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin: 0 0 18px;
  }

  .dep-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    display: block;
  }

  .instagram-embed-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 22px;
    max-width: none;
    margin: 0 -80px 44px;
    padding: 8px 80px 36px;
    scrollbar-width: none;
  }

  .instagram-embed-grid::-webkit-scrollbar {
    display: none;
  }

  .instagram-embed-card {
    flex: 0 0 min(360px, 84vw);
    scroll-snap-align: center;
  }

  @media (max-width: 960px) {
    #san-andres-destaque .cards-carousel {
      overflow-x: hidden;
      padding-inline: 0;
    }

    #san-andres-destaque .cards-carousel .card {
      min-width: min(86vw, 360px);
    }

    .personalizado {
      padding: 16px 18px 44px;
    }

    .custom-banner {
      padding: 22px 18px;
      border-radius: 22px;
    }

    .custom-header {
      margin-bottom: 10px;
    }

    .custom-banner h3 {
      font-size: clamp(18px, 5.6vw, 24px);
    }

    .custom-sub,
    .custom-divider {
      display: none;
    }

    .custom-footer {
      display: flex;
      justify-content: center;
      margin-top: 16px;
    }

    .features-row {
      gap: 8px;
      margin-bottom: 0;
    }

    .feature-item {
      padding: 13px 11px;
      border-radius: 14px;
    }

    .feature-item h4 {
      font-size: 12.5px;
    }

    .feature-item p {
      display: none;
    }

    .dep-grid {
      margin: 0 -24px;
      padding: 8px 24px 34px;
    }

    .dep-card {
      flex-basis: 84vw;
      padding: 24px;
    }

    .instagram-embed-grid {
      margin: 0 -24px 14px;
      padding: 8px 24px 12px;
      max-width: none;
      grid-template-columns: none;
      touch-action: pan-x pan-y;
      overscroll-behavior-x: contain;
      overscroll-behavior-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .instagram-embed-card,
    .instagram-embed-card .instagram-media,
    .instagram-embed-card .instagram-media * {
      touch-action: pan-x pan-y;
    }
  }


  .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: 5;
    padding: 0 clamp(20px, 5vw, 80px) 30px;
    margin-top: -34px;
  }

  .trust-ribbon-inner {
    max-width: 1120px;
    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.78);
    box-shadow: 0 18px 52px rgba(20,24,30,0.10);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
  }

  .trust-ribbon-item {
    min-height: 70px;
    padding: 14px 16px;
    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: 12px;
    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 {
      margin-top: -20px;
      padding: 0 18px 24px;
    }

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

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


  /* ===== LIGHT CENTERED HEADER OVERRIDE ===== */
  body > nav,
  body > .nav,
  nav.nav {
    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.055) !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;
    }
  }
  /* ===== END LIGHT CENTERED HEADER OVERRIDE ===== */

  @media (max-width: 680px) {
    .concierge-whatsapp {
      right: 14px !important;
      bottom: 14px !important;
      width: 48px !important;
      height: 48px !important;
      padding: 0 !important;
      justify-content: center !important;
      border-radius: 50% !important;
      font-size: 0 !important;
      gap: 0 !important;
      box-shadow: 0 12px 30px rgba(0,0,0,0.20) !important;
    }

    .concierge-whatsapp svg {
      width: 22px !important;
      height: 22px !important;
    }
  }

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

    main,
    section,
    .hero,
    .hero-text,
    .destinos-container,
    .section-header,
    .cards-carousel-wrapper,
    .cards-carousel,
    .depoimentos-container,
    .instagram-section,
    .faq-container,
    .footer-container {
      width: 100% !important;
      max-width: 100% !important;
    }

    .hero {
      padding-left: 18px !important;
      padding-right: 18px !important;
      min-height: 720px !important;
    }

    .hero-text h1,
    .hero-title {
      width: 100% !important;
      max-width: calc(100vw - 36px) !important;
      font-size: clamp(30px, 8.4vw, 34px) !important;
      line-height: 1.04 !important;
      overflow-wrap: normal;
    }

    .hero-text p,
    .hero-subtitle,
    .section-subtitle {
      width: 100% !important;
      max-width: calc(100vw - 36px) !important;
      font-size: 15.5px !important;
      line-height: 1.55 !important;
    }

    .section-title {
      max-width: calc(100vw - 36px) !important;
      font-size: clamp(30px, 8.2vw, 36px) !important;
      line-height: 1.08 !important;
      overflow-wrap: normal;
    }

    .cards-carousel .card {
      flex-basis: min(84vw, 326px) !important;
      min-width: min(84vw, 326px) !important;
      max-width: min(84vw, 326px) !important;
    }
  }

  @media (max-width: 430px) {
    .hero-text h1,
    .hero-title {
      max-width: 300px !important;
      font-size: 31px !important;
    }

    .hero-text p,
    .hero-subtitle,
    .section-subtitle {
      max-width: 300px !important;
    }

    .section-title {
      max-width: 310px !important;
      font-size: 31px !important;
    }

    .destinos-container,
    .section-header {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  }

  /* Design polish: more refined cards and readable microcopy */
  .cards-carousel .card {
    flex: 0 0 clamp(330px, 32vw, 470px);
    min-width: clamp(330px, 32vw, 470px);
    height: 480px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(20,24,22,0.10);
  }

  .cards-carousel .card .card-overlay {
    padding: 22px;
  }

  .cards-carousel .card .card-title {
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.04;
  }

  .cards-carousel .card .card-desc {
    font-size: 13.2px;
    line-height: 1.45;
  }

  .cards-carousel .card .card-badge,
  .cards-carousel .card .card-includes span {
    font-size: 11px;
  }

  .cards-carousel .card .price-note-inline {
    font-size: 10.5px;
    color: rgba(255,255,255,0.82);
  }

  .cards-carousel .card .card-link {
    min-height: 46px;
    font-size: 14px;
  }

  .viajantes-note,
  .feature-item p,
  .trust-ribbon-item span {
    color: rgba(23,23,23,0.66);
  }

  .custom-banner,
  .dep-card,
  .vip-container,
  .faq-container {
    box-shadow: 0 16px 48px rgba(20,24,22,0.075);
  }

  @media (max-width: 960px) {
    .cards-carousel .card {
      flex-basis: min(82vw, 340px) !important;
      min-width: min(82vw, 340px) !important;
      max-width: min(82vw, 340px) !important;
      height: 450px !important;
      border-radius: 24px;
    }

    .cards-carousel .card .card-overlay {
      padding: 20px;
    }

    .cards-carousel .card .card-title {
      font-size: 21px;
    }
  }

  @media (max-width: 430px) {
    .cards-carousel .card {
      flex-basis: min(82vw, 318px) !important;
      min-width: min(82vw, 318px) !important;
      max-width: min(82vw, 318px) !important;
      height: 438px !important;
    }

    .cards-carousel .card .card-desc {
      font-size: 12.6px;
    }
  }
