@font-face {
  font-family: "TSW Footer Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2") format("woff2");
}

@font-face {
  font-family: "TSW Footer Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2") format("woff2");
}

:root {
  --black: #070707;
  --black-soft: #0d0d0f;
  --black-raised: #141416;
  --white: #ffffff;
  --paper: #f5f6f8;
  --paper-warm: #f8f6f1;
  --ink: #111319;
  --muted: #626773;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(13, 27, 50, 0.14);
  --black-accent: #050505;
  --graphite: #20242b;
  --navy: #00284b;
  --navy-deep: #000e33;
  --blue: #1854ff;
  --cyan: #01e5ff;
  --pink: #e0007f;
  --pink-hover: #cc00a1;
  --success: #2ad47b;
  --shell: min(1180px, calc(100% - 48px));
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

section {
  position: relative;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.shell {
  container-type: inline-size;
  width: var(--shell);
  margin-inline: auto;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--black-accent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2,
.faq-heading h2,
.documents-copy h2,
.curation-intro h2,
.security-copy h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.4vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.section-heading > p,
.section-heading-dark > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-heading-dark > p {
  color: rgba(255, 255, 255, 0.67);
}

.button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 0.28s var(--ease);
}

.button:hover {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 3px), 0);
}

.button:hover > svg:last-child,
.button:hover > i:last-child svg,
.button:hover > i:last-child {
  transform: translateX(3px);
}

.button-primary {
  overflow: hidden;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(249, 9, 144, 0.24);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.3) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: buttonShine 4.8s ease-in-out 3.5s infinite;
}

.button-primary > * {
  position: relative;
  z-index: 1;
}

.button-primary:hover {
  background: var(--pink-hover);
  box-shadow: 0 18px 48px rgba(249, 9, 144, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: var(--cyan);
  background: rgba(1, 229, 255, 0.08);
}

.button-large {
  min-height: 62px;
  padding-inline: 28px;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  fill: #32d776;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-weight: 750;
  transition: gap 0.25s ease, color 0.25s ease;
}

.text-link:hover {
  gap: 14px;
  color: var(--white);
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.text-link-dark {
  color: var(--navy);
}

.text-link-dark:hover {
  color: var(--pink-hover);
}

.text-link-light:hover {
  color: var(--white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Intro de parceria */
.intro-overlay {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 24px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 48%, rgba(24, 84, 255, 0.2), transparent 32%),
    radial-gradient(circle at 34% 52%, rgba(1, 229, 255, 0.1), transparent 28%),
    #050505;
  animation: introExit 2.45s var(--ease) forwards;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  inset: -80%;
  background: conic-gradient(from 90deg, transparent, rgba(1, 229, 255, 0.08), transparent 23%);
  animation: introOrbit 5s linear infinite;
}

.intro-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.intro-tsw {
  width: 112px;
  height: 112px;
  object-fit: contain;
  opacity: 0;
  transform: translateX(-42px) scale(0.82);
  animation: introTsw 1s var(--ease) 0.18s forwards;
}

.intro-plus {
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 300;
  opacity: 0;
  transform: scale(0);
  animation: introPlus 0.6s var(--ease) 0.7s forwards;
}

.intro-cashme-wrap {
  display: grid;
  width: 210px;
  min-height: 76px;
  place-items: center;
  padding: 19px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(1, 229, 255, 0.2), 0 18px 70px rgba(24, 84, 255, 0.15);
  opacity: 0;
  transform: translateX(42px) scale(0.82);
  animation: introCashme 1s var(--ease) 0.28s forwards;
}

.intro-cashme {
  width: 100%;
  height: auto;
}

.intro-caption {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  animation: introCaption 0.8s ease 0.92s forwards;
}

.intro-overlay.is-finished {
  pointer-events: none;
}

/* Header */
.scroll-progress {
  position: fixed;
  z-index: 720;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 14px rgba(1, 229, 255, 0.7);
}

.site-header {
  position: fixed;
  z-index: 700;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.35s var(--ease), background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  padding: 7px 0;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px) saturate(1.25);
}

.header-inner {
  display: flex;
  width: var(--shell);
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.header-brand {
  position: relative;
  z-index: 2;
  display: block;
  width: 64px;
  height: 64px;
}

.header-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}

.header-brand:hover img {
  transform: scale(1.05);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.primary-nav > a:not(.header-cta) {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.87rem;
  font-weight: 600;
  transition: color 0.24s ease;
}

.primary-nav > a:not(.header-cta)::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.primary-nav > a:not(.header-cta):hover {
  color: var(--white);
}

.primary-nav > a:not(.header-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.header-cta:hover {
  border-color: var(--cyan);
  background: rgba(1, 229, 255, 0.08);
  transform: translateY(-2px);
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: 100svh;
  padding: 108px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 38%, rgba(24, 84, 255, 0.19), transparent 33%),
    radial-gradient(circle at 18% 18%, rgba(1, 229, 255, 0.075), transparent 25%),
    linear-gradient(135deg, #050505 0%, #09090d 52%, #001124 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -20%;
  bottom: -62%;
  width: 78vw;
  height: 78vw;
  border: 1px solid rgba(1, 229, 255, 0.13);
  border-radius: 50%;
  animation: heroRing 18s linear infinite;
}

.hero-grid {
  position: absolute;
  inset: -72px;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  animation: gridDrift 18s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-orb-one {
  top: 25%;
  left: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(1, 229, 255, 0.22);
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-two {
  top: 14%;
  right: 7%;
  width: 14px;
  height: 14px;
  background: var(--cyan);
  box-shadow: 0 0 38px rgba(1, 229, 255, 0.95);
  animation: orbFloat 6s ease-in-out 1s infinite alternate-reverse;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100svh - 108px);
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: clamp(46px, 6vw, 90px);
  align-items: center;
}

.hero-copy {
  padding: 24px 0 72px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 5.4cqw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
  text-shadow: 0 0 50px rgba(1, 229, 255, 0.18);
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.71);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.cashme-signature {
  display: flex;
  max-width: 650px;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-weight: 650;
}

.cashme-logo-panel {
  display: grid;
  width: 164px;
  min-height: 52px;
  flex: 0 0 auto;
  place-items: center;
  padding: 13px 16px;
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 12px 50px rgba(24, 84, 255, 0.15);
}

.cashme-logo-panel img {
  width: 100%;
  height: auto;
}

.signature-rule {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), var(--cyan));
}

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

.hero-actions .button-primary {
  animation: primaryPulse 3.6s ease-in-out 4s infinite;
}

.hero-disclaimer {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero-stage {
  opacity: 0;
  transform: translateY(28px);
  animation: heroEnter 0.9s var(--ease) var(--stage-delay) forwards;
}

.hero-visual {
  align-self: end;
  opacity: 0;
  transform: translateY(28px);
  animation: heroEnter 1.05s var(--ease) var(--stage-delay) forwards;
}

.portrait-frame {
  position: relative;
  min-height: 680px;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 12% 2% 6%;
  border: 1px solid rgba(1, 229, 255, 0.22);
  border-radius: 48% 48% 8px 8px;
  transform: rotate(2deg);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 10%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 16px rgba(1, 229, 255, 0.7);
  animation: scanLine 3.8s ease-in-out infinite;
}

.portrait-frame > img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: min(100%, 590px);
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.95) contrast(1.04);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 88%, transparent 100%);
}

.portrait-halo {
  position: absolute;
  z-index: 0;
  top: 18%;
  left: 10%;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 84, 255, 0.3), rgba(1, 229, 255, 0.06) 48%, transparent 68%);
  filter: blur(6px);
  animation: haloBreathe 4.8s ease-in-out infinite;
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 48px;
  display: grid;
  min-width: 230px;
  gap: 3px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px 0 0 10px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
}

.portrait-caption strong {
  color: var(--cyan);
  font-size: 0.9rem;
}

.portrait-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.hero-seal {
  position: absolute;
  z-index: 5;
  top: 26%;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(1, 229, 255, 0.25);
  border-radius: 10px;
  background: rgba(0, 40, 75, 0.78);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  animation: sealFloat 5s ease-in-out infinite;
}

.hero-seal svg {
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

/* Autoridade */
.authority {
  z-index: 6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #09090a;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.authority-item {
  position: relative;
  display: grid;
  min-height: 160px;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 15px;
  align-content: center;
  padding: 32px clamp(20px, 3vw, 38px);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.authority-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.authority-item > svg {
  width: 24px;
  height: 24px;
  grid-row: 1 / 3;
  margin-top: 7px;
  color: var(--cyan);
}

.authority-item strong {
  color: var(--white);
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.05em;
  line-height: 1;
}

.authority-item strong small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.44em;
  font-weight: 700;
  letter-spacing: 0;
}

.authority-item > span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Soluções */
.solutions {
  padding: 124px 0 118px;
}

.solution-list {
  border-top: 1px solid var(--line-light);
}

.solution-row {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 64px 76px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 42px 18px 42px 0;
  border-bottom: 1px solid var(--line-light);
  background: radial-gradient(circle 160px at var(--spot-x) var(--spot-y), rgba(24, 84, 255, 0.055), transparent 72%);
  transition: background-color 0.35s ease, padding 0.35s var(--ease);
}

.solution-row:hover {
  padding-right: 28px;
  padding-left: 18px;
  background: radial-gradient(circle 180px at var(--spot-x) var(--spot-y), rgba(24, 84, 255, 0.09), transparent 72%), var(--white);
}

.solution-index {
  align-self: start;
  padding-top: 5px;
  color: rgba(17, 19, 25, 0.38);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.24);
  border-radius: 50%;
  color: var(--black-accent);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.solution-row:hover .solution-icon {
  border-color: var(--blue);
  color: var(--blue);
  transform: rotate(-5deg) scale(1.06);
}

.solution-icon svg {
  width: 28px;
  height: 28px;
}

.solution-copy {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1.15fr);
  column-gap: 38px;
  align-items: center;
}

.solution-kicker {
  grid-column: 1;
  margin-bottom: 6px;
  color: var(--black-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-copy h3 {
  grid-column: 1;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.solution-copy > p:not(.solution-kicker) {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.solution-copy ul {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.solution-copy li {
  padding: 5px 9px;
  border: 1px solid rgba(0, 40, 75, 0.13);
  border-radius: 999px;
  background: rgba(0, 40, 75, 0.035);
  color: #354050;
  font-size: 0.68rem;
  font-weight: 650;
}

.solution-link {
  display: inline-flex;
  max-width: 185px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
  transition: color 0.25s ease, gap 0.25s ease;
}

.solution-link:hover {
  gap: 13px;
  color: var(--pink);
}

.solution-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

/* Curadoria */
.curation {
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(24, 84, 255, 0.18), transparent 28%),
    #08080a;
}

.curation::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -4%;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(1, 229, 255, 0.12);
  border-radius: 50%;
  animation: heroRing 22s linear infinite reverse;
}

.curation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(540px, 1.32fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.curation-intro h2 {
  margin-bottom: 26px;
  font-size: clamp(2.25rem, 4.4cqw, 4.4rem);
}

.curation-intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-column {
  display: grid;
  gap: 0;
  align-content: start;
  padding: 28px;
}

.comparison-neutral {
  background: #f0f1f3;
  color: var(--ink);
}

.comparison-tsw {
  position: relative;
  background: linear-gradient(160deg, var(--navy), #001632 70%, #061229);
  color: var(--white);
}

.comparison-tsw::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.comparison-label {
  display: block;
  margin-bottom: 20px;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-neutral .comparison-label {
  color: #6d7280;
}

.comparison-tsw .comparison-label {
  color: var(--cyan);
}

.comparison-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 22px 0;
  border-top: 1px solid currentColor;
  border-color: rgba(98, 103, 115, 0.2);
}

.comparison-tsw .comparison-item {
  border-color: rgba(255, 255, 255, 0.12);
}

.comparison-item > svg {
  width: 24px;
  height: 24px;
  color: #78808d;
}

.comparison-tsw .comparison-item > svg {
  color: var(--cyan);
}

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

.comparison-item strong {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.comparison-item span {
  color: #6f7580;
  font-size: 0.77rem;
  line-height: 1.55;
}

.comparison-tsw .comparison-item span {
  color: rgba(255, 255, 255, 0.58);
}

.curation-note {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  text-align: right;
}

/* Processo */
.process {
  padding: 124px 0 112px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy) 58%, #003760);
}

.process-lines {
  position: absolute;
  top: -26%;
  right: -12%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(1, 229, 255, 0.13);
  border-radius: 48% 52% 46% 54%;
  animation: processMorph 12s ease-in-out infinite alternate;
}

.process-lines::before,
.process-lines::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: inherit;
  border-radius: inherit;
}

.process-lines::after {
  inset: 18%;
}

.process .shell {
  position: relative;
  z-index: 1;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  min-height: 310px;
  padding: 32px 30px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 14, 51, 0.34);
  transition: background-color 0.35s ease, transform 0.35s var(--ease);
}

.process-step:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.process-step:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.process-step:hover {
  z-index: 2;
  background: rgba(0, 53, 95, 0.84);
  transform: translateY(-8px);
}

.step-number {
  display: block;
  margin-bottom: 54px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.process-step > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--cyan);
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.process-action {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.process-action > span {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
}

/* Documentos */
.documents {
  padding: 124px 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(0, 40, 75, 0.06) 50%, transparent 50.1%),
    var(--paper-warm);
}

.documents-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(58px, 8vw, 120px);
  align-items: start;
}

.documents-copy {
  position: sticky;
  top: 125px;
}

.documents-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 4cqw, 4.1rem);
}

.documents-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.document-note {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 17px;
  border-left: 3px solid var(--blue);
  background: rgba(24, 84, 255, 0.06);
  color: #3e4653;
  font-size: 0.78rem;
}

.document-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--blue);
}

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

.document-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 40, 75, 0.12);
  border-radius: var(--radius-sm);
  background: radial-gradient(circle 190px at var(--spot-x) var(--spot-y), rgba(24, 84, 255, 0.075), transparent 72%), rgba(255, 255, 255, 0.78);
  transition: border-color 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.document-card:hover {
  border-color: rgba(24, 84, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 40, 75, 0.09);
  transform: translateY(-5px);
}

.document-card > span {
  position: absolute;
  top: 19px;
  right: 22px;
  color: rgba(0, 40, 75, 0.17);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.document-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 54px;
  color: var(--blue);
}

.document-card h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.document-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Segurança */
.security {
  padding: 94px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(24, 84, 255, 0.14), transparent 26%),
    #09090a;
}

.security::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  animation: securitySweep 5s ease-in-out infinite;
}

.security-grid {
  display: grid;
  grid-template-columns: 130px minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.security-mark {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border: 1px solid rgba(1, 229, 255, 0.3);
  border-radius: 50%;
  background: rgba(1, 229, 255, 0.05);
  color: var(--cyan);
}

.security-mark svg {
  width: 48px;
  height: 48px;
}

.security-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4cqw, 4rem);
}

.security-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.64);
}

.legal-card {
  --spot-x: 50%;
  --spot-y: 50%;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(1, 229, 255, 0.19);
  border-radius: var(--radius-sm);
  background: radial-gradient(circle 220px at var(--spot-x) var(--spot-y), rgba(1, 229, 255, 0.11), transparent 72%), linear-gradient(145deg, rgba(0, 40, 75, 0.76), rgba(0, 14, 51, 0.6));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.legal-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.legal-card p + p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
}

/* Leitura em eixos
   O brilho radial saiu: instrumento de medição não lê o mundo em círculos, lê em eixos.
   O cursor passa a abrir uma cruz de luz sobre a malha de medição da superfície, no mesmo
   vocabulário da grade do gráfico. Reaproveita --spot-x/--spot-y que o JS já escreve, e
   --spot-focus, que aperta a cruz quando o ponteiro desacelera (gesto de quem vai ler um valor). */
.legal-card {
  position: relative;
  overflow: hidden;
}

.solution-row::after,
.document-card::after,
.legal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, var(--mesh-ink) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, var(--mesh-ink) 0 1px, transparent 1px 22px);
  opacity: 0;
  pointer-events: none;
  /* Duas elipses cruzadas: uma corre no eixo horizontal, outra no vertical.
     Somadas, abrem uma cruz de leitura em vez de um disco. Os braços encolhem conforme
     --spot-focus sobe, concentrando a leitura onde o ponteiro desacelerou.
     Os calc ficam aqui, e não no elemento, para resolverem com o --spot-focus já
     interpolado do próprio pseudo-elemento. */
  --mesh-arm: calc(340px - 130px * var(--spot-focus));
  --mesh-waist: calc(66px - 22px * var(--spot-focus));
  -webkit-mask-image:
    radial-gradient(ellipse var(--mesh-arm) var(--mesh-waist) at var(--spot-x) var(--spot-y), #000 0%, rgba(0, 0, 0, 0.35) 42%, transparent 72%),
    radial-gradient(ellipse var(--mesh-waist) var(--mesh-arm) at var(--spot-x) var(--spot-y), #000 0%, rgba(0, 0, 0, 0.35) 42%, transparent 72%);
  mask-image:
    radial-gradient(ellipse var(--mesh-arm) var(--mesh-waist) at var(--spot-x) var(--spot-y), #000 0%, rgba(0, 0, 0, 0.35) 42%, transparent 72%),
    radial-gradient(ellipse var(--mesh-waist) var(--mesh-arm) at var(--spot-x) var(--spot-y), #000 0%, rgba(0, 0, 0, 0.35) 42%, transparent 72%);
  transition: opacity 0.45s ease, --spot-focus 0.4s linear;
}

/* Registrado para poder interpolar: sem isso a cruz saltaria entre estados. */
@property --spot-focus {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

.solution-row,
.document-card,
.legal-card {
  --spot-focus: 0;
}

.solution-row:hover::after,
.document-card:hover::after,
.legal-card:hover::after {
  opacity: 1;
}

/* Superfícies claras pedem menos tinta que as escuras para o mesmo peso visual. */
.solution-row,
.document-card {
  --mesh-ink: rgba(24, 84, 255, 0.28);
}

.legal-card {
  --mesh-ink: rgba(1, 229, 255, 0.38);
}

/* O conteúdo sobe acima da malha: a grade é fundo de leitura, nunca véu sobre o texto. */
.solution-row > *,
.document-card > *,
.legal-card > * {
  position: relative;
  z-index: 1;
}

/* Leitura financeira */
.advisor {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #050505;
  color: var(--white);
}

.advisor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 19%, rgba(24, 84, 255, 0.12), transparent 26%),
    radial-gradient(circle at 16% 38%, rgba(1, 229, 255, 0.06), transparent 30%);
  pointer-events: none;
}

.advisor-grid {
  position: relative;
  z-index: 1;
}

.financial-stage {
  /* Relógio único da seção: o tempo do contrato, da contratação à quitação.
     Scan, luz do saldo e revezamento dos marcos derivam a fase daqui, para que
     a linha do tempo e o saldo mostrem sempre o mesmo instante. */
  --finance-cycle: 9s;
  position: relative;
  min-width: 0;
  padding: clamp(82px, 8vw, 118px) 0 clamp(76px, 7vw, 104px);
  color: var(--white);
}

.financial-field-canvas {
  position: absolute;
  z-index: 0;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 100vw;
  height: calc(100% - 48px);
  opacity: 0.52;
  pointer-events: none;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 91%, transparent);
}

.financial-interface {
  position: relative;
  z-index: 1;
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: none;
}

.financial-stage:hover .financial-interface {
  border-color: rgba(1, 229, 255, 0.28);
}

.financial-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: end;
  padding: 34px 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.financial-section-header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 5.4cqw, 5.45rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.financial-section-intro {
  display: grid;
  gap: 20px;
  padding-bottom: 5px;
}

.financial-section-intro p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.94rem;
  line-height: 1.65;
}

.financial-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.financial-live {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  font-weight: 650;
}

.financial-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(1, 229, 255, 0.42);
  animation: financePulse 2.3s ease-in-out infinite;
  animation-play-state: paused;
}

/* Cenários interativos */
.financial-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.financial-scenario {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  overflow: hidden;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.66);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.financial-scenario svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.55);
  stroke-width: 1.6;
  transition: color 0.25s ease;
}

.financial-scenario-copy {
  display: grid;
  gap: 3px;
}

.financial-scenario-title {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.financial-scenario-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  font-variant-numeric: tabular-nums;
}

.financial-scenario:hover {
  border-color: rgba(1, 229, 255, 0.4);
  background: rgba(1, 229, 255, 0.04);
}

.financial-scenario:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.financial-scenario.is-selected {
  border-color: var(--cyan);
  background: rgba(1, 229, 255, 0.07);
  box-shadow: 0 0 24px rgba(1, 229, 255, 0.12);
}

.financial-scenario.is-selected svg {
  color: var(--cyan);
}

.financial-scenario.is-selected .financial-scenario-title {
  color: var(--white);
}

/* Painel principal: gráfico + resumo */
.financial-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.financial-chart-panel {
  min-width: 0;
}

.financial-module-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.financial-module-heading h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.financial-module-sub {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  line-height: 1.5;
}

.financial-demo-chip {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid rgba(1, 229, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.financial-chart {
  position: relative;
  height: 330px;
  container-type: inline-size;
}

.financial-chart-axis {
  position: absolute;
  top: 12px;
  bottom: 30px;
  left: 0;
  width: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
}

.financial-chart-axis span {
  position: absolute;
  top: var(--axis-y);
  right: 4px;
  transform: translateY(-50%);
  transition: opacity 0.45s ease;
}

.financial-chart-svg {
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 30px;
  left: 34px;
  width: calc(100% - 34px);
  height: calc(100% - 42px);
  overflow: visible;
}

.financial-grid-lines line {
  stroke: rgba(255, 255, 255, 0.085);
  stroke-width: 1;
  stroke-dasharray: 3 7;
}

.financial-chart-area {
  fill: rgba(24, 84, 255, 0.09);
  opacity: 0;
  transition: opacity 1.15s ease 0.28s;
}

.financial-chart-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 7px rgba(1, 229, 255, 0.46));
  transition: stroke-dashoffset 1.5s var(--ease) 0.12s;
}

.financial-stage.is-finance-active .financial-chart-line {
  stroke-dashoffset: 0;
}

.financial-stage.is-finance-active .financial-chart-area {
  opacity: 1;
}

.financial-chart-scan {
  position: absolute;
  z-index: 2;
  top: 12px;
  bottom: 30px;
  left: 34px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(1, 229, 255, 0.76), transparent);
  box-shadow: 0 0 18px rgba(1, 229, 255, 0.34);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  animation: financeChartScan var(--finance-cycle) linear infinite;
  animation-play-state: paused;
}

/* Crosshair de leitura do gráfico
   Vocabulário nativo de terminal financeiro: ao encostar na curva, a mira trava no marco
   mais próximo (o JS já faz essa busca) e projeta a leitura nos dois eixos. Só transform,
   para não custar layout. */
.financial-crosshair {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 0;
  bottom: 30px;
  left: 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.financial-chart.is-reading .financial-crosshair {
  opacity: 1;
}

.financial-crosshair i,
.financial-crosshair b {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s var(--ease);
}

/* Braço horizontal: do eixo de valores até o marco. */
.financial-crosshair i {
  width: 100%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(1, 229, 255, 0.5));
  transform: translate3d(0, var(--cross-y, 0px), 0) scaleX(var(--cross-fx, 0));
}

/* Braço vertical: do marco até a faixa de anos. */
.financial-crosshair b {
  width: 1px;
  height: 100%;
  transform-origin: left top;
  background: linear-gradient(180deg, rgba(1, 229, 255, 0.5), transparent);
  transform: translate3d(var(--cross-x, 0px), var(--cross-y, 0px), 0) scaleY(calc(1 - var(--cross-fy, 0)));
}

.financial-chart-points {
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 30px;
  left: 34px;
  pointer-events: none;
}

.financial-chart-years {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 34px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
}

.financial-chart-years span {
  position: absolute;
  bottom: 0;
  left: var(--year-x);
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.45s ease;
}

.financial-chart-years span:first-child {
  transform: translateX(-30%);
}

.financial-chart-years span:last-child {
  transform: translateX(-72%);
}

.financial-point {
  position: absolute;
  z-index: 3;
  top: var(--point-y);
  left: var(--point-x);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  cursor: crosshair;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(0.35);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
  transition-delay: var(--point-delay);
}

.financial-stage.is-finance-active .financial-point {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.financial-point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid #050505;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 16px rgba(1, 229, 255, 0.18);
  transform: translate(-50%, -50%);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.financial-point:hover,
.financial-point:focus-visible,
.financial-point.is-active {
  z-index: 4;
}

.financial-point:hover::before,
.financial-point:focus-visible::before,
.financial-point.is-active::before {
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(1, 229, 255, 0.11), 0 0 26px rgba(1, 229, 255, 0.58);
  transform: translate(-50%, -50%) scale(1.15);
}

.financial-point:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.8);
  outline-offset: -4px;
}

.financial-point span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.financial-tooltip {
  position: absolute;
  z-index: 5;
  top: var(--tooltip-y, 15%);
  left: clamp(48px, var(--tooltip-x, 50%), calc(100% - 48px));
  min-width: 92px;
  padding: 8px 10px;
  border: 1px solid rgba(1, 229, 255, 0.3);
  border-radius: 7px;
  background: rgba(0, 14, 31, 0.93);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 0.22s ease, top 0.32s var(--ease), left 0.32s var(--ease);
}

.financial-tooltip strong {
  display: block;
  color: var(--cyan);
  font-size: 0.8rem;
}

.financial-tooltip.is-visible {
  opacity: 1;
}

.financial-chart.is-refreshing .financial-point {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
  transition-delay: 0ms;
}

.financial-chart.is-refreshing .financial-chart-axis span,
.financial-chart.is-refreshing .financial-chart-years span {
  opacity: 0.15;
  transition-duration: 0.15s;
}

/* Resumo narrativo do cenário */
.financial-story-panel {
  display: grid;
  gap: 22px;
  align-content: start;
  min-width: 0;
  padding-left: clamp(26px, 3vw, 46px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.financial-story {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}

.financial-story.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.financial-stats {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.financial-stat {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.financial-stat dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.financial-stat dd {
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.financial-stat small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
}

.financial-ratio {
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.financial-ratio i {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 12px rgba(1, 229, 255, 0.38);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.2s;
}

.financial-stage.is-finance-active .financial-ratio i {
  transform: scaleX(var(--ratio, 0.5));
}

/* Etapas do processo */
.financial-steps {
  padding: 30px 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.financial-steps-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.financial-steps-header h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.financial-steps-hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
}

.financial-steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.financial-steps-rail {
  position: absolute;
  top: 5px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.financial-steps-rail i {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 10px rgba(1, 229, 255, 0.5);
  transform: scaleX(var(--rail-progress, 0));
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.financial-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 44px;
  padding: 0 6px 4px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.financial-step-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #050505;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.financial-step-label {
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  transition: color 0.25s ease;
}

.financial-step:hover .financial-step-dot {
  border-color: rgba(1, 229, 255, 0.7);
}

.financial-step:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.financial-step.is-done .financial-step-dot {
  border-color: var(--cyan);
}

.financial-step.is-current {
  color: var(--white);
}

.financial-step.is-current .financial-step-dot {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(1, 229, 255, 0.6);
}

.financial-step-copy {
  max-width: 640px;
  min-height: 42px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.65;
  text-align: center;
  transition: opacity 0.3s ease;
}

.financial-step-copy.is-fading {
  opacity: 0;
}

/* Rodapé da seção */
.financial-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 22px 0;
}

.financial-disclaimer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.financial-disclaimer > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.financial-disclaimer svg {
  width: 15px;
  height: 15px;
}

.financial-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.55;
}

.financial-cta {
  min-width: 278px;
  justify-content: center;
}

/* Animações semânticas em loop: cada movimento espelha o dado que o elemento representa.
   Todas ficam pausadas fora da viewport. */

/* Saldo caindo: luz percorre a curva da contratação até a quitação (start -> end = descendo). */
.financial-chart-flow {
  fill: none;
  stroke: var(--white);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 0.04 0.96;
  stroke-dashoffset: 1;
  opacity: 0;
  animation: financeFlowDown var(--finance-cycle) linear infinite;
  animation-play-state: paused;
  transition: opacity 0.9s ease;
}

.financial-stage.is-finance-active .financial-chart-flow {
  opacity: 0.85;
  transition-delay: 1.5s;
}

.financial-chart.is-refreshing .financial-chart-flow {
  opacity: 0;
  transition-duration: 0.25s;
  transition-delay: 0s;
}

/* Saldo que ainda resta: respiração lenta da área, sem competir com o fade de entrada. */
.financial-chart-tide {
  animation: financeTide var(--finance-cycle) ease-in-out infinite;
  animation-play-state: paused;
}

/* Marcos anuais: cada ponto acende no instante em que a luz do saldo passa por ele.
   A fase vem do comprimento de arco real da curva, calculado no JS. O anel converge
   para dentro porque o saldo daquele ano está encolhendo, não crescendo. */
.financial-point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(1, 229, 255, 0.5);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  animation: financeRelay var(--finance-cycle) linear infinite;
  animation-delay: calc(var(--point-phase, 0) * var(--finance-cycle));
  animation-play-state: paused;
}

/* Quitação: em R$ 0 não há mais saldo encolhendo, então este é o único anel que
   abre para fora. É a chegada, não mais uma redução. */
.financial-point:last-of-type::after {
  border-color: rgba(1, 229, 255, 0.62);
  animation-name: financeArrive;
}

/* Proporção do crédito sobre o imóvel: luz preenchendo até o limite e recomeçando. */
.financial-ratio i::after,
.financial-steps-rail i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  animation: financeFill 7.4s ease-in-out infinite;
  animation-play-state: paused;
}

/* Progresso do processo: mesma luz, cadência própria para não pulsar em uníssono. */
.financial-steps-rail i::after {
  animation-duration: 6.8s;
  animation-delay: -2.4s;
}

/* Etapa atual: halo respirando no marcador ativo. */
.financial-step.is-current .financial-step-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(1, 229, 255, 0.45);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  animation: financeBeacon 3.8s var(--ease) infinite;
  animation-play-state: paused;
}

/* Cenário escolhido: brilho respirando, marcando o foco sem piscar. */
.financial-scenario.is-selected::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(1, 229, 255, 0.09), transparent 78%);
  opacity: 0;
  pointer-events: none;
  animation: financeBreath 7.6s ease-in-out infinite;
  animation-play-state: paused;
}

/* Narrativa: a barra lateral escorre para baixo, acompanhando a leitura. */
.financial-story::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(1, 229, 255, 0.16), var(--cyan) 45%, rgba(1, 229, 255, 0.16));
  background-size: 100% 220%;
  animation: financeStream 8.4s linear infinite;
  animation-play-state: paused;
}

.financial-stage.is-finance-visible .financial-live i,
.financial-stage.is-finance-visible .financial-chart-scan,
.financial-stage.is-finance-visible .financial-chart-flow,
.financial-stage.is-finance-visible .financial-chart-tide,
.financial-stage.is-finance-visible .financial-point::after,
.financial-stage.is-finance-visible .financial-ratio i::after,
.financial-stage.is-finance-visible .financial-steps-rail i::after,
.financial-stage.is-finance-visible .financial-step.is-current .financial-step-dot::after,
.financial-stage.is-finance-visible .financial-scenario.is-selected::after,
.financial-stage.is-finance-visible .financial-story::before {
  animation-play-state: running;
}

/* FAQ */
.faq {
  padding: 124px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1.32fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 4.1cqw, 4.2rem);
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: grid;
  min-height: 86px;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 23px;
  height: 23px;
  color: var(--blue);
  transition: transform 0.3s var(--ease), color 0.3s ease;
}

.faq-list details[open] summary svg {
  color: var(--blue);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -2px 48px 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  animation: faqOpen 0.35s var(--ease);
}

/* CTA final */
.final-cta {
  padding: 118px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 45%, rgba(24, 84, 255, 0.24), transparent 28%),
    linear-gradient(125deg, #050505 5%, #08091a 58%, #001e3a);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -20% -60%;
  background-image: linear-gradient(110deg, transparent 44%, rgba(1, 229, 255, 0.08) 50%, transparent 56%);
  transform: translate3d(-24%, 0, 0);
  animation: finalSweep 7s ease-in-out infinite;
}

.final-orbit {
  position: absolute;
  top: -80%;
  right: -10%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(1, 229, 255, 0.16);
  border-radius: 50%;
  animation: heroRing 24s linear infinite;
}

.final-orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: inherit;
  border-radius: inherit;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 24px;
}

.final-cta-inner > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.final-actions {
  display: grid;
  gap: 12px;
}

.final-actions .button-primary {
  animation: primaryPulse 3.6s ease-in-out infinite;
}

/* Footer — variante canônica de /itau/ */
.site-footer {
  --text: #ffffff;
  --muted: #c9ced8;
  --subtle: #87909e;
  --line: rgba(255, 255, 255, 0.12);
  --footer-accent: #01e5ff;
  padding: 64px 0 34px;
  border-top: 1px solid var(--line);
  background: #050505;
  color: var(--text);
  font-family: "TSW Footer Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

.site-footer .footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(130px, 0.42fr) minmax(330px, 1fr) minmax(260px, 0.72fr);
  gap: 34px 30px;
}

.site-footer .footer-brand {
  display: flex;
  gap: 14px;
}

.site-footer .brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #050505;
  border: 1px solid rgba(1, 229, 255, 0.22);
  overflow: hidden;
}

.site-footer .brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-footer .footer-mark {
  flex: 0 0 auto;
}

.site-footer .footer-brand strong {
  display: block;
  font-size: 1.1rem;
}

.site-footer .footer-brand p,
.site-footer .footer-bottom p {
  margin: 8px 0 0;
  color: var(--subtle);
}

.site-footer .footer-links,
.site-footer .footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer .footer-links a,
.site-footer .footer-contact a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer .footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer .footer-contact a svg,
.site-footer .footer-contact a i {
  flex: 0 0 auto;
  color: var(--footer-accent);
}

.site-footer .instagram-link {
  position: relative;
}

.site-footer .instagram-link i {
  display: none;
}

.site-footer .instagram-link::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: var(--footer-accent);
  -webkit-mask: url("assets/instagram.svg") center / contain no-repeat;
  mask: url("assets/instagram.svg") center / contain no-repeat;
}

.site-footer .footer-credentials {
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(1, 229, 255, 0.2);
  border-radius: 8px;
  background: rgba(1, 229, 255, 0.045);
}

.site-footer .footer-credentials strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.site-footer .footer-credentials p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
  color: var(--footer-accent);
  transform: translateX(3px);
}

.site-footer a:focus-visible {
  outline: 2px solid var(--footer-accent);
  outline-offset: 4px;
}

.site-footer .footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.site-footer .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.site-footer .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animações contínuas, inclusive quando o sistema sinaliza redução de movimento. */
@keyframes introExit {
  0%, 77% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

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

@keyframes introTsw {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes introCashme {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes introPlus {
  to { opacity: 1; transform: scale(1); }
}

@keyframes introCaption {
  to { opacity: 1; }
}

@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes gridDrift {
  to { transform: translate3d(72px, 72px, 0); }
}

@keyframes heroRing {
  50% { transform: rotate(180deg) scale(1.035); border-radius: 46% 54% 52% 48%; }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes orbFloat {
  to { transform: translate3d(24px, -28px, 0); }
}

@keyframes haloBreathe {
  50% { opacity: 0.55; transform: scale(1.08); }
}

@keyframes scanLine {
  0%, 100% { transform: translateX(-20px); opacity: 0.45; }
  50% { transform: translateX(24px); opacity: 1; }
}

@keyframes sealFloat {
  50% { transform: translateY(-9px); }
}

@keyframes primaryPulse {
  0%, 100% { box-shadow: 0 14px 38px rgba(249, 9, 144, 0.24); }
  50% { box-shadow: 0 16px 48px rgba(249, 9, 144, 0.42); }
}

@keyframes buttonShine {
  0%, 62% { transform: translateX(-120%); }
  84%, 100% { transform: translateX(120%); }
}

@keyframes processMorph {
  to { transform: rotate(7deg) scale(1.04); border-radius: 54% 46% 57% 43%; }
}

@keyframes securitySweep {
  0%, 100% { transform: translateX(-58%); opacity: 0; }
  50% { transform: translateX(58%); opacity: 1; }
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes finalSweep {
  0%, 100% { opacity: 0.35; transform: translate3d(-24%, 0, 0); }
  50% { opacity: 1; transform: translate3d(24%, 0, 0); }
}

@keyframes financePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(1, 229, 255, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(1, 229, 255, 0); }
}

/* Começa na contratação e termina na quitação: sem isso a varredura afirmaria
   que existe tempo antes do primeiro marco e depois do último. Intensidade baixa
   porque aqui o scan é o eixo do tempo, e o protagonista é a luz do saldo. */
@keyframes financeChartScan {
  0% { opacity: 0; transform: translate3d(calc((100cqw - 34px) * 0.0281), 0, 0); }
  10%, 88% { opacity: 0.45; }
  100% { opacity: 0; transform: translate3d(calc((100cqw - 34px) * 0.9766), 0, 0); }
}

@keyframes financeFlowDown {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}

/* A massa da dívida só afina, nunca engrossa no meio do caminho: a recomposição
   acontece no instante em que o ciclo reinicia, junto com a luz voltando ao topo. */
@keyframes financeTide {
  0% { opacity: 1; }
  92% { opacity: 0.82; }
  100% { opacity: 1; }
}

/* Revezamento dos marcos: evento curto dentro do ciclo de 9s da luz, convergindo. */
@keyframes financeRelay {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(2.3); }
  5% { opacity: 0.6; }
  15% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
}

/* Chegada na quitação: o único anel que abre para fora. */
@keyframes financeArrive {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  6% { opacity: 0.62; }
  28% { opacity: 0; transform: translate(-50%, -50%) scale(2.7); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.7); }
}

/* Farol da etapa atual: batida própria, independente do ciclo do gráfico. */
@keyframes financeBeacon {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  18% { opacity: 0.5; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.4); }
}

/* Varre uma vez e descansa: sem o repouso longo, a barra lê como "carregando". */
@keyframes financeFill {
  0% { transform: translateX(-100%); }
  38% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Amplitude fechada: o cenário ativo já é marcado por borda, cor e sombra;
   a respiração só confirma, não disputa atenção. */
@keyframes financeBreath {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.62; }
}

/* Desce junto com o saldo. Com background-size 100% 220%, ir de 100% para 0
   move a faixa clara para BAIXO; o sentido inverso subiria, contradizendo o dado. */
@keyframes financeStream {
  from { background-position: 0 100%; }
  to { background-position: 0 0; }
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
    gap: 36px;
  }

  .portrait-frame {
    min-height: 630px;
  }

  .solution-row {
    grid-template-columns: 46px 66px minmax(0, 1fr);
  }

  .solution-copy {
    grid-template-columns: minmax(190px, 0.75fr) minmax(260px, 1.15fr);
  }

  .solution-link {
    grid-column: 3;
    justify-self: start;
    max-width: none;
    margin-top: 4px;
    text-align: left;
  }

  .curation-grid {
    grid-template-columns: 1fr;
  }

  .curation-intro {
    max-width: 760px;
  }

  .documents-layout {
    gap: 55px;
  }

  .security-grid {
    grid-template-columns: 100px 1fr;
  }

  .financial-overview {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.68fr);
    gap: 38px;
  }

  .legal-card {
    grid-column: 2;
  }

  .site-footer .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header {
    padding: 8px 0;
  }

  .header-brand {
    width: 56px;
    height: 56px;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: 100px 28px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(5, 5, 5, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      transform 0.3s var(--ease),
      visibility 0s linear 0.3s;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .primary-nav > a:not(.header-cta) {
    padding: 13px 0;
    font-size: clamp(1.35rem, 7vw, 2.4rem);
    font-weight: 650;
  }

  .primary-nav > a:not(.header-cta)::after {
    display: none;
  }

  .header-cta {
    min-height: 54px;
    justify-content: center;
    margin-top: 22px;
    border-color: var(--cyan);
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 24px 0 8px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.1rem, 11vw, 5.7rem);
  }

  .hero-visual {
    width: min(100%, 580px);
    justify-self: center;
  }

  .portrait-frame {
    min-height: 610px;
  }

  .hero-seal {
    left: 0;
  }

  .authority-grid {
    grid-template-columns: 1fr 1fr;
  }

  .authority-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .authority-item:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .solution-row {
    grid-template-columns: 42px 60px 1fr;
    gap: 20px;
  }

  .solution-copy {
    grid-template-columns: 1fr;
  }

  .solution-copy > p:not(.solution-kicker),
  .solution-copy ul {
    grid-column: 1;
    grid-row: auto;
  }

  .solution-copy > p:not(.solution-kicker) {
    margin-top: 15px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  .process-step:first-child {
    border-radius: var(--radius-sm) 0 0 0;
  }

  .process-step:nth-child(2) {
    border-radius: 0 var(--radius-sm) 0 0;
  }

  .process-step:nth-child(3) {
    border-radius: 0 0 0 var(--radius-sm);
  }

  .process-step:last-child {
    border-radius: 0 0 var(--radius-sm) 0;
  }

  .documents-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .documents-copy,
  .faq-heading {
    position: static;
    max-width: 700px;
  }

  .advisor {
    background: #050505;
  }

  .advisor-grid {
    min-height: 0;
  }

  .financial-stage {
    width: 100%;
    padding: 84px 0 78px;
  }

  .financial-stage::before {
    display: none;
  }

  .financial-field-canvas {
    right: auto;
    left: 50%;
    width: 100vw;
  }

  .financial-section-header,
  .financial-overview {
    grid-template-columns: 1fr;
  }

  .financial-section-header {
    gap: 24px;
  }

  .financial-overview {
    gap: 34px;
  }

  .financial-scenarios {
    gap: 10px;
  }

  .financial-scenario {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .financial-story-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(250px, 0.95fr);
    gap: 26px 40px;
    align-items: center;
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 30px, 520px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .intro-lockup {
    flex-wrap: wrap;
    gap: 12px;
  }

  .intro-tsw {
    width: 82px;
    height: 82px;
  }

  .intro-cashme-wrap {
    width: 174px;
    min-height: 62px;
  }

  .intro-caption {
    max-width: 290px;
    margin-inline: auto;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.1rem);
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .cashme-signature {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .cashme-logo-panel {
    width: 148px;
  }

  .signature-rule {
    display: none;
  }

  .cashme-signature > span:last-child {
    font-size: 0.72rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .portrait-frame {
    min-height: 500px;
  }

  .portrait-caption {
    right: 0;
    bottom: 28px;
    min-width: 205px;
  }

  .hero-seal {
    top: 18%;
    padding: 10px 12px;
  }

  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-item,
  .authority-item:nth-child(2),
  .authority-item:last-child {
    min-height: 126px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .authority-item:first-child {
    border-top: 0;
  }

  .solutions,
  .curation,
  .process,
  .documents,
  .faq {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .faq-heading h2,
  .documents-copy h2,
  .curation-intro h2,
  .security-copy h2,
  .final-cta h2 {
    font-size: clamp(2.05rem, 10vw, 3.15rem);
  }

  .solution-row,
  .solution-row:hover {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 32px 0;
    background: transparent;
  }

  .solution-index {
    grid-column: 1;
  }

  .solution-icon {
    grid-column: 2;
    grid-row: 1;
    width: 48px;
    height: 48px;
  }

  .solution-icon svg {
    width: 22px;
    height: 22px;
  }

  .solution-copy,
  .solution-link {
    grid-column: 2;
  }

  .solution-copy h3 {
    font-size: 1.45rem;
  }

  .solution-copy ul {
    display: grid;
    justify-items: start;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .curation-note {
    text-align: left;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-step,
  .process-step:first-child,
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:last-child {
    min-height: 245px;
    border-radius: var(--radius-sm);
  }

  .step-number {
    margin-bottom: 28px;
  }

  .process-action {
    display: grid;
  }

  .process-action .button {
    width: 100%;
  }

  .document-grid {
    grid-template-columns: 1fr;
  }

  .document-card {
    min-height: 235px;
  }

  .security {
    padding: 76px 0;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-mark {
    width: 82px;
    height: 82px;
  }

  .security-mark svg {
    width: 34px;
    height: 34px;
  }

  .legal-card {
    grid-column: 1;
  }

  .financial-stage {
    padding: 66px 0 62px;
  }

  .financial-section-header {
    padding: 26px 0 30px;
  }

  .financial-section-header h2 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  .financial-section-intro {
    gap: 15px;
  }

  .financial-scenarios {
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .financial-scenario {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 64px;
  }

  .financial-overview {
    padding: 30px 0;
  }

  .financial-chart {
    height: 260px;
  }

  .financial-story-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .financial-steps-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 22px;
  }

  .financial-step {
    padding: 0 3px 4px;
  }

  .financial-step-label {
    font-size: 0.62rem;
  }

  .financial-step-copy {
    min-height: 62px;
    text-align: left;
  }

  .financial-footer,
  .financial-disclaimer {
    grid-template-columns: 1fr;
  }

  .financial-footer {
    gap: 18px;
  }

  .financial-disclaimer {
    gap: 8px;
  }

  .financial-cta {
    width: 100%;
    min-width: 0;
  }

  .faq-layout {
    gap: 46px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 0.91rem;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta {
    padding: 88px 0;
  }

  .final-actions .button {
    width: 100%;
  }

  .site-footer .footer-inner {
    width: min(100% - 32px, 1180px);
    grid-template-columns: 1fr;
  }

  .site-footer .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-footer .brand-mark img {
    width: 31px;
    height: 31px;
  }

  .site-footer .footer-links a,
  .site-footer .footer-contact a {
    min-height: 44px;
    padding-block: 10px;
    display: inline-flex;
    align-items: center;
  }

  .site-footer .footer-brand {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: min(100% - 24px, 520px);
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .cashme-signature {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    min-height: 455px;
  }

  .hero-seal {
    display: none;
  }
}

/* Decisão da direção: as animações do site rodam para todos os visitantes,
   inclusive quem tem "movimento reduzido" ligado no sistema. */
