:root {
    /* === PALETA ATUAL: Petróleo + Champagne + Turquesa === */
    --navy: #0a243d;                   /* Azul Petróleo */
    --navy-deep: #061626;
    --navy-soft: #1a3a55;
    --navy-rgb: 10,36,61;

    --gold: #c5a059;                   /* Dourado Champagne */
    --gold-soft: #d9b878;
    --gold-deep: #9c7e3f;
    --gold-rgb: 197,160,89;
    --gold-bright: var(--gold);        /* accent color shown in dark sections */
    --on-accent: var(--navy);          /* text color on accent buttons */

    --teal: #4ecdc4;                   /* Turquesa Leve */
    --teal-soft: #8de0d9;
    --teal-deep: #2fa39a;
    --teal-rgb: 78,205,196;

    --hero-stripe-a: #1a3a55;
    --hero-stripe-b: #245070;
    --white: #ffffff;
    --bg-soft: #f5f7fa;
    --bg-warm: #fbf9f4;
    --ink: #2d3748;
    --ink-soft: #5a6478;
    --line: #e6e9ef;
    --wa: #25d366;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 20px rgba(var(--navy-rgb),0.06);
    --shadow-md: 0 12px 40px rgba(var(--navy-rgb),0.12);
    --shadow-lg: 0 24px 60px rgba(var(--navy-rgb),0.18);
    --font-display: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Open Sans', system-ui, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    font-size: 16px;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
    text-wrap: balance;
  }
  h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
  h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
  h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
  p { margin: 0 0 1em; text-wrap: pretty; }

  .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* -------- HEADER -------- */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  }
  .site-header.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(var(--navy-rgb),0.06);
  }
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    transition: color 0.3s ease;
    letter-spacing: 0.04em;
  }
  .scrolled .logo { color: var(--navy); }
  .logo-mark {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--on-accent);
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0;
    flex-shrink: 0;
  }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-text span:last-child {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-top: 4px;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 32px;
    color: var(--white);
    transition: color 0.3s ease;
  }
  .scrolled .nav { color: var(--navy); }
  .nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0; margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
  }
  .nav a { position: relative; padding: 4px 0; }
  .nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }
  .nav a:hover::after { transform: scaleX(1); }

  .header-actions { display: flex; align-items: center; gap: 16px; }
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }
  .lang-switcher a, .lang-switcher button {
    color: var(--white);
    opacity: 1;
    padding: 4px 6px;
    transition: color 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
  }
  .lang-switcher a.active, .lang-switcher button.active { opacity: 1; color: var(--gold); }
  .lang-switcher a:hover, .lang-switcher button:hover { color: var(--gold); }
  .scrolled .lang-switcher a:not(.active), .scrolled .lang-switcher button:not(.active) { color: var(--navy); }
  .lang-divider { color: var(--white); opacity: 0.75; }
  .scrolled .lang-divider { color: var(--navy); opacity: 0.45; }

  /* -------- BUTTONS -------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--on-accent);
    box-shadow: 0 8px 24px rgba(var(--gold-rgb),0.35);
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(var(--gold-rgb),0.45);
    background: var(--gold-soft);
  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
  }
  .btn-navy {
    background: var(--navy);
    color: var(--white);
  }
  .btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--line);
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--navy); }
  .btn-lg { padding: 18px 36px; font-size: 1.05rem; }

  /* -------- HERO -------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 140px 0 80px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-image-placeholder {
    width: 100%; height: 100%;
    background:
      linear-gradient(180deg, rgba(var(--navy-rgb),0.55) 0%, rgba(var(--navy-rgb),0.92) 100%),
      repeating-linear-gradient(135deg, var(--hero-stripe-a) 0px, var(--hero-stripe-a) 18px, var(--hero-stripe-b) 18px, var(--hero-stripe-b) 36px);
    position: relative;
  }
  .hero-image-placeholder::after {
    content: 'PLACEHOLDER · van executiva em ponto turístico icônico do Rio (Cristo / Pão de Açúcar)';
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    width: 90%;
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 24px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold-bright);
    opacity: 0.6;
  }
  .hero h1 {
    color: var(--white);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 24px;
  }
  .hero h1 .accent {
    color: var(--gold-bright);
    font-style: italic;
    font-weight: 500;
  }
  .hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 620px;
    line-height: 1.55;
  }
  .hero-sub .pipe {
    color: var(--gold-bright);
    margin: 0 12px;
    font-weight: 700;
  }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 720px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .trust-badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .trust-icon {
    color: var(--teal);
    width: 28px; height: 28px;
  }
  .trust-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.3;
  }

  /* -------- SECTION COMMONS -------- */
  section { padding: 100px 0; }
  .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
  }
  .section-head.left { text-align: left; margin-left: 0; }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 16px;
  }
  .eyebrow::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--teal);
  }
  .lede {
    font-size: 1.1rem;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* -------- SERVICES BENTO -------- */
  .services {
    background: var(--white);
  }
  .bento {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .bento-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    overflow: hidden;
  }
  .bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
  }
  .bento-card.featured {
    grid-row: span 2;
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .bento-card.featured h3 { color: var(--white); }
  .bento-card.featured:hover { border-color: var(--gold); }
  .bento-card.tinted { background: var(--bg-soft); border-color: var(--bg-soft); }

  .service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(var(--teal-rgb),0.14);
    color: var(--teal-deep);
    display: grid; place-items: center;
    margin-bottom: 24px;
    flex-shrink: 0;
  }
  .bento-card.featured .service-icon {
    background: rgba(var(--teal-rgb),0.18);
    color: var(--teal);
  }
  .service-icon svg { width: 28px; height: 28px; }
  .bento-card h3 { margin-bottom: 12px; }
  .bento-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex: 1;
  }
  .bento-card.featured p { color: rgba(255,255,255,0.8); }
  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    transition: gap 0.25s ease;
  }
  .bento-card.featured .service-link { color: var(--gold-bright); }
  .service-link:hover { gap: 14px; }
  .service-link svg { width: 16px; height: 16px; }

  .featured-tag {
    position: absolute;
    top: 24px; right: 24px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-bright);
    padding: 6px 12px;
    border: 1px solid rgba(var(--gold-rgb),0.4);
    border-radius: 100px;
  }

  /* -------- WHY CHOOSE -------- */
  .why {
    background: var(--bg-soft);
    position: relative;
  }
  .why::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: pillar;
  }
  .pillar {
    counter-increment: pillar;
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--line);
  }
  .pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .pillar::before {
    content: '0' counter(pillar);
    position: absolute;
    top: 32px; right: 32px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.05em;
  }
  .pillar-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    background: var(--navy);
    color: var(--teal);
    display: grid; place-items: center;
    margin-bottom: 24px;
  }
  .pillar-icon svg { width: 32px; height: 32px; }
  .pillar h3 { font-size: 1.15rem; margin-bottom: 12px; }
  .pillar p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }

  /* -------- FLEET -------- */
  .fleet { background: var(--white); }
  .fleet-showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
  .fleet-viewer {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--navy);
  }
  .fleet-image {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(var(--navy-rgb),0.15) 0%, rgba(var(--navy-rgb),0.35) 100%),
      repeating-linear-gradient(45deg, #d8dce4 0px, #d8dce4 14px, #c7ccd6 14px, #c7ccd6 28px);
    display: grid; place-items: center;
    transition: opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
  }
  .fleet-image.active { opacity: 1; }
  .fleet-image-label {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--navy);
    background: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 100px;
    text-transform: uppercase;
  }
  .fleet-nav {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
  }
  .fleet-nav button {
    width: 36px; height: 4px;
    border-radius: 100px;
    background: rgba(255,255,255,0.4);
    transition: background 0.25s ease, width 0.25s ease;
  }
  .fleet-nav button.active { background: var(--gold-bright); width: 56px; }
  .fleet-arrows {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
  }
  .fleet-arrows button {
    pointer-events: auto;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--navy);
    display: grid; place-items: center;
    transition: background 0.2s, transform 0.2s;
  }
  .fleet-arrows button:hover { background: var(--gold); transform: scale(1.05); }

  .fleet-spec {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
  }
  .fleet-spec h3 { color: var(--white); margin-bottom: 6px; }
  .fleet-spec-meta {
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .spec-list {
    list-style: none;
    padding: 0; margin: 0 0 32px;
    display: grid;
    gap: 14px;
    flex: 1;
  }
  .spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
  }
  .check-icon {
    width: 20px; height: 20px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .fleet-tabs {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .fleet-tab {
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.25s ease;
  }
  .fleet-tab:hover { border-color: var(--gold); }
  .fleet-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .fleet-tab.active .tab-dot { background: var(--gold-bright); }

  /* -------- DESTINATIONS -------- */
  .destinations { background: var(--bg-soft); }
  .dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    background: var(--navy);
    isolation: isolate;
  }
  .dest-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(19,31,54,0) 30%, rgba(19,31,54,0.85) 100%),
      repeating-linear-gradient(110deg, #3d5378 0px, #3d5378 16px, #475e83 16px, #475e83 32px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
  }
  .dest-card:hover .dest-bg { transform: scale(1.06); }
  .dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(var(--navy-rgb),0.08) 0%, rgba(var(--navy-rgb),0.24) 42%, rgba(var(--navy-rgb),0.86) 100%),
      linear-gradient(90deg, rgba(var(--navy-rgb),0.55) 0%, rgba(var(--navy-rgb),0.12) 58%, rgba(var(--navy-rgb),0.42) 100%);
  }
  .dest-card::before {
    content: attr(data-placeholder);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    text-align: center;
    width: 80%;
    z-index: 1;
  }
  .dest-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    color: var(--white);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.65);
  }
  .dest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0,0,0,0.75);
  }
  .dest-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  .dest-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-display);
    color: rgba(255,255,255,0.85);
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  }
  .dest-price .from {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
  }
  .dest-price .amount {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
  }
  .dest-cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .dest-card:hover .dest-cta { opacity: 1; transform: translateY(0); }

  /* -------- TESTIMONIALS -------- */
  .testimonials {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .testimonials::before {
    content: '"';
    position: absolute;
    top: 40px; right: 5%;
    font-family: 'Georgia', serif;
    font-size: 24rem;
    line-height: 1;
    color: rgba(var(--gold-rgb),0.06);
    pointer-events: none;
  }
  .testimonials h2 { color: var(--white); }
  .testimonials .eyebrow { color: var(--gold-bright); }
  .testimonials .lede { color: rgba(255,255,255,0.75); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .testi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .testi-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
  }
  .stars {
    display: flex;
    gap: 4px;
    color: var(--gold-bright);
    margin-bottom: 20px;
  }
  .stars svg { width: 18px; height: 18px; }
  .testi-text {
    font-style: italic;
    color: rgba(255,255,255,0.92);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 28px;
    flex: 1;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold-bright);
    color: var(--on-accent);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .testi-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
  }
  .testi-origin {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
  }

  /* -------- FAQ -------- */
  .faq { background: var(--bg-soft); }
  .faq-wrap {
    max-width: 880px;
    margin: 0 auto;
  }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
  }
  .faq-item.open { border-color: var(--gold); }
  .faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--navy);
    transition: color 0.25s ease;
  }
  .faq-q:hover { color: var(--teal-deep); }
  .faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .faq-item.open .faq-toggle {
    background: var(--gold);
    transform: rotate(45deg);
  }
  .faq-toggle svg { width: 14px; height: 14px; color: var(--navy); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-a-inner {
    padding: 0 28px 24px;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.65;
  }

  /* -------- FINAL CTA + FORM -------- */
  .final-cta {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(var(--gold-rgb),0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .cta-grid .eyebrow { color: var(--gold-bright); }
  .cta-grid h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); }
  .cta-grid .lede { color: rgba(255,255,255,0.8); }
  .cta-perks {
    list-style: none;
    padding: 0; margin: 32px 0 36px;
    display: grid;
    gap: 14px;
  }
  .cta-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
  }
  .perk-bullet {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb),0.18);
    color: var(--gold-bright);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .perk-bullet svg { width: 12px; height: 12px; }
  .wa-large {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border-radius: 100px;
    background: var(--wa);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 32px rgba(37,211,102,0.3);
  }
  .wa-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(37,211,102,0.45);
  }

  .form-card {
    background: transparent;
    color: var(--ink);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .form-card h3 {
    margin-bottom: 6px;
    font-size: 1.4rem;
  }
  .form-card .form-sub {
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin-bottom: 28px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .form-field { display: flex; flex-direction: column; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--ink);
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
  }
  .form-field textarea { resize: vertical; min-height: 80px; }
  .form-submit {
    width: 100%;
    margin-top: 8px;
    background: var(--gold);
    color: var(--on-accent);
    padding: 16px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .form-submit:hover { background: var(--gold-soft); transform: translateY(-2px); }
  .form-disclaimer {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--ink-soft);
    text-align: center;
  }

  /* -------- FOOTER -------- */
  .site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  .footer-brand .logo { color: var(--white); margin-bottom: 20px; }
  .footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 320px; }
  .footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    gap: 12px;
  }
  .footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    transition: color 0.2s ease;
  }
  .footer-col a:hover { color: var(--gold-bright); }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
  }
  .contact-item svg {
    width: 16px; height: 16px;
    color: var(--gold-bright);
    flex-shrink: 0;
    margin-top: 3px;
  }
  .social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .social-row a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.7);
    transition: background 0.2s, color 0.2s;
  }
  .social-row a:hover { background: var(--gold-bright); color: var(--on-accent); }
  .social-row svg { width: 16px; height: 16px; }

  .badges-row {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .legal-badge {
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.65);
  }
  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
  }
  .footer-bottom a { color: inherit; }
  .footer-bottom a:hover { color: var(--gold-bright); }
  .footer-bottom-links { display: flex; gap: 24px; }

  /* -------- FLOATING WHATSAPP -------- */
  .wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--wa);
    color: var(--white);
    display: grid; place-items: center;
    z-index: 100;
    box-shadow: 0 12px 32px rgba(37,211,102,0.45);
    transition: transform 0.25s ease;
    animation: pulse 2.5s ease-in-out infinite;
  }
  .wa-float:hover { transform: scale(1.08); animation-play-state: paused; }
  .wa-float svg { width: 32px; height: 32px; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 12px 32px rgba(37,211,102,0.45), 0 0 0 18px rgba(37,211,102,0); }
  }
  .wa-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--navy);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: var(--navy);
  }
  .wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* -------- RESPONSIVE -------- */
  @media (max-width: 1024px) {
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-card.featured { grid-row: span 1; grid-column: 1 / -1; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-showcase { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    section { padding: 70px 0; }
    .nav ul { display: none; }
    .header-actions .btn { display: none; }
    .hero { min-height: 88vh; padding: 130px 0 60px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .bento { grid-template-columns: 1fr; }
    .bento-card.featured { grid-column: 1; }
    .why-grid { grid-template-columns: 1fr; gap: 20px; }
    .dest-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 0; }
    .lang-switcher { display: none; }
  }
