/* ============================================================
   BS ADVENTURE — Landing page
   Aventura intensa • alto contraste • dinâmico
   Marca: azul + amarelo + branco (vermelho de apoio/urgência)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --indigo-900: #0a0c1a;
  --indigo-800: #0c1330;
  --indigo-700: #111c40;
  --indigo-600: #16265a;
  --blue:        #1466d8;
  --blue-bright: #2da6ff;
  --yellow:      #ffd21e;
  --yellow-deep: #f5a623;
  --red:         #e4232f;
  --red-deep:    #b3141f;

  --ink:    #ffffff;
  --soft:   #c3cfe4;
  --muted:  #8194b4;
  --line:   rgba(255,255,255,.10);
  --line-2: rgba(255,255,255,.06);

  /* surfaces */
  --bg:    #07090f;
  --panel: #0b1024;
  --panel-2: #0e1530;
  --card:  #101936;

  /* accent (tweakable) */
  --accent: var(--yellow);
  --accent-ink: #11150a; /* readable text on accent */

  --container: 1240px;
  --radius: 16px;
  --radius-sm: 10px;

  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", system-ui, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: 15px; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--accent);
  transform: skewX(-20deg);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.section-title { font-size: clamp(34px, 5.2vw, 68px); }
.section-title .stroke {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
  paint-order: stroke fill;
}
.section-title em { color: var(--accent); font-style: italic; }
.lead { color: var(--soft); font-size: clamp(16px, 1.5vw, 19px); max-width: 60ch; }

/* ---------- Grain / texture overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* topographic / motion lines background helper */
.topo {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(20,102,216,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(20,102,216,.14), transparent 55%);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: 17px; line-height: 1;
  padding: var(--pad-y) var(--pad-x);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--wa {
  background: linear-gradient(180deg, #2fd36a, #19af50);
  color: #06210f;
  box-shadow: 0 10px 30px -10px rgba(37,211,102,.6);
}
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(37,211,102,.75); }
.btn--accent {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 10px 30px -12px var(--accent);
}
.btn--accent:hover { transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--ink);
  clip-path: none; border-radius: 999px;
  font-style: normal;
}
.btn--ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.25); }
.btn--lg { --pad-y: 19px; --pad-x: 34px; font-size: 20px; }
.btn--block { width: 100%; justify-content: center; }

/* small pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  color: var(--soft);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7,9,15,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__badge {
  width: 46px; height: 46px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--yellow);
  box-shadow: 0 0 0 2px var(--indigo-900), 0 6px 18px -6px rgba(0,0,0,.7);
  flex: none;
}
.brand__wm { display: flex; flex-direction: column; line-height: .82; }
.brand__wm b {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 24px; letter-spacing: .02em; text-transform: uppercase;
  color: #fff; white-space: nowrap;
}
.brand__wm b i { color: var(--blue-bright); font-style: italic; }
.brand__wm span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11.5px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--yellow); padding-left: 2px;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-weight: 600; font-size: 15px; color: var(--soft);
  transition: color .2s; position: relative; padding: 6px 0;
}
.nav__links a:hover { color: #fff; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--line); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: #fff; position: relative; transition: .25s;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 76px 0 0; z-index: 95;
  background: rgba(7,9,15,.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; padding: 28px 24px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: .28s var(--ease);
}
body.menu-open .mobile-menu { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 28px; padding: 14px 0; border-bottom: 1px solid var(--line-2); }

/* ============================================================
   HERO (shared)
   ============================================================ */
.hero { display: none; position: relative; overflow: hidden; }
body[data-hero="a"] .hero--a,
body[data-hero="b"] .hero--b,
body[data-hero="c"] .hero--c { display: block; }

.hero__eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; line-height: .9; letter-spacing: -.01em;
  font-size: clamp(46px, 8vw, 104px);
  text-wrap: balance;
}
.hero h1 .y { color: var(--yellow); }
.hero h1 .b { color: var(--blue-bright); }
.hero__sub { color: var(--soft); font-size: clamp(16px, 1.7vw, 20px); max-width: 52ch; margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
}
.trust__item { display: flex; align-items: center; gap: 9px; color: var(--soft); font-size: 14px; font-weight: 600; }
.trust__item svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.trust__sep { width: 1px; height: 20px; background: var(--line); }

/* --- Hero A: cinematic full-bleed --- */
.hero--a { min-height: 100svh; display: none; }
body[data-hero="a"] .hero--a { display: flex; align-items: flex-end; }
.hero--a .hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero--a .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.hero--a .hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,9,15,.55) 0%, rgba(7,9,15,.1) 30%, rgba(7,9,15,.5) 62%, rgba(7,9,15,.97) 100%),
    linear-gradient(90deg, rgba(7,9,15,.8) 0%, rgba(7,9,15,.1) 55%);
}
.hero--a .container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 64px; }
.hero--a .hero__inner { max-width: 880px; }
.hero--a .hero__actions { margin-bottom: 40px; }
.hero--a .trust { padding-top: 26px; border-top: 1px solid var(--line); max-width: 760px; }

/* --- Hero B: split diagonal --- */
.hero--b { min-height: 100svh; }
body[data-hero="b"] .hero--b { display: grid; }
.hero--b .hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 100svh; }
.hero--b .hero__left {
  position: relative; z-index: 2;
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(20,102,216,.25), transparent 60%),
    linear-gradient(180deg, var(--indigo-800), var(--indigo-900));
  display: flex; align-items: center;
  padding: 120px clamp(28px, 5vw, 90px) 80px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 90px) 100%, 0 100%);
  margin-right: -90px;
}
.hero--b .hero__right { position: relative; }
.hero--b .hero__right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero--b .hero__right::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,9,15,.6)); }
.hero--b .hero__inner { max-width: 600px; }
.hero--b .trust { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }

/* --- Hero C: typographic blast --- */
.hero--c { min-height: 100svh; padding-top: 76px; }
body[data-hero="c"] .hero--c { display: flex; align-items: center; }
.hero--c .hero__bg-type {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; font-size: 30vw; line-height: .8; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.05);
  z-index: 0; pointer-events: none; user-select: none;
}
.hero--c .hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; width: 100%; padding-block: 60px; }
.hero--c .hero__media { position: relative; }
.hero--c .hero__media .frame {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8);
  transform: rotate(1.5deg);
}
.hero--c .hero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 30%; }
.hero--c .hero__media .tagfloat {
  position: absolute; left: -16px; bottom: 36px; z-index: 3;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase;
  letter-spacing: .04em; font-size: 16px; padding: 12px 20px;
  clip-path: polygon(8px 0,100% 0,calc(100% - 8px) 100%,0 100%);
  box-shadow: 0 14px 30px -10px rgba(228,35,47,.6);
  transform: rotate(-3deg);
}
.hero--c .hero__inner { max-width: 620px; }
.hero--c .trust { margin-top: 34px; }

/* ============================================================
   Stats strip
   ============================================================ */
.stats { background: var(--accent); color: var(--accent-ink); position: relative; z-index: 3; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 34px 0; }
.stat { text-align: center; padding: 6px 14px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 2px; background: rgba(0,0,0,.18); }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: clamp(34px, 4.6vw, 56px); line-height: 1; }
.stat span { font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: .08em; opacity: .82; }

/* ============================================================
   Roteiros
   ============================================================ */
.roteiros { background: linear-gradient(180deg, var(--bg), var(--panel)); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; }
.sec-head .lead { margin-top: 16px; }

.roteiro-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.rcard {
  position: relative; background: linear-gradient(180deg, var(--card), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px 28px; overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.rcard::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.rcard:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.22); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.rcard:hover::before { transform: scaleX(1); }
.rcard.is-featured { border-color: rgba(255,210,30,.5); }
.rcard__tag {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 12px; letter-spacing: .06em; color: var(--accent-ink); background: var(--accent);
  padding: 5px 11px; border-radius: 6px;
}
.rcard__time {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 52px; line-height: 1; color: #fff;
}
.rcard__time small { font-size: 20px; color: var(--muted); font-style: italic; }
.rcard h3 { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 25px; margin: 10px 0 6px; }
.rcard p { color: var(--soft); font-size: 15px; min-height: 66px; }
.rcard__list { display: flex; flex-direction: column; gap: 9px; margin: 18px 0 22px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.rcard__list li { display: flex; gap: 10px; align-items: center; font-size: 14.5px; color: var(--soft); }
.rcard__list svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.rcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rcard__price small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.rcard__price b { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 26px; }
.rcard__price b span { font-size: 15px; color: var(--muted); }

.roteiro-note { margin-top: 26px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; }
.roteiro-note svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ============================================================
   Experiência (band)
   ============================================================ */
.exp { background: var(--panel); }
.exp__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.exp__media { position: relative; }
.exp__media .ph {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  clip-path: polygon(0 0,100% 0,100% calc(100% - 40px),calc(100% - 40px) 100%,0 100%);
}
.exp__media .ph img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.exp__media .badge-card {
  position: absolute; right: -14px; bottom: 28px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 20px; box-shadow: 0 24px 50px -24px rgba(0,0,0,.9);
  display: flex; align-items: center; gap: 14px;
}
.exp__media .badge-card b { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 30px; line-height: 1; color: var(--yellow); }
.exp__media .badge-card span { font-size: 12.5px; color: var(--soft); text-transform: uppercase; letter-spacing: .06em; }
.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature { display: flex; gap: 16px; }
.feature__ico {
  width: 48px; height: 48px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(20,102,216,.16); border: 1px solid rgba(45,166,255,.3);
}
.feature__ico svg { width: 24px; height: 24px; color: var(--blue-bright); }
.feature h4 { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 19px; margin-bottom: 3px; }
.feature p { color: var(--soft); font-size: 14.5px; }

/* ============================================================
   Veículos
   ============================================================ */
.veiculos { background: linear-gradient(180deg, var(--panel), var(--bg)); }
.vcard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.vcard {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--card);
  display: flex; flex-direction: column;
}
.vcard__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #0a1020; }
.vcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.vcard:hover .vcard__img img { transform: scale(1.05); }
.vcard__kicker {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: 12.5px; letter-spacing: .06em; padding: 6px 12px; border-radius: 6px;
  background: rgba(7,9,15,.7); backdrop-filter: blur(6px); border: 1px solid var(--line); color: var(--accent);
}
.vcard__body { padding: 24px 26px 28px; }
.vcard__body h3 { font-family: var(--font-display); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 28px; }
.vcard__body p { color: var(--soft); font-size: 15px; margin-top: 8px; }
.vcard__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.spec { font-size: 13px; font-weight: 600; color: var(--soft); padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); }

/* ============================================================
   Depoimentos
   ============================================================ */
.depo { background: var(--bg); }
.rating-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.rating-head .big { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 54px; line-height: 1; color: var(--yellow); }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; color: var(--yellow); }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.tcard {
  background: linear-gradient(180deg, var(--card), var(--panel-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 16px;
}
.tcard .qmark { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 56px; line-height: .5; color: var(--accent); height: 26px; }
.tcard p { color: #e7edf8; font-size: 15.5px; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; }
.tcard__av { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-style: italic; color: var(--accent-ink); background: var(--accent); font-size: 18px; }
.tcard__who b { font-size: 15px; }
.tcard__who span { display: block; font-size: 12.5px; color: var(--muted); }
.tcard .gicon { margin-left: auto; width: 22px; height: 22px; opacity: .8; }

/* ============================================================
   Segurança
   ============================================================ */
.seg { background: linear-gradient(180deg, var(--bg), var(--panel)); }
.seg__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.scard { text-align: left; padding: 26px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.02); }
.scard__ico { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,210,30,.12); border: 1px solid rgba(255,210,30,.28); margin-bottom: 16px; }
.scard__ico svg { width: 26px; height: 26px; color: var(--yellow); }
.scard h4 { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 19px; margin-bottom: 6px; }
.scard p { color: var(--soft); font-size: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--panel); }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.qa { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); overflow: hidden; transition: border-color .2s, background .2s; }
.qa.open { border-color: rgba(255,210,30,.4); background: rgba(255,210,30,.04); }
.qa__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 20px 22px; font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 19px; }
.qa__q .ic { width: 28px; height: 28px; flex: none; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); position: relative; transition: .25s; }
.qa__q .ic::before, .qa__q .ic::after { content: ""; position: absolute; background: var(--accent); transition: .25s; }
.qa__q .ic::before { width: 12px; height: 2px; }
.qa__q .ic::after { width: 2px; height: 12px; }
.qa.open .qa__q .ic { background: var(--accent); border-color: var(--accent); }
.qa.open .qa__q .ic::before, .qa.open .qa__q .ic::after { background: var(--accent-ink); }
.qa.open .qa__q .ic::after { transform: scaleY(0); }
.qa__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.qa__a p { padding: 0 22px 22px; color: var(--soft); font-size: 15px; }

/* ============================================================
   CTA final
   ============================================================ */
.cta-final { position: relative; overflow: hidden; background: var(--indigo-900); }
.cta-final .hero__bg { position: absolute; inset: 0; }
.cta-final .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; opacity: .35; }
.cta-final .hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,15,.7), rgba(7,9,15,.92)); }
.cta-final .container { position: relative; z-index: 2; text-align: center; }
.cta-final h2 { font-size: clamp(38px, 6vw, 84px); }
.cta-final .lead { margin: 22px auto 0; }
.cta-final .hero__actions { justify-content: center; margin-top: 38px; }
.cta-final .trust { justify-content: center; margin-top: 40px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #06080d; border-top: 1px solid var(--line); padding: 60px 0 36px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { margin-bottom: 18px; }
.footer p { color: var(--muted); font-size: 14.5px; max-width: 34ch; }
.footer h5 { font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase; font-size: 15px; letter-spacing: .08em; color: var(--soft); margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; transition: .2s; }
.footer__social a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line-2); color: var(--muted); font-size: 13px; }
.footer__bottom .selos { display: flex; gap: 18px; align-items: center; }
.footer__bottom .selo { display: flex; align-items: center; gap: 7px; }
.footer__bottom .selo svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: flex; align-items: center; gap: 11px;
  background: linear-gradient(180deg, #2fd36a, #19af50); color: #06210f;
  font-family: var(--font-display); font-weight: 700; font-style: italic; text-transform: uppercase;
  padding: 14px 20px; border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.wa-float svg { width: 24px; height: 24px; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float .lbl { font-size: 15px; }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; }
  .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .nav__links, .nav__cta .btn--wa span { display: none; }
  .nav__toggle { display: flex; }
  .hero--b .hero__grid { grid-template-columns: 1fr; }
  .hero--b .hero__left { clip-path: none; margin-right: 0; }
  .hero--b .hero__right { min-height: 42vh; }
  .hero--c .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero--c .hero__media { order: -1; max-width: 460px; }
  .exp__grid, .faq__grid { grid-template-columns: 1fr; }
  .exp__media { max-width: 460px; }
  .seg__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
/* ============================================================
   Pôr do Sol card
   ============================================================ */
.rcard--sunset { border-color: rgba(255,140,0,.4); }
.rcard--sunset::before { background: linear-gradient(90deg, #ff8c00, transparent 70%); }
.rcard--sunset .rcard__time { color: #ff8c00; }
.rcard--sunset .rcard__time--sm { font-size: 36px; line-height: 1.1; }
.rcard--sunset .rcard__time--sm small { font-size: 15px; }
.rcard--sunset .rcard__tag { background: linear-gradient(135deg, #ff8c00, #e05000); color: #fff; }
.rcard--sunset .rcard__list svg { color: #ff8c00; }

/* ============================================================
   Incluso nos passeios
   ============================================================ */
.incluso { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0; }
.incluso__label { text-align: center; margin-bottom: 36px; }
.incluso__label small { text-transform: uppercase; letter-spacing: .08em; font-size: 12.5px; font-weight: 700; color: var(--accent); }
.incluso__label h3 { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: clamp(22px, 3vw, 30px); margin-top: 8px; }
.incluso__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.incluso__item { display: flex; align-items: flex-start; gap: 18px; }
.incluso__ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,210,30,.08); border: 1px solid rgba(255,210,30,.18); display: flex; align-items: center; justify-content: center; flex: none; }
.incluso__ico svg { width: 22px; height: 22px; color: var(--accent); }
.incluso__text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.incluso__text span { color: var(--soft); font-size: 14px; line-height: 1.55; }

/* ============================================================
   Galeria (placeholder)
   ============================================================ */
.galeria { background: var(--bg); }
.galeria__placeholder { border: 2px dashed var(--line); border-radius: var(--radius); padding: 64px 32px; text-align: center; }
.galeria__ico { width: 58px; height: 58px; border-radius: 16px; background: rgba(255,210,30,.08); border: 1px solid rgba(255,210,30,.18); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.galeria__ico svg { width: 28px; height: 28px; color: var(--accent); }
.galeria__placeholder h3 { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 24px; margin-bottom: 10px; }
.galeria__placeholder p { color: var(--soft); font-size: 15px; max-width: 460px; margin: 0 auto 24px; }

/* ============================================================
   Carrossel 3D
   ============================================================ */
.galeria { padding-bottom: 0; overflow: hidden; }
.galeria .sec-head { margin-bottom: 44px; }

.carousel-wrap { position: relative; }

.carousel {
  position: relative;
  width: 100%;
  height: clamp(220px, 44vw, 500px);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.carousel.is-grabbing { cursor: grabbing; }

.carousel__slide {
  position: absolute;
  top: 50%; left: 50%;
  width: min(58%, 780px);
  will-change: transform, opacity;
  transition:
    transform .58s cubic-bezier(.4,0,.2,1),
    opacity   .58s ease,
    filter    .58s ease;
  pointer-events: none;
}
.carousel__slide.is-active { pointer-events: auto; cursor: default; }
.carousel__slide.is-adj    { pointer-events: auto; cursor: pointer; }

.carousel__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px -16px rgba(0,0,0,.92);
  transition: box-shadow .35s ease, transform .18s cubic-bezier(.22,.68,0,1.2);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
}
.carousel__slide.is-active .carousel__img-wrap {
  box-shadow:
    0 32px 80px -16px rgba(0,0,0,.96),
    0 0 0 1.5px rgba(255,210,30,.18);
}
.carousel__slide.is-active:hover .carousel__img-wrap {
  box-shadow:
    0 32px 80px -16px rgba(0,0,0,.96),
    0 0 0 2px rgba(255,210,30,.55),
    0 0 80px -8px rgba(255,210,30,.14);
}

.carousel__slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform .5s ease;
}
.carousel__slide.is-adj:hover img { transform: scale(1.04); }

.carousel__veil {
  position: absolute; inset: 0;
  border-radius: 16px;
  background: rgba(8,10,22,.44);
  transition: opacity .45s ease;
  pointer-events: none;
}
.carousel__slide.is-active .carousel__veil { opacity: 0; }

/* Counter */
.carousel__counter {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display);
  font-weight: 800; font-style: italic; font-size: 21px;
  color: rgba(255,255,255,.92); z-index: 20;
  pointer-events: none;
  text-shadow: 0 2px 18px rgba(0,0,0,.85);
  letter-spacing: -.01em;
}
.carousel__counter b { color: var(--accent); }

/* Nav buttons */
.carousel__btn {
  position: absolute; top: 50%; z-index: 20;
  transform: translateY(calc(-50% - 38px));
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(8,10,22,.62);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,.16);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .22s, border-color .22s, box-shadow .22s, transform .22s;
}
.carousel__btn:hover {
  background: rgba(255,210,30,.22);
  border-color: rgba(255,210,30,.55);
  box-shadow: 0 0 28px rgba(255,210,30,.18);
  transform: translateY(calc(-50% - 38px)) scale(1.1);
}
.carousel__btn svg { width: 20px; height: 20px; pointer-events: none; }
.carousel__btn--prev { left: clamp(10px, 2.5vw, 36px); }
.carousel__btn--next { right: clamp(10px, 2.5vw, 36px); }

/* Progress */
.carousel__progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,.07); z-index: 20;
}
.carousel__progress-bar {
  height: 100%; background: var(--accent); width: 0%;
}

/* Thumbs */
.carousel__thumbs {
  display: flex; gap: 7px;
  padding: 13px 20px 14px;
  overflow-x: auto; scrollbar-width: none;
  background: rgba(0,0,0,.38);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.carousel__thumbs::-webkit-scrollbar { display: none; }
.carousel__thumb {
  flex: none; width: 74px; height: 52px;
  border-radius: 7px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  opacity: .42;
  transition: opacity .2s, border-color .2s, transform .22s;
}
.carousel__thumb:hover { opacity: .78; transform: scale(1.07); }
.carousel__thumb.is-active { opacity: 1; border-color: var(--accent); transform: scale(1.12); }
.carousel__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

/* Loading */
.carousel__loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.carousel__spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.12);
  border-top-color: var(--accent);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Hint */
.carousel__hint {
  text-align: center; color: var(--muted); font-size: 13px;
  padding: 10px 0 14px; display: none;
}

@media (max-width: 900px) {
  .carousel__slide { width: min(76%, 620px); }
  .carousel { height: clamp(200px, 56vw, 420px); }
}
@media (max-width: 600px) {
  .carousel__slide { width: 88%; }
  .carousel__btn { width: 38px; height: 38px; }
  .carousel__hint { display: block; }
  .carousel { height: clamp(180px, 68vw, 360px); }
}

@media (max-width: 760px) {
  .incluso__grid { grid-template-columns: 1fr; }
  .roteiro-grid, .depo-grid, .vcard-grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 24px 8px; }
  .stat:nth-child(3)::before, .stat:nth-child(odd)::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .wa-float .lbl { display: none; }
  .wa-float { padding: 15px; }
  .hero--a .container { padding-bottom: 40px; }
}
