:root {
  --deep: #08151A;
  --petrol: #0E5C73;
  --emerald: #22B888;
  --vapor: #F4F7F7;
  --mist: rgba(244, 247, 247, 0.72);
  --nav-h: 52px;
}

html[data-theme="dark"] {
  --page: #000000;
  --page-elev: #111111;
  --page-soft: #161616;
  --ink: #f5f5f7;
  --ink-2: rgba(255, 255, 255, 0.64);
  --ink-3: rgba(255, 255, 255, 0.42);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #22B888;
  --accent-ink: #05231a;
  --card: #1d1d1f;
  --input: #1d1d1f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --nav-solid: rgba(0, 0, 0, 0.78);
  --cta: #22B888;
  --cta-ink: #05231a;
  --chip: rgba(34, 184, 136, 0.12);
}

html[data-theme="light"] {
  --page: #f5f5f7;
  --page-elev: #ffffff;
  --page-soft: #ececef;
  --ink: #1d1d1f;
  --ink-2: #6e6e73;
  --ink-3: #86868b;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.16);
  --accent: #0E5C73;
  --accent-ink: #ffffff;
  --card: #ffffff;
  --input: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --nav-solid: rgba(245, 245, 247, 0.82);
  --cta: #0E5C73;
  --cta-ink: #ffffff;
  --chip: rgba(14, 92, 115, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: var(--page);
  color: var(--ink);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.wrap-narrow { width: min(760px, calc(100% - 48px)); margin: 0 auto; }

/* —— Local nav (Vision Pro) —— */
.localnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  color: var(--vapor);
  background: linear-gradient(180deg, rgba(8, 21, 26, 0.72) 0%, rgba(8, 21, 26, 0) 100%);
  transition: background 280ms ease, color 280ms ease, border-color 280ms ease;
}
.localnav.is-solid {
  color: var(--ink);
  background: var(--nav-solid);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.localnav-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  line-height: 0;
}
.brand-logo {
  height: 28px;
  width: auto;
}
.brand-word {
  height: 18px;
  width: auto;
}
.brand .on-light { display: none; }
html[data-theme="light"] .localnav.is-solid .brand .on-dark,
html[data-theme="light"] .legal .brand .on-dark { display: none; }
html[data-theme="light"] .localnav.is-solid .brand .on-light,
html[data-theme="light"] .legal .brand .on-light { display: block; }
.localnav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.88;
  flex: 1;
}
.localnav-links a:hover { opacity: 1; }
.localnav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.theme-btn {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(244, 247, 247, 0.22);
  background: rgba(244, 247, 247, 0.08);
  color: inherit;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.localnav.is-solid .theme-btn {
  border-color: var(--line);
  background: var(--page-soft);
}
.theme-btn svg { width: 15px; height: 15px; }
.theme-btn .icon-sun { display: none; }
html[data-theme="light"] .theme-btn .icon-sun { display: block; }
html[data-theme="light"] .theme-btn .icon-moon { display: none; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 980px;
  background: var(--emerald);
  color: #05231a;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.localnav.is-solid .btn-cta {
  background: var(--cta);
  color: var(--cta-ink);
}
.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

/* —— Hero (aprovado) —— */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  background: #08151A;
  cursor: grab;
  color: var(--vapor);
}
#hero:active { cursor: grabbing; }
#globe-layer, #flights {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
#globe-layer { z-index: 1; pointer-events: none; }
#flights { z-index: 2; pointer-events: none; }


.hero-copy {
    position: absolute;
    z-index: 3;
    left: 36px;
    right: 36px;
    top: 162px;
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    pointer-events: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    align-content: flex-end;
}

.hero-copy h1 {
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.04em;
  max-width: 16ch;
  line-height: 1.05;
  color: var(--vapor);
}
.hero-copy p {
  font-size: 14px;
  color: var(--mist);
  max-width: 36ch;
  line-height: 1.55;
}
.scroll-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 247, 247, 0.45);
}

/* —— Capítulos (Vision Pro) —— */
.statement {
  padding: 72px 28px 56px;
}
.statement p {
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2.35rem);
  letter-spacing: -0.036em;
  line-height: 1.22;
  text-align: center;
  max-width: 26ch;
  margin: 0 auto 22px;
}
.statement p:last-child { margin-bottom: 0; }
.statement .soft {
  color: var(--ink-2);
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 34ch;
  margin-top: 6px;
}

.chapter {
  padding: 108px 0 120px;
}
.chapter-head {
  text-align: center;
  margin-bottom: 56px;
}
.kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.chapter-head h2,
.chapter h2.display {
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.chapter-head h2 span { display: block; }
.lede {
  margin: 22px auto 0;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 38em;
}
.chapter-head .lede { text-align: center; }

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.look-card {
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.look-shot {
  flex: 1;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.look-copy {
  padding: 28px 28px 32px;
}
.look-copy h3 {
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.look-copy p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-copy h2 {
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.split-copy p { color: var(--ink-2); font-size: 17px; line-height: 1.6; }
.split-copy ul {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 10px;
}
.split-copy li {
  color: var(--ink-2);
  font-size: 15px;
  padding-left: 18px;
  position: relative;
}
.split-copy li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.flow {
  margin: 48px auto 0;
  max-width: 720px;
  display: grid;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--ink-2);
}
.flow div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
}
.flow .now {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background: var(--chip);
}

.persona-grid,
.module-strip,
.value-grid {
  display: grid;
  gap: 14px;
}
.persona-grid { grid-template-columns: repeat(4, 1fr); }
.module-strip { grid-template-columns: repeat(4, 1fr); margin-top: 40px; }
.value-grid { grid-template-columns: 1fr 1fr; margin-top: 40px; }
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px;
}
.tile h3 { font-weight: 600; font-size: 18px; letter-spacing: -0.03em; margin-bottom: 8px; }
.tile p { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.tile .who {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.quote {
  margin: 56px auto 0;
  max-width: 820px;
  padding: 36px 40px;
  border-left: 3px solid var(--accent);
  background: var(--page-soft);
  border-radius: 0 20px 20px 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.35;
}
.quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
}

.offer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin-top: 40px;
}
.offer-main, .offer-side {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
}
.offer-main h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.offer-main p { color: var(--ink-2); line-height: 1.6; }
.offer-main ul { margin: 22px 0 0; padding-left: 18px; color: var(--ink-2); display: grid; gap: 8px; }
.price {
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.04em;
}
.price small {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-3);
}
.offer-side .meta { margin-top: 18px; color: var(--ink-2); font-size: 14px; line-height: 1.6; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 980px;
  background: var(--cta);
  color: var(--cta-ink);
  font-size: 14px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 980px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

form.lead {
  display: grid;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.lead input, .lead select, .lead textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--input);
}
.lead textarea { min-height: 110px; resize: vertical; }
.lead .ok {
  display: none;
  color: var(--accent);
  font-size: 14px;
}
.lead.is-sent .ok { display: block; }
.lead.is-sent button { display: none; }

.legal {
  padding: 56px 0 72px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.6;
}
.legal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: 13px;
}
.legal-top .brand-logo { height: 32px; }
.legal-top .brand-word { height: 20px; }
.legal p + p { margin-top: 10px; }

/* —— Shots CSS (produto, sem foto de produto) —— */
.shot {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 280px at 80% 0%, rgba(34, 184, 136, 0.16), transparent 55%),
    radial-gradient(600px 240px at 10% 100%, rgba(14, 92, 115, 0.22), transparent 50%),
    linear-gradient(180deg, #08151A, #0b1e26);
}
html[data-theme="light"] .shot {
  background:
    radial-gradient(800px 280px at 80% 0%, rgba(14, 92, 115, 0.12), transparent 55%),
    radial-gradient(600px 240px at 10% 100%, rgba(34, 184, 136, 0.1), transparent 50%),
    linear-gradient(180deg, #e8eef1, #d7e4ea);
}
.shot-frame {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: min(86%, 340px);
  background: rgba(8, 21, 26, 0.72);
  border: 1px solid rgba(244, 247, 247, 0.12);
  border-radius: 16px 16px 0 0;
  padding: 14px 14px 22px;
  backdrop-filter: blur(12px);
  color: #F4F7F7;
  font-size: 11px;
}
html[data-theme="light"] .shot-frame {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
}
.shot-bar {
  display: flex;
  justify-content: space-between;
  color: inherit;
  opacity: 0.55;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bars { display: grid; gap: 8px; }
.bars i {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, #22B888, #0E5C73);
}
.row-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(244, 247, 247, 0.08);
  font-size: 11px;
}
html[data-theme="light"] .row-line { border-bottom-color: rgba(0, 0, 0, 0.06); }
.check { color: #22B888; }

.bg-soft { background: var(--page-soft); }

.scroll-scene {
  position: relative;
  height: 240vh;
  background: #08151A;
}
.scroll-scene-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
#visao-film .scroll-scene-pin::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22vh;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--page));
}
.scroll-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.scroll-scene-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 52% at 50% 46%, rgba(8, 21, 26, .52), rgba(8, 21, 26, .78));
}
.is-bright .scroll-scene-veil { display: none; }
.scene-copy {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px;
  pointer-events: none;
  color: #fff;
}
.is-bright .scene-copy {
  justify-content: flex-start;
  padding-top: 18vh;
  color: #1d1d1f;
}
.scene-copy .kicker {
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
}
.is-bright .scene-copy .kicker { color: rgba(29, 29, 31, .55); }
.scene-copy h2 {
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.042em;
  line-height: 1.12;
  max-width: 13em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0,0,0,.55);
}
.is-bright .scene-copy h2 {
  color: #1d1d1f;
  text-shadow: none;
  max-width: 11em;
  font-size: clamp(1.85rem, 4.4vw, 3.35rem);
}
.scene-copy .line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.06em;
}
.scene-copy .word {
  display: block;
  transform: translate3d(0, 110%, 0);
  will-change: transform;
}
.scene-pause {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.15);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}

/* —— Carrossel lateral (Vision Pro) —— */
.chapter.rail-block { padding: 72px 0 88px; }
.rail-block .chapter-head { margin-bottom: 20px; }
.rail-intro {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto 36px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.55;
}
.rail-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(24px, calc((100vw - 1120px) / 2));
  padding: 0 max(24px, calc((100vw - 1120px) / 2)) 8px;
  scrollbar-width: none;
}
.rail-track::-webkit-scrollbar { display: none; }
.rail-card {
  flex: 0 0 min(78vw, 540px);
  scroll-snap-align: start;
}
.rail-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 28px;
  overflow: hidden;
  background: #08151A;
}
.rail-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rail-media .card-pause {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.25);
  color: #fff;
  cursor: pointer;
}
.rail-caption {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
}
.rail-caption strong {
  color: var(--ink);
  font-weight: 600;
}
.rail-body {
  min-height: 280px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 32px 28px;
}
.rail-body .who {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 36px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.rail-body .who .n {
  color: var(--accent);
  font-size: 36px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.rail-body h3 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
}
.rail-body p { color: var(--ink-2); line-height: 1.55; }
.rail-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px max(24px, calc((100vw - 1120px) / 2)) 0;
}
.rail-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--page-soft);
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
}
.rail-nav button:disabled { opacity: .35; cursor: default; }

@media (prefers-reduced-motion: reduce) {
  .scroll-scene { height: auto; min-height: 100vh; }
  .scroll-scene-pin { position: relative; height: auto; min-height: 100vh; }
  .scene-copy .word { transform: none; }
}

@media (max-width: 960px) {
  .look-grid, .split, .persona-grid, .module-strip, .value-grid, .offer {
    grid-template-columns: 1fr;
  }
  .split.reverse { direction: ltr; }
  .localnav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .localnav.is-open .localnav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--nav-solid);
    backdrop-filter: blur(20px);
    padding: 16px 24px 22px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
}
@media (max-width: 860px) {
  .hero-copy {
    flex-direction: column;
    align-items: flex-start;
    bottom: 28px;
    left: 20px;
    right: 20px;
  }
  .statement { padding: 88px 20px 24px; }
  .statement p { margin-bottom: 56px; }
  .chapter { padding: 72px 0 80px; }
  .wrap, .wrap-narrow { width: min(1120px, calc(100% - 40px)); }
}
