:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f0f2f8;
  --purple: #35106b;
  --purple-deep: #240745;
  --purple-mid: #59239c;
  --purple-soft: #ebe3f7;
  --coral: #ff5c35;
  --coral-dark: #e94722;
  --coral-soft: #fff0eb;
  --ink: #1d1230;
  --muted: #665e72;
  --line: #ddd8e7;
  --shadow-sm: 0 10px 30px rgba(53, 16, 107, .08);
  --shadow-lg: 0 28px 80px rgba(36, 7, 69, .16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
p, h1, h2, h3, blockquote, figure, dl, dd { margin-top: 0; }
h1, h2, h3 { color: inherit; font-weight: 760; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 4.7vw, 4.65rem); }
h2 { font-size: clamp(2.2rem, 4.1vw, 4.05rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.5rem); }
::selection { color: #fff; background: var(--purple-mid); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; border-radius: 5px; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 2000; top: 12px; left: 12px; padding: 10px 16px; color: #fff; background: var(--purple); border-radius: 8px; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.section { position: relative; padding: clamp(86px, 9vw, 132px) 0; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--coral); font-size: .76rem; font-weight: 800; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before { content: ""; flex: 0 0 28px; width: 28px; height: 2px; background: var(--coral); }
.section-heading { max-width: 840px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-heading h2 { margin-bottom: 24px; }
.section-heading:not(.section-heading-light) h2, .problem-intro h2, .projects-heading h2, .about-copy h2, .page-section h2 { color: var(--purple); }
.section-heading > p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.16rem); }
.section-heading-centered { margin-inline: auto; text-align: center; }
.section-heading-centered .eyebrow { justify-content: center; }
.section-heading-centered > p:last-child { margin-inline: auto; }
.section-closing { max-width: 920px; margin: clamp(36px, 5vw, 58px) auto 0; padding: 23px 28px; color: var(--purple); background: var(--purple-soft); border-left: 4px solid var(--coral); border-radius: 4px var(--radius-sm) var(--radius-sm) 4px; font-size: clamp(1.02rem, 1.5vw, 1.22rem); font-weight: 680; text-align: center; }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button-row-centered { justify-content: center; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 12px; font-size: .94rem; font-weight: 750; line-height: 1.25; text-align: center; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, border-color .25s; }
.button:hover { transform: translateY(-2px); }
.button span { transition: transform .25s var(--ease); }
.button:hover span { transform: translate(2px, -2px); }
.button-primary { color: #fff; background: var(--coral); box-shadow: 0 12px 28px rgba(255, 92, 53, .24); }
.button-primary:hover { background: var(--coral-dark); box-shadow: 0 16px 34px rgba(255, 92, 53, .32); }
.button-secondary { color: var(--purple); background: rgba(255, 255, 255, .82); border-color: rgba(53, 16, 107, .18); }
.button-secondary:hover { background: #fff; border-color: var(--purple); }
.button-small { min-height: 44px; padding: 10px 17px; font-size: .84rem; }
.button-light { color: var(--purple); background: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, .2); }
.button-light:hover { color: var(--coral-dark); }
.button-ghost-light { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .3); }
.button-ghost-light:hover { background: rgba(255, 255, 255, .14); }

/* Header */
.site-header { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; height: var(--header-height); transition: background-color .3s, box-shadow .3s, height .3s; }
.site-header.is-scrolled { height: 70px; background: rgba(247, 249, 252, .94); box-shadow: 0 8px 28px rgba(36, 7, 69, .07); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { position: relative; z-index: 7; flex: 0 0 auto; width: 112px; height: 62px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 27px); margin-left: auto; }
.site-nav > a:not(.drawer-cta) { position: relative; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 0; color: #4d4358; font-size: .84rem; font-weight: 680; }
.site-nav > a:not(.drawer-cta)::after { content: ""; position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.site-nav > a:hover::after, .site-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-nav > a:hover, .site-nav > a.is-active { color: var(--purple); }
.header-cta { flex: 0 0 auto; }
.menu-toggle, .drawer-heading, .drawer-cta, .menu-overlay { display: none; }
.nav-solutions { position: relative; }
.solutions-toggle { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; gap: 7px; padding: 10px 0; color: #4d4358; background: transparent; border: 0; font-size: .84rem; font-weight: 680; cursor: pointer; }
.solutions-toggle i { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .25s var(--ease); }
.nav-solutions.is-open .solutions-toggle { color: var(--purple); }
.nav-solutions.is-open .solutions-toggle i { transform: rotate(225deg) translate(-2px, -1px); }
.solutions-menu { position: absolute; top: calc(100% + 8px); left: 50%; width: 310px; display: grid; gap: 4px; padding: 10px; background: rgba(255,255,255,.98); border: 1px solid #e2dce9; border-radius: 17px; box-shadow: 0 22px 48px rgba(36,7,69,.15); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%, -8px); transition: opacity .22s, visibility .22s, transform .22s var(--ease); }
.nav-solutions.is-open .solutions-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.solutions-menu a { min-height: 60px; display: flex; flex-direction: column; justify-content: center; padding: 9px 12px; border-radius: 11px; transition: background-color .2s; }
.solutions-menu a:hover, .solutions-menu a:focus-visible { background: var(--purple-soft); }
.solutions-menu strong, .solutions-menu span { display: block; }
.solutions-menu strong { color: var(--purple); font-size: .82rem; }
.solutions-menu span { margin-top: 1px; color: var(--muted); font-size: .67rem; }
.solutions-menu .validation-label { width: max-content; margin-top: 4px; padding: 2px 7px; color: var(--coral-dark); background: var(--coral-soft); border-radius: 999px; font-weight: 760; }

/* Hero */
.hero { position: relative; min-height: min(900px, 100svh); display: flex; align-items: center; padding: calc(var(--header-height) + 44px) 0 70px; overflow: hidden; background: radial-gradient(circle at 84% 20%, rgba(255, 92, 53, .14), transparent 25%), radial-gradient(circle at 60% 82%, rgba(89, 35, 156, .12), transparent 30%), linear-gradient(135deg, #fff 0%, var(--bg) 56%, #eee8f7 100%); }
.hero-grid-bg, .cta-grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(53, 16, 107, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(53, 16, 107, .045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent); }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(400px, .84fr); gap: clamp(36px, 4vw, 56px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow { max-width: 680px; color: var(--purple-mid); }
.hero h1 { max-width: 760px; margin-bottom: 25px; color: var(--purple-deep); }
.hero-highlight { color: var(--coral); }
.hero-lead { max-width: 720px; margin-bottom: 28px; color: #463952; font-size: clamp(1.05rem, 1.6vw, 1.23rem); line-height: 1.62; }
.hero-support { max-width: 680px; margin-bottom: 28px; color: var(--muted); font-size: .96rem; }
.microcopy { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 25px 0 0; color: #655a71; font-size: .72rem; font-weight: 650; }
.microcopy span { display: inline-flex; align-items: center; gap: 7px; }
.microcopy span::before { content: ""; width: 5px; height: 5px; background: var(--coral); border-radius: 50%; }

.hero-copy > * { opacity: 0; transform: translateY(20px); animation: hero-copy-in .62s var(--ease) forwards; }
.hero-copy > :nth-child(1) { animation-delay: .08s; }
.hero-copy > :nth-child(2) { animation-delay: .16s; }
.hero-copy > :nth-child(3) { animation-delay: .24s; }
.hero-copy > :nth-child(4) { animation-delay: .32s; }
.hero-copy > :nth-child(5) { animation-delay: .4s; }
.hero-copy > :nth-child(6) { animation-delay: .48s; }
.title-reveal { overflow: hidden; }
.hero-copy > h1.title-reveal { opacity: 0; transform: translateY(20px); animation: title-line-reveal .58s var(--ease) .16s forwards; }

.hero-visual { position: relative; width: min(100%, 450px); min-height: 0; aspect-ratio: 1.06; margin-inline: auto; isolation: isolate; transform: translateY(-1%); }
.hero-visual::before { content: ""; position: absolute; inset: 25% 27%; z-index: 0; background: radial-gradient(circle, rgba(89, 35, 156, .14), rgba(89, 35, 156, .035) 55%, transparent 74%); border-radius: 50%; filter: blur(20px); }
.hero-visual::after { content: ""; position: absolute; top: 45%; left: 12%; z-index: 2; width: 6px; height: 6px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255, 92, 53, .09); }
.hero-flow { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.flow-bundle { transform-origin: 50% 50%; animation: hero-flow-drift 14s ease-in-out infinite alternate; will-change: transform, opacity; }
.flow-bundle-two { animation-delay: -3.4s; }
.flow-bundle-three { animation-delay: -7.1s; }
.flow-bundle-four { animation-delay: -10.2s; }
.flow-bundle path { fill: none; stroke: url(#hero-flow-primary); stroke-width: .9; stroke-linecap: round; vector-effect: non-scaling-stroke; opacity: .52; }
.flow-bundle path:nth-child(2n) { opacity: .3; }
.flow-bundle path:nth-child(3n) { stroke-width: .75; opacity: .2; }
.flow-bundle-two path, .flow-bundle-three path { stroke: url(#hero-flow-secondary); }
.flow-bundle-four path { opacity: .36; }
.flow-bundle .flow-active { stroke-width: 1.15; stroke-dasharray: 8 15; opacity: .66; animation: flow-dash 20s linear infinite; }
.flow-bundle-two .flow-active { animation-delay: -5s; }
.flow-bundle-three .flow-active { animation-delay: -10s; }
.flow-bundle-four .flow-active { animation-delay: -15s; }
.flow-bundle .flow-accent { stroke: url(#hero-flow-accent); animation-duration: 24s; animation-direction: reverse; }
.flow-point { position: absolute; z-index: 2; width: 6px; height: 6px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255, 92, 53, .08); animation: flow-point-pulse 5.8s ease-in-out infinite; }
.point-one { top: 27%; right: 22%; }
.point-two { right: 11%; bottom: 29%; animation-delay: -2s; }
.point-three { bottom: 17%; left: 27%; width: 4px; height: 4px; animation-delay: -4s; }
.hero-media { position: absolute; top: 47%; left: 49%; z-index: 3; width: clamp(118px, 35vw, 146px); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: clamp(13px, 4vw, 18px); background: rgba(255, 255, 255, .98); border: 1px solid rgba(89, 35, 156, .11); border-radius: 49% 51% 50% 50% / 51% 49% 51% 49%; box-shadow: 0 16px 38px rgba(36, 7, 69, .14); overflow: hidden; opacity: 0; transform: translate(-50%, -50%) scale(.92); animation: network-logo-enter .8s .22s var(--ease) forwards; }
.hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.hero-media img { --logo-float-y: -4px; --logo-scale: 1.013; width: auto; height: auto; max-width: 82%; max-height: 82%; display: block; object-fit: contain; object-position: center; animation: hero-logo-breathe 9.6s ease-in-out -2.4s infinite alternate; will-change: transform; }
.hero-media video { opacity: 0; transition: opacity .4s; }
.hero-media.is-video-ready video { opacity: 1; }
.hero-media.is-video-ready img { opacity: 0; }
.hero-node { position: absolute; z-index: 5; min-height: 46px; display: flex; align-items: center; gap: 8px; padding: 7px 9px; color: var(--purple); background: rgba(255, 255, 255, .96); border: 1px solid rgba(53, 16, 107, .11); border-radius: 999px; box-shadow: 0 9px 22px rgba(36, 7, 69, .09); animation: node-float var(--float-duration, 8s) ease-in-out var(--float-delay, 0s) infinite alternate; will-change: transform; }
.hero-node > span:last-of-type { min-width: 0; }
.hero-node strong, .hero-node small { display: block; white-space: nowrap; }
.hero-node strong { font-size: .69rem; line-height: 1.2; letter-spacing: -.01em; }
.hero-node small { margin-top: 2px; color: var(--muted); font-size: .55rem; line-height: 1.25; }
.hero-node-platform { --float-x: 4px; --float-y: -8px; --float-duration: 6.8s; --float-delay: -1.1s; top: 8%; left: 2%; width: 158px; min-height: 52px; border-color: rgba(53, 16, 107, .18); box-shadow: 0 11px 27px rgba(36, 7, 69, .12); }
.hero-node-presence { --float-x: -4px; --float-y: 7px; --float-duration: 8.1s; --float-delay: -4.3s; top: 14%; right: 0; width: 140px; }
.hero-node-assistant { --float-x: 5px; --float-y: -7px; --float-duration: 9.4s; --float-delay: -6.8s; right: 1%; bottom: 6%; width: 176px; }
.hero-node em { position: absolute; right: 8px; bottom: -9px; padding: 3px 7px; color: var(--coral-dark); background: var(--coral-soft); border: 1px solid rgba(255, 92, 53, .15); border-radius: 999px; font-size: .48rem; font-style: normal; font-weight: 820; letter-spacing: .05em; line-height: 1.2; text-transform: uppercase; }
.node-symbol { position: relative; flex: 0 0 28px; width: 28px; height: 28px; display: block; color: #fff; background: var(--purple); border-radius: 50%; overflow: hidden; }
.node-symbol-platform i { position: absolute; bottom: 7px; width: 4px; background: #fff; border-radius: 2px 2px 0 0; }
.node-symbol-platform i:nth-child(1) { left: 7px; height: 8px; opacity: .65; }
.node-symbol-platform i:nth-child(2) { left: 13px; height: 14px; }
.node-symbol-platform i:nth-child(3) { left: 19px; height: 11px; opacity: .8; }
.node-symbol-presence { background: var(--purple-mid); }
.node-symbol-presence i { position: absolute; inset: 7px 6px 6px; border: 1.5px solid #fff; border-radius: 3px; }
.node-symbol-presence i::before { content: ""; position: absolute; top: 3px; right: 3px; left: 3px; height: 1px; background: rgba(255,255,255,.65); box-shadow: 0 4px 0 rgba(255,255,255,.45); }
.node-symbol-assistant { background: var(--coral); }
.node-symbol-assistant i:first-child { position: absolute; inset: 7px 6px 8px; border: 1.5px solid #fff; border-radius: 7px; }
.node-symbol-assistant i:first-child::after { content: ""; position: absolute; left: 3px; bottom: -4px; width: 5px; height: 5px; border-left: 1.5px solid #fff; transform: skewY(-32deg); }
.node-symbol-assistant i:last-child { position: absolute; top: 13px; left: 11px; width: 3px; height: 3px; background: #fff; border-radius: 50%; box-shadow: 6px 0 0 #fff; }
.hero-marker { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 5px; color: #685a75; font-size: .54rem; font-weight: 720; letter-spacing: .02em; white-space: nowrap; }
.hero-marker::before { content: ""; width: 5px; height: 5px; background: var(--coral); border-radius: 50%; }
.marker-process { top: 46%; left: 0; }
.marker-data { bottom: 10%; left: 29%; }
.marker-decision { top: 53%; right: 0; }
.signal-card { --float-x: -.5px; --float-y: -1.5px; position: absolute; top: 20%; left: 5%; z-index: 2; width: 108px; padding: 8px 9px; color: var(--ink); background: rgba(255, 255, 255, .88); border: 1px solid rgba(53, 16, 107, .09); border-radius: 10px; box-shadow: 0 7px 18px rgba(36, 7, 69, .07); animation: node-float 10.6s ease-in-out -2.7s infinite alternate; will-change: transform; }
.signal-card::before { content: ""; position: absolute; top: -10px; left: 25px; width: 1px; height: 10px; background: rgba(89, 35, 156, .35); }
.signal-card > span { display: block; color: var(--muted); font-size: .5rem; }
.signal-card > strong { display: block; margin: 1px 0 6px; color: var(--purple); font-size: .67rem; }
.mini-chart { height: 18px; display: flex; align-items: end; gap: 3px; }
.mini-chart i { flex: 1; height: 30%; background: var(--purple-soft); border-radius: 3px 3px 0 0; animation: bar-rise 2.5s var(--ease) infinite alternate; }
.mini-chart i:nth-child(2) { height: 52%; animation-delay: -.5s; }
.mini-chart i:nth-child(3) { height: 43%; animation-delay: -1s; }
.mini-chart i:nth-child(4) { height: 75%; animation-delay: -1.5s; }
.mini-chart i:nth-child(5) { height: 100%; background: var(--coral); animation-delay: -2s; }

/* Negócio em camadas: vista explodida da Hero */
.hero-flow { opacity: .72; }
.flow-bundle path { opacity: .36; }
.flow-bundle path:nth-child(2n) { opacity: .2; }
.exploded-business { position: absolute; inset: 13% 11% 12%; z-index: 2; perspective: 820px; transform-style: preserve-3d; pointer-events: none; }
.exploded-layer { --layer-x: 0px; --layer-y: 0px; --layer-z: 0px; --layer-delay: 0s; --layer-tint: rgba(255,255,255,.88); position: absolute; top: 50%; left: 50%; width: 66%; height: 17%; display: flex; align-items: center; justify-content: center; gap: 7px; border: 1px solid rgba(89, 35, 156, .2); border-radius: 25px; background: linear-gradient(135deg, var(--layer-tint), rgba(235, 227, 247, .82)); box-shadow: 0 15px 28px rgba(36, 7, 69, .08), inset 0 1px 0 rgba(255,255,255,.9); opacity: 0; transform-style: preserve-3d; animation: exploded-layer-open 1.12s var(--ease) var(--layer-delay) both; will-change: transform, opacity; }
.exploded-layer::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(89, 35, 156, .12); border-radius: inherit; }
.exploded-layer::after { content: ""; position: absolute; right: 15%; width: 6px; height: 6px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255, 92, 53, .09); animation: layer-indicator 5.5s ease-in-out calc(var(--layer-delay) + 1.2s) infinite alternate; }
.exploded-layer-presence { --layer-x: 20px; --layer-y: -104px; --layer-z: 18px; --layer-delay: .05s; --layer-tint: rgba(255,255,255,.95); }
.exploded-layer-experience { --layer-x: -24px; --layer-y: -62px; --layer-z: 12px; --layer-delay: .12s; --layer-tint: rgba(244, 239, 251, .95); }
.exploded-layer-process { --layer-x: 20px; --layer-y: -22px; --layer-z: 8px; --layer-delay: .19s; --layer-tint: rgba(234, 226, 247, .94); }
.exploded-layer-information { --layer-x: -20px; --layer-y: 22px; --layer-z: 4px; --layer-delay: .26s; --layer-tint: rgba(247, 244, 251, .96); }
.exploded-layer-data { --layer-x: 18px; --layer-y: 65px; --layer-z: 0px; --layer-delay: .33s; --layer-tint: rgba(231, 221, 246, .95); }
.exploded-layer-decision { --layer-x: -5px; --layer-y: 106px; --layer-z: -4px; --layer-delay: .4s; --layer-tint: rgba(255, 248, 245, .97); }
.exploded-layer span { position: relative; z-index: 1; width: 17%; height: 4px; background: rgba(89, 35, 156, .34); border-radius: 999px; }
.exploded-layer-experience span:first-child { width: 29%; background: var(--purple-mid); }
.exploded-layer-process span:nth-child(2) { background: var(--coral); }
.exploded-layer-information { gap: 5px; }
.exploded-layer-information span { width: 10%; height: 10px; border-radius: 3px; background: rgba(89, 35, 156, .24); }
.exploded-layer-information span:nth-child(3) { background: var(--purple-mid); }
.exploded-layer-data { align-items: end; padding: 0 27%; }
.exploded-layer-data i { position: relative; z-index: 1; flex: 1; max-width: 10px; background: rgba(89, 35, 156, .4); border-radius: 4px 4px 2px 2px; }
.exploded-layer-data i:nth-child(1) { height: 22%; }
.exploded-layer-data i:nth-child(2) { height: 44%; }
.exploded-layer-data i:nth-child(3) { height: 68%; background: var(--purple-mid); }
.exploded-layer-data i:nth-child(4) { height: 48%; }
.exploded-layer-data i:nth-child(5) { height: 82%; background: var(--coral); }
.exploded-layer-decision b { position: relative; z-index: 1; width: 24px; height: 24px; border: 2px solid var(--purple-mid); border-radius: 50%; }
.exploded-layer-decision b::before, .exploded-layer-decision b::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--coral); transform: translate(-50%, -50%); }
.exploded-layer-decision b::before { width: 8px; height: 8px; border-radius: 50%; }
.exploded-layer-decision b::after { width: 36px; height: 1px; opacity: .45; }
.hero-media { z-index: 4; }
.hero-node { z-index: 6; }
.hero-marker { z-index: 5; }
.marker-process { top: 43%; left: 7%; }
.marker-data { bottom: 17%; left: 21%; }
.marker-decision { top: 57%; right: 4%; }
.hero-node-platform { top: 10%; left: 0; }
.hero-node-presence { top: 20%; right: -1%; }
.hero-node-assistant { right: 0; bottom: 2%; }

/* Páginas de soluções */
.subpage-hero { position: relative; min-height: 720px; display: flex; align-items: center; padding: calc(var(--header-height) + 70px) 0 90px; overflow: hidden; background: radial-gradient(circle at 88% 18%, rgba(255,92,53,.13), transparent 24%), linear-gradient(135deg, #fff, var(--bg) 58%, #eee8f7); }
.subpage-hero::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(53,16,107,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(53,16,107,.045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent); }
.subpage-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: clamp(42px, 7vw, 90px); align-items: center; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; color: var(--muted); font-size: .72rem; }
.breadcrumb a { color: var(--purple); font-weight: 700; }
.subpage-hero h1 { max-width: 800px; margin-bottom: 24px; color: var(--purple-deep); font-size: clamp(2.35rem, 4.2vw, 3.6rem); }
.subpage-lead { max-width: 720px; margin-bottom: 16px; color: #44374f; font-size: clamp(1.08rem, 1.8vw, 1.32rem); line-height: 1.58; }
.subpage-support { max-width: 670px; margin-bottom: 28px; color: var(--muted); }
.subpage-visual { position: relative; min-height: 420px; display: grid; place-items: center; padding: 34px; color: #fff; background: linear-gradient(145deg, var(--purple), var(--purple-deep)); border-radius: 34px; box-shadow: var(--shadow-lg); overflow: hidden; }
.subpage-visual::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px dashed rgba(255,255,255,.24); border-radius: 50%; }
.subpage-visual::after { content: ""; position: absolute; top: 50px; right: 45px; width: 74px; height: 74px; background: var(--coral); border-radius: 50%; }
.solution-signal { position: relative; z-index: 1; width: min(100%, 360px); display: grid; gap: 9px; padding: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; backdrop-filter: blur(8px); }
.solution-signal span { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 15px; background: rgba(255,255,255,.08); border-radius: 12px; }
.solution-signal small { color: rgba(255,255,255,.58); }
.solution-signal strong { color: #fff; font-size: .88rem; text-align: right; }
.subpage-visual-presence { background: linear-gradient(145deg, #2c0b58, #59239c); }
.subpage-visual-presence .solution-signal span { flex-direction: column; align-items: flex-start; justify-content: center; }
.subpage-visual-presence .solution-signal strong { text-align: left; }
.subpage-visual-validation { background: linear-gradient(145deg, #2a0a50, #42137a); }
.subpage-visual-validation::after { width: 58px; height: 58px; }
.page-section { position: relative; padding: clamp(80px, 8.5vw, 124px) 0; background: #fff; }
.page-section-soft { background: var(--bg); }
.split-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(45px, 8vw, 105px); align-items: start; }
.split-layout h2 { margin-bottom: 22px; }
.split-layout p { color: var(--muted); }
.page-section .split-layout > :not(.truth-panel) > .eyebrow { color: var(--coral); }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.feature-card { min-height: 240px; padding: 25px; background: #fff; border: 1px solid #e3deea; border-radius: 20px; box-shadow: var(--shadow-sm); }
.feature-card > span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 28px; color: #fff; background: var(--purple); border-radius: 11px; font-size: .68rem; font-weight: 850; }
.feature-card h3 { margin-bottom: 12px; color: var(--purple); font-size: 1.2rem; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.feature-card-validation { background: #fff8f5; border-color: #f1d6cc; }
.page-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.page-list li { min-height: 62px; display: flex; align-items: center; gap: 10px; padding: 13px 15px; color: #493c55; background: #fff; border: 1px solid #e4dfea; border-radius: 13px; }
.page-list li::before { content: ""; flex: 0 0 7px; width: 7px; height: 7px; background: var(--coral); border-radius: 50%; }
.truth-panel { padding: clamp(28px, 4vw, 46px); color: #fff; background: linear-gradient(145deg, var(--purple-deep), var(--purple)); border-radius: 26px; box-shadow: var(--shadow-lg); }
.truth-panel h2, .truth-panel h3 { color: #fff; }
.truth-panel p { color: rgba(255,255,255,.7); }
.truth-panel .button { margin-top: 14px; }
.data-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); gap: clamp(35px, 6vw, 78px); align-items: center; padding: clamp(32px, 5vw, 58px); color: #fff; background: linear-gradient(145deg, var(--purple-deep), var(--purple)); border-radius: 30px; box-shadow: var(--shadow-lg); }
.data-band h2 { color: #fff; }
.data-band p { color: rgba(255,255,255,.7); }
.data-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.data-points span { min-height: 68px; display: grid; place-items: center; padding: 12px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; font-size: .78rem; font-weight: 720; text-align: center; }
.simple-steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 0; padding: 0; list-style: none; }
.simple-steps li { counter-increment: step; min-height: 210px; padding: 24px; background: #fff; border: 1px solid #e3deea; border-radius: 20px; }
.simple-steps li::before { content: "0" counter(step); width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 32px; color: #fff; background: var(--coral); border-radius: 11px; font-size: .66rem; font-weight: 850; }
.simple-steps h3 { margin-bottom: 10px; color: var(--purple); }
.simple-steps p { margin-bottom: 0; color: var(--muted); font-size: .87rem; }
.validation-intro { max-width: 780px; }
.validation-label { width: max-content; display: inline-flex; align-items: center; padding: 4px 9px; color: var(--coral-dark); background: var(--coral-soft); border-radius: 999px; font-size: .67rem; font-weight: 820; letter-spacing: .05em; line-height: 1.35; text-transform: uppercase; }
.validation-label-large { padding: 7px 11px; font-size: .7rem; }
.validation-questions { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.validation-questions li { display: flex; align-items: flex-start; gap: 11px; color: #4a3c56; }
.validation-questions li::before { content: "?"; flex: 0 0 27px; width: 27px; height: 27px; display: grid; place-items: center; color: #fff; background: var(--purple); border-radius: 8px; font-size: .72rem; font-weight: 850; }
.truth-panel .validation-questions li { color: rgba(255,255,255,.82); }
.truth-panel .validation-questions li::before { color: var(--purple); background: #fff; }
.validation-notice { padding: clamp(28px, 4vw, 46px); color: var(--purple); background: var(--purple-soft); border: 1px solid #d9caed; border-left: 4px solid var(--coral); border-radius: 4px 22px 22px 4px; box-shadow: var(--shadow-sm); }
.validation-notice h3 { margin: 22px 0 13px; color: var(--purple); }
.validation-notice p { margin-bottom: 0; color: #55465f; }

/* Problema + público */
.problem-audience { background: #fff; overflow: hidden; }
.problem-audience::after { content: ""; position: absolute; right: -190px; bottom: -250px; width: 500px; height: 500px; border: 70px solid rgba(53, 16, 107, .035); border-radius: 50%; }
.problem-intro { position: relative; z-index: 1; display: block; margin-bottom: 48px; }
.problem-intro h2 { max-width: 980px; margin-bottom: 18px; }
.problem-copy { max-width: 760px; padding-top: 0; }
.problem-copy p { color: var(--muted); line-height: 1.65; }
.problem-copy p:first-child { color: #403548; font-size: 1.18rem; }
.problem-copy p:last-child { margin-bottom: 0; font-size: 1rem; }
.problem-copy p:only-child { color: #403548; font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.62; }
.situation-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.situation-card { min-height: 222px; display: flex; flex-direction: column; padding: 22px; background: var(--bg); border: 1px solid #e6e1ec; border-radius: 18px; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s; }
.situation-card:hover { transform: translateY(-5px); border-color: #cbbdde; box-shadow: var(--shadow-sm); }
.situation-card-outside { border-top: 2px solid rgba(255, 92, 53, .62); }
.situation-card-inside { border-top: 2px solid rgba(89, 35, 156, .58); }
.situation-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.situation-number { color: var(--coral-dark); font-size: .7rem; font-weight: 850; letter-spacing: .1em; }
.situation-group { padding: 4px 7px; border-radius: 999px; font-size: .59rem; font-weight: 820; letter-spacing: .07em; line-height: 1; text-transform: uppercase; }
.situation-card-outside .situation-group { color: var(--coral-dark); background: var(--coral-soft); }
.situation-card-inside .situation-group { color: var(--purple); background: var(--purple-soft); }
.situation-icon { width: 23px; height: 23px; margin-top: 17px; color: var(--purple-mid); }
.situation-card-outside .situation-icon { color: var(--coral-dark); }
.situation-card h3 { max-width: 290px; margin: 16px 0 10px; color: var(--purple); font-size: 1.14rem; line-height: 1.3; }
.situation-card p { margin: 0; color: #5c5067; font-size: .91rem; line-height: 1.55; }
.problem-audience .section-closing { max-width: 960px; padding: 28px 34px; color: #fff; background: linear-gradient(135deg, var(--purple-deep), var(--purple)); border: 1px solid rgba(255, 255, 255, .08); border-left: 4px solid var(--coral); border-radius: 4px var(--radius-sm) var(--radius-sm) 4px; box-shadow: 0 18px 38px rgba(36, 7, 69, .16); font-weight: 720; }

/* Caminhos da JB */
.solution-paths { background: var(--bg); }
.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.path-card { min-height: 390px; display: flex; flex-direction: column; padding: clamp(26px, 3.5vw, 42px); background: #fff; border: 1px solid #e3deea; border-radius: 26px; box-shadow: var(--shadow-sm); }
.path-card-primary { min-height: 430px; grid-column: 1 / 3; display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .85fr); gap: clamp(35px, 6vw, 78px); align-items: center; color: #fff; background: linear-gradient(145deg, var(--purple-deep), var(--purple)); border-color: transparent; box-shadow: var(--shadow-lg); }
.path-card-primary .path-label, .path-card-primary > .path-copy > p:not(.path-label) { color: rgba(255,255,255,.7); }
.path-card.path-card-primary h3 { color: #fff; }
.path-card-primary .text-link { color: #fff; border-color: rgba(255,255,255,.34); }
.path-label { margin-bottom: 13px; color: var(--purple-mid); font-size: .69rem; font-weight: 830; letter-spacing: .12em; text-transform: uppercase; }
.path-label-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.path-label-row .path-label { margin-bottom: 0; }
.path-card h3 { max-width: 620px; margin-bottom: 16px; color: var(--purple); font-size: clamp(1.65rem, 3vw, 2.55rem); }
.path-card > p:not(.path-label), .path-copy > p:not(.path-label) { color: var(--muted); }
.path-card .text-link { align-self: flex-start; margin-top: auto; }
.path-card-icon { width: 30px; height: 30px; margin: 2px 0 18px; color: var(--purple-mid); }
.path-card-validation .path-card-icon { color: var(--coral-dark); }
.path-platform-visual { display: grid; gap: 10px; padding: 18px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; }
.path-platform-visual span { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; background: rgba(255,255,255,.08); border-radius: 13px; }
.path-platform-visual small { color: rgba(255,255,255,.55); }
.path-platform-visual strong { color: #fff; font-size: .9rem; }
.path-features { display: flex; flex-wrap: wrap; gap: 7px; margin: 10px 0 24px; padding: 0; list-style: none; }
.path-features li { padding: 6px 10px; color: var(--purple); background: var(--purple-soft); border-radius: 999px; font-size: .7rem; font-weight: 700; }
.status-badge { width: max-content; padding: 5px 9px; color: var(--coral-dark); background: var(--coral-soft); border-radius: 999px; font-size: .66rem; font-weight: 820; letter-spacing: .05em; text-transform: uppercase; }
.path-card-validation { background: linear-gradient(145deg, #fff, #fff7f3); border-color: #f2d8cf; }
.path-note { max-width: 850px; margin: 34px auto 0; color: var(--muted); font-size: .86rem; text-align: center; }
.path-cta { display: flex; justify-content: center; }
.path-note-cta { margin-top: 13px; }

/* Método + impacto */
.section-dark { color: #fff; background: linear-gradient(145deg, var(--purple-deep), var(--purple)); overflow: hidden; }
.section-dark::before { content: ""; position: absolute; top: -270px; right: -190px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(255, 92, 53, .2), transparent 62%); }
.section-dark::after { content: ""; position: absolute; bottom: -340px; left: -210px; width: 720px; height: 720px; background: radial-gradient(circle, rgba(121, 72, 186, .3), transparent 65%); }
.section-dark .container { position: relative; z-index: 1; }
.section-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.11) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent); }
.section-heading-light { max-width: 940px; }
.section-heading-light .eyebrow { color: #d8c6f3; }
.section-heading-light > p:last-child { color: rgba(255,255,255,.7); }
.method-steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 0 0 46px; padding: 0; list-style: none; }
.method-steps::before { content: ""; position: absolute; top: 31px; right: 5%; left: 5%; height: 1px; background: linear-gradient(90deg, rgba(255,92,53,.2), var(--coral), rgba(255,92,53,.2)); box-shadow: 0 0 15px rgba(255,92,53,.5); }
.method-steps li { position: relative; z-index: 1; min-height: 164px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; backdrop-filter: blur(7px); transition: transform .28s var(--ease), background-color .28s; }
.method-steps li:hover { transform: translateY(-4px); background: rgba(255,255,255,.11); }
.method-steps li > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--purple-deep); background: var(--coral); border-radius: 9px; font-size: .67rem; font-weight: 850; }
.method-steps strong, .method-steps small { display: block; }
.method-steps strong { margin-bottom: 4px; line-height: 1.25; }
.method-steps small { color: rgba(255,255,255,.57); font-size: .72rem; }
.management-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1.15fr auto 1fr auto 1fr; gap: 10px; align-items: center; padding: 20px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); }
.management-flow > i { color: var(--coral); font-size: 1.4rem; font-style: normal; animation: arrow-pulse 1.8s ease-in-out infinite alternate; }
.flow-item { min-height: 82px; display: flex; align-items: center; gap: 11px; padding: 13px 14px; color: #fff; background: rgba(255,255,255,.08); border-radius: 14px; }
.flow-icon { flex: 0 0 27px; width: 27px; height: 27px; color: rgba(255,255,255,.88); }
.flow-item > div { min-width: 0; }
.flow-item span { display: block; margin-bottom: 2px; color: var(--coral); font-size: .62rem; font-weight: 850; }
.flow-item strong { font-size: .9rem; }
.flow-decision { color: #fff; background: var(--coral); box-shadow: 0 14px 28px rgba(0,0,0,.18); }
.flow-decision span { color: #fff; }
.flow-decision .flow-icon { color: #fff; }
.js .management-flow .flow-item, .js .management-flow > i { opacity: 0; transform: translateY(10px); }
.js .management-flow.in-view .flow-item, .js .management-flow.in-view > i { animation: flow-step-in .45s var(--ease) both; animation-delay: calc(var(--flow-index) * 110ms); }
.method-closing { margin: 42px auto 0; color: rgba(255,255,255,.7); font-size: clamp(1.1rem, 2vw, 1.45rem); text-align: center; }
.method-closing strong { color: #fff; }

/* Soluções + demonstração */
.solutions-demo { background: var(--bg); }
.demo-stage { position: relative; max-width: 990px; margin: 0 auto; padding: 76px 62px 30px; background: linear-gradient(145deg, #ece8f5, #fff); border: 1px solid #e2dce9; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.demo-stage::before { content: ""; position: absolute; top: -100px; right: -90px; width: 300px; height: 300px; background: var(--coral-soft); border-radius: 50%; }
.dashboard-frame { position: relative; z-index: 1; margin: 0; overflow: hidden; background: #fff; border: 7px solid #fff; border-radius: 22px; box-shadow: 0 24px 54px rgba(36, 7, 69, .16); }
.dashboard-frame img { width: 100%; height: auto; }
.demo-metrics { position: absolute; top: 25px; right: 30px; left: 30px; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.demo-metrics span { padding: 10px 14px; background: rgba(255,255,255,.94); border: 1px solid #e8e2f0; border-radius: 11px; box-shadow: var(--shadow-sm); }
.demo-metrics small, .demo-metrics strong { display: block; }
.demo-metrics small { color: var(--muted); font-size: .61rem; }
.demo-metrics strong { color: var(--purple); font-size: .74rem; }
.demo-tags { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 21px; }
.demo-tags span { padding: 6px 11px; color: var(--purple); background: #fff; border: 1px solid #ddd5e9; border-radius: 999px; font-size: .69rem; font-weight: 720; }
.note { max-width: 780px; margin: 22px auto 46px; color: var(--muted); font-size: .76rem; text-align: center; }
.platform-home-focus { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: clamp(26px, 5vw, 65px); align-items: center; padding: clamp(28px, 4vw, 46px); background: #fff; border: 1px solid #e4dfea; border-radius: 24px; box-shadow: var(--shadow-sm); }
.platform-home-focus h3 { max-width: 610px; margin-bottom: 14px; color: var(--purple); font-size: clamp(1.55rem, 2.8vw, 2.35rem); }
.platform-home-focus > div:first-child > p:last-child { margin-bottom: 0; color: var(--muted); }
.platform-home-focus .eyebrow { margin-bottom: 12px; font-size: .65rem; }
.platform-resource-list { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-resource-list span { padding: 8px 11px; color: var(--purple); background: var(--purple-soft); border-radius: 999px; font-size: .72rem; font-weight: 720; }
.platform-home-focus > .button { grid-column: 1 / 3; justify-self: start; }
.solution-scroller { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.solution-card { min-height: 225px; padding: 24px; background: #fff; border: 1px solid #e7e2ec; border-radius: 19px; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s; }
.solution-card:hover { transform: translateY(-5px); border-color: #cbbdde; box-shadow: var(--shadow-sm); }
.solution-card > span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 33px; color: #fff; background: var(--purple); border-radius: 11px; box-shadow: 6px 6px 0 var(--coral-soft); font-size: .67rem; font-weight: 850; }
.solution-card h3 { margin-bottom: 12px; font-size: 1.16rem; }
.solution-card p { margin: 0; color: var(--muted); font-size: .84rem; }

/* Carrossel de projetos */
.projects { background: #eeebf4; }
.projects-heading { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: end; margin-bottom: 35px; }
.projects-heading h2 { max-width: 790px; margin-bottom: 0; }
.projects-heading > p { margin-bottom: 5px; color: var(--muted); font-size: .92rem; }
.project-carousel { position: relative; }
.project-viewport { overflow: hidden; border: 1px solid #e2dce9; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); touch-action: pan-y; transition: height .45s var(--ease); }
.project-track { display: flex; align-items: flex-start; transition: transform .55s var(--ease); will-change: transform; }
.project-panel { flex: 0 0 100%; min-width: 100%; display: grid; grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr); gap: clamp(30px, 4vw, 52px); align-items: center; min-height: 610px; padding: clamp(30px, 3.5vw, 46px); background: #fff; }
.project-panel[aria-hidden="true"] { pointer-events: none; }
.project-controls { display: grid; grid-template-columns: 48px 1fr 48px; gap: 14px; align-items: center; margin-top: 18px; }
.carousel-arrow { width: 48px; height: 48px; display: grid; place-items: center; color: var(--purple); background: #fff; border: 1px solid #d8d0e3; border-radius: 50%; box-shadow: 0 7px 18px rgba(45,18,77,.08); font-size: 1.25rem; cursor: pointer; transition: color .25s, background-color .25s, transform .25s; }
.carousel-arrow:hover { color: #fff; background: var(--purple); transform: translateY(-2px); }
.project-dots { display: flex; align-items: center; justify-content: center; gap: 2px; }
.project-dots button { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; background: transparent; border: 0; border-radius: 50%; cursor: pointer; }
.project-dots span { width: 9px; height: 9px; display: block; background: #bdb2cb; border-radius: 999px; transition: width .3s var(--ease), background-color .3s; }
.project-dots button.is-active span { width: 28px; background: var(--coral); }
.case-category { margin-bottom: 9px; color: var(--purple-mid); font-size: .69rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.case-copy > h3, .project-panel-validation h3 { margin-bottom: 16px; color: var(--purple); font-size: clamp(2rem, 3.8vw, 3.5rem); }
.case-summary { margin-bottom: 24px; color: #463c51; font-size: .97rem; font-weight: 610; }
.case-details { display: grid; gap: 10px; margin: 0; }
.case-details div { padding-top: 10px; border-top: 1px solid #e7e2ec; }
.case-details dt { margin-bottom: 5px; color: var(--coral-dark); font-size: .68rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.case-details dd { margin: 0; color: var(--muted); font-size: .8rem; }
.case-actions { margin-top: 22px; }
.project-site-link { min-width: 154px; justify-content: center; }
.case-gallery { height: 350px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; min-width: 0; }
.case-image { position: relative; margin: 0; background: #f7f8fb; border: 1px solid #e5e1eb; border-radius: 13px; overflow: hidden; }
.case-image img { width: 100%; height: 100%; object-fit: contain; object-position: center top; transition: transform .5s var(--ease); }
.case-image:hover img { transform: scale(1.02); }
.case-image figcaption { position: absolute; right: 9px; bottom: 9px; padding: 5px 9px; color: #fff; background: rgba(36,7,69,.88); border-radius: 999px; font-size: .62rem; font-weight: 720; backdrop-filter: blur(6px); }
.image-zoom { position: absolute; top: 12px; right: 12px; z-index: 3; width: 44px; height: 44px; padding: 0; background: rgba(255,255,255,.96); border: 1px solid #ded7e7; border-radius: 50%; box-shadow: 0 8px 20px rgba(36,7,69,.14); cursor: pointer; transition: color .25s, background-color .25s, transform .25s; }
.image-zoom::before { content: ""; position: absolute; top: 12px; left: 12px; width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 50%; }
.image-zoom::after { content: ""; position: absolute; top: 25px; left: 25px; width: 9px; height: 2px; background: currentColor; border-radius: 2px; transform: rotate(45deg); transform-origin: left center; }
.image-zoom:hover, .image-zoom:focus-visible { color: #fff; background: var(--purple); transform: translateY(-2px); }
.project-panel-validation { position: relative; overflow: hidden; }
.doura-copy > p:not(.case-category) { color: var(--muted); }
.doura-brand { position: relative; height: 350px; display: grid; place-items: center; margin: 0; padding: clamp(18px, 2.5vw, 30px); background: linear-gradient(145deg, #fff, #fff9e8); border: 1px solid #eadfca; border-radius: 24px; box-shadow: 0 18px 45px rgba(4, 42, 78, .09); overflow: hidden; }
.doura-brand img { width: 100%; height: auto; object-fit: contain; }
.doura-copy { max-width: 520px; }

.image-lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; background: rgba(18, 7, 31, .86); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.image-lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-dialog { position: relative; width: min(1120px, 94vw); height: min(820px, 88vh); display: grid; grid-template-columns: 54px minmax(0, 1fr) 54px; align-items: center; gap: 14px; }
.lightbox-dialog figure { min-width: 0; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 12px; margin: 0; }
.lightbox-dialog img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-caption { min-height: 24px; color: #fff; font-size: .82rem; text-align: center; }
.lightbox-close, .lightbox-nav { width: 48px; height: 48px; display: grid; place-items: center; color: var(--purple); background: #fff; border: 0; border-radius: 50%; box-shadow: 0 10px 25px rgba(0,0,0,.22); cursor: pointer; }
.lightbox-close { position: absolute; top: 0; right: 0; z-index: 2; font-size: 1.8rem; }
.lightbox-nav { font-size: 1.3rem; }
.lightbox-nav[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }

/* Sobre + FAQ */
.about-faq { background: #fff; }
.about-layout { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: clamp(55px, 8vw, 105px); align-items: center; }
.founder-card { position: relative; padding: 32px 24px; background: #f8f7fb; border: 1px solid rgba(53,16,107,.1); border-radius: 30px; box-shadow: 0 14px 34px rgba(36,7,69,.1); text-align: center; }
.founder-card::before { content: ""; position: absolute; top: 27px; right: 20px; width: 46px; height: 46px; border: 1px solid rgba(53,16,107,.18); border-radius: 50%; }
.founder-card::after { content: ""; position: absolute; top: 43px; right: 36px; width: 14px; height: 14px; background: var(--coral); border-radius: 50%; }
.founder-card picture { display: block; }
.founder-card img { position: relative; z-index: 1; width: 164px; height: 164px; margin: 0 auto 22px; object-fit: cover; border: 5px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--coral), 0 14px 30px rgba(36,7,69,.16); }
.founder-card strong, .founder-card span, .founder-card small { display: block; }
.founder-card strong { color: var(--purple); font-size: 1.18rem; }
.founder-card span { margin-top: 3px; color: var(--muted); font-size: .76rem; }
.founder-card small { margin-top: 17px; padding-top: 16px; color: #55465f; border-top: 1px solid var(--line); font-size: .64rem; letter-spacing: .04em; }
.about-copy h2 { max-width: 820px; margin-bottom: 24px; }
.about-copy > p:not(.eyebrow):not(.education) { margin-bottom: 12px; color: var(--muted); }
.education { margin-top: 18px; padding: 13px 16px; color: var(--purple); background: var(--purple-soft); border-radius: 11px; font-size: .82rem; font-weight: 650; }
.about-copy blockquote { position: relative; margin: 22px 0 0; padding: 20px 24px 20px 30px; color: var(--purple); background: var(--coral-soft); border-radius: 4px 16px 16px 4px; font-size: clamp(1rem, 1.7vw, 1.2rem); font-weight: 680; }
.about-copy blockquote::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--coral); }
.faq-divider { height: 1px; margin: clamp(75px, 9vw, 118px) 0; background: linear-gradient(90deg, transparent, #d9d1e4 12%, #d9d1e4 88%, transparent); }
.faq-layout { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: clamp(45px, 7vw, 95px); align-items: start; scroll-margin-top: 100px; }
.faq-layout > .section-heading { position: sticky; top: 105px; margin-bottom: 0; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: var(--purple); border-bottom: 1px solid #b6a6cc; font-size: .86rem; font-weight: 720; }
.accordion { border-top: 1px solid #dcd5e6; }
.faq-item { border-bottom: 1px solid #dcd5e6; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; color: var(--ink); background: transparent; border: 0; text-align: left; cursor: pointer; }
.faq-item button span { max-width: 680px; font-size: .95rem; font-weight: 720; letter-spacing: -.015em; }
.faq-item button i { position: relative; flex: 0 0 30px; width: 30px; height: 30px; background: var(--purple-soft); border-radius: 50%; transition: background-color .25s, transform .3s var(--ease); }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; top: 14px; left: 9px; width: 12px; height: 2px; background: var(--purple); transition: transform .3s var(--ease); }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] { color: var(--purple); }
.faq-item button[aria-expanded="true"] i { background: var(--coral); transform: rotate(180deg); }
.faq-item button[aria-expanded="true"] i::before, .faq-item button[aria-expanded="true"] i::after { background: #fff; }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .34s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 62ch; margin: 0; padding: 0 50px 21px 4px; color: var(--muted); font-size: .88rem; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-more { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-more > div { overflow: hidden; }
.faq-more.is-visible { grid-template-rows: 1fr; }
.faq-toggle-more { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; color: var(--purple); background: var(--purple-soft); border: 0; border-radius: 12px; font-size: .84rem; font-weight: 760; cursor: pointer; transition: color .25s, background-color .25s; }
.faq-toggle-more:hover { color: #fff; background: var(--purple); }
.faq-toggle-more i { font-style: normal; transition: transform .3s var(--ease); }
.faq-toggle-more[aria-expanded="true"] i { transform: rotate(180deg); }

/* CTA + Footer */
.final-cta { position: relative; padding: clamp(85px, 10vw, 140px) 0; color: #fff; background: var(--purple); overflow: hidden; }
.final-cta::before { content: ""; position: absolute; top: -170px; left: 50%; width: 520px; height: 520px; background: var(--coral); border-radius: 50%; filter: blur(140px); opacity: .17; transform: translateX(-50%); }
.final-cta::after { content: ""; position: absolute; right: -140px; bottom: -220px; width: 500px; height: 500px; border: 80px solid rgba(255,255,255,.04); border-radius: 50%; }
.cta-grid { opacity: .2; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); }
.final-cta-inner { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.final-cta .eyebrow { justify-content: center; color: #dccdf0; }
.final-cta h2 { margin-bottom: 25px; }
.final-cta-inner > p:not(.eyebrow):not(.microcopy):not(.cta-note) { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,.74); font-size: 1rem; }
.final-cta .button-row { margin-top: 31px; }
.microcopy-light { justify-content: center; color: rgba(255,255,255,.7); }
.cta-note { max-width: 700px; margin: 23px auto 0; color: rgba(255,255,255,.47); font-size: .72rem; }
.site-footer { color: #fff; background: var(--purple-deep); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .7fr 1fr; gap: clamp(30px, 5vw, 72px); padding-top: 65px; padding-bottom: 52px; }
.footer-brand img { width: 112px; height: 82px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 400px; margin: 17px 0 0; color: rgba(255,255,255,.62); }
.footer-solutions, .footer-nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid strong { margin-bottom: 8px; color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a:not(.footer-brand a) { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; color: rgba(255,255,255,.65); font-size: .81rem; transition: color .2s; }
.footer-grid a:hover { color: #fff; }
.footer-grid a small { display: block; margin-left: 6px; color: #ffad99; font-size: .58rem; font-weight: 760; text-transform: uppercase; }
.footer-bottom a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.42); font-size: .7rem; }
.whatsapp-float { position: fixed; z-index: 800; right: 20px; bottom: 20px; min-height: 48px; display: flex; align-items: center; gap: 9px; padding: 8px 15px 8px 8px; color: #fff; background: var(--purple); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; box-shadow: 0 14px 36px rgba(36,7,69,.28); font-size: .75rem; font-weight: 760; transition: transform .25s var(--ease), background-color .25s; }
.whatsapp-float > span:first-child { width: 32px; height: 32px; display: grid; place-items: center; background: var(--coral); border-radius: 50%; }
.whatsapp-float:hover { transform: translateY(-3px); background: var(--purple-mid); }

/* Movimento */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .62s var(--ease), transform .62s var(--ease); transition-delay: var(--delay, 0ms); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }
.js .title-reveal:not(.title-reveal-hero) { opacity: 0; transform: translateY(20px); transition: opacity .56s var(--ease), transform .56s var(--ease); }
.js .title-reveal.is-title-revealed { opacity: 1; transform: translateY(0); }
@keyframes hero-copy-in { to { opacity: 1; transform: translateY(0); } }
@keyframes title-line-reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes network-logo-enter { to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes exploded-layer-open { from { opacity: 0; transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-16deg) translate3d(0, 0, 0) scale(.88); } to { opacity: 1; transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-16deg) translate3d(var(--layer-x), var(--layer-y), var(--layer-z)) scale(1); } }
@keyframes layer-indicator { from { opacity: .58; transform: translateY(0); } to { opacity: 1; transform: translateY(-3px); } }
@keyframes flow-dash { to { stroke-dashoffset: -240; } }
@keyframes flow-dash-reverse { to { stroke-dashoffset: 210; } }
@keyframes flow-point-pulse { 50% { opacity: .48; transform: scale(.78); } }
@keyframes node-float { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(var(--float-x, 0), var(--float-y, -2px), 0); } }
@keyframes hero-flow-drift { from { opacity: .88; transform: translate3d(0, 0, 0); } to { opacity: 1; transform: translate3d(2px, -1.5px, 0); } }
@keyframes hero-logo-breathe { from { transform: translateY(0) scale(1); } to { transform: translateY(var(--logo-float-y)) scale(var(--logo-scale)); } }
@keyframes bar-rise { to { transform: scaleY(.65); transform-origin: bottom; } }
@keyframes arrow-pulse { to { transform: translateX(3px); opacity: .65; } }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes flow-step-in { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  :root { --header-height: 74px; }
  .container { width: min(var(--container), calc(100% - 38px)); }
  .site-nav { gap: 14px; }
  .site-nav > a:not(.drawer-cta) { font-size: .77rem; }
  .header-cta { display: none; }
  .hero-layout { grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr); gap: 30px; }
  .method-steps { grid-template-columns: repeat(3, 1fr); }
  .method-steps::before { display: none; }
  .case-gallery, .doura-brand { height: 320px; }
  .project-viewport { min-height: 0; }
}

@media (max-width: 860px) {
  .menu-toggle { position: relative; z-index: 7; width: 46px; height: 46px; display: block; margin-left: auto; padding: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
  .menu-toggle span { position: absolute; left: 12px; width: 20px; height: 2px; background: var(--purple); transition: transform .25s, top .25s, opacity .2s; }
  .menu-toggle span:nth-child(1) { top: 14px; }
  .menu-toggle span:nth-child(2) { top: 21px; }
  .menu-toggle span:nth-child(3) { top: 28px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
  .menu-overlay { position: fixed; inset: 0; z-index: 4; display: block; width: 100%; height: 100%; padding: 0; background: rgba(23, 7, 40, .46); border: 0; opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s; }
  .menu-overlay.is-visible { opacity: 1; visibility: visible; }
  .site-nav { position: fixed; top: 0; right: 0; bottom: 0; z-index: 6; width: min(86vw, 370px); display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 24px; background: rgba(247,249,252,.98); box-shadow: -20px 0 50px rgba(22,6,39,.18); backdrop-filter: blur(18px); transform: translateX(105%); visibility: hidden; transition: transform .36s var(--ease), visibility .36s; overflow-y: auto; }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .drawer-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; color: var(--purple); font-size: .78rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
  .drawer-close { position: relative; width: 44px; height: 44px; background: #fff; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }
  .drawer-close i { position: absolute; top: 21px; left: 11px; width: 20px; height: 2px; background: var(--purple); }
  .drawer-close i:first-child { transform: rotate(45deg); }
  .drawer-close i:last-child { transform: rotate(-45deg); }
  .site-nav > a:not(.drawer-cta) { padding: 14px 2px; color: var(--purple); border-bottom: 1px solid #e0dae8; font-size: 1.15rem; }
  .site-nav > a:not(.drawer-cta)::after { display: none; }
  .nav-solutions { width: 100%; border-bottom: 1px solid #e0dae8; }
  .solutions-toggle { width: 100%; justify-content: space-between; padding: 14px 2px; color: var(--purple); font-size: 1.15rem; }
  .solutions-menu { position: static; width: 100%; max-height: 0; gap: 2px; padding: 0 0 0 8px; background: transparent; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; overflow: hidden; pointer-events: none; transform: none; transition: max-height .32s var(--ease), padding .32s; }
  .nav-solutions.is-open .solutions-menu { max-height: 260px; padding-top: 5px; padding-bottom: 10px; pointer-events: auto; transform: none; }
  .solutions-menu a { min-height: 58px; padding: 8px 10px; }
  .drawer-cta { display: inline-flex; width: 100%; margin-top: auto; }
  .hero { min-height: auto; padding: calc(var(--header-height) + 28px) 0 70px; }
  .hero-layout { grid-template-columns: 1fr; gap: 18px; }
  .hero-visual { order: -1; }
  .hero-copy { max-width: 720px; }
  .subpage-hero { min-height: auto; padding: calc(var(--header-height) + 48px) 0 78px; }
  .subpage-hero-layout, .split-layout, .data-band { grid-template-columns: 1fr; }
  .subpage-visual { min-height: 360px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .simple-steps { grid-template-columns: repeat(2, 1fr); }
  .problem-intro, .projects-heading { grid-template-columns: 1fr; gap: 25px; }
  .problem-intro { align-items: start; }
  .path-card-primary { grid-template-columns: 1fr; }
  .platform-home-focus { grid-template-columns: 1fr; }
  .platform-home-focus > .button { grid-column: 1; }
  .project-panel { grid-template-columns: 1fr; align-items: start; min-height: 0; }
  .doura-brand { width: min(100%, 520px); margin-inline: auto; }
  .doura-copy { max-width: 620px; margin-inline: auto; }
  .case-gallery { width: min(100%, 660px); height: 300px; margin-inline: auto; }
  .method-steps { display: flex; gap: 12px; margin-right: 0; padding-right: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .method-steps::-webkit-scrollbar { display: none; }
  .method-steps li { flex: 0 0 250px; min-height: 150px; scroll-snap-align: start; }
  .management-flow { display: flex; gap: 9px; margin-right: 0; padding: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .management-flow::-webkit-scrollbar { display: none; }
  .flow-item { flex: 0 0 135px; scroll-snap-align: start; }
  .management-flow > i { flex: 0 0 auto; align-self: center; }
  .solution-scroller { grid-template-columns: repeat(2, 1fr); }
  .about-layout, .faq-layout { grid-template-columns: 1fr; }
  .founder-card { max-width: 410px; width: 100%; margin-inline: auto; }
  .faq-layout > .section-heading { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; --radius-lg: 25px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(2.35rem, 11vw, 3rem); }
  h2 { font-size: clamp(1.95rem, 9.5vw, 2.7rem); }
  .section-heading { margin-bottom: 34px; }
  .eyebrow { margin-bottom: 16px; font-size: .67rem; }
  .brand { width: 90px; height: 52px; }
  .hero { padding-top: 88px; padding-bottom: 62px; }
  .hero-layout { gap: 8px; }
  .hero-copy { padding-top: 12px; }
  .hero h1 { margin-bottom: 20px; }
  .hero-lead { margin-bottom: 24px; font-size: 1rem; }
  .hero-support { margin-bottom: 24px; font-size: .9rem; }
  .hero-buttons { align-items: stretch; flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .subpage-hero { padding-top: calc(var(--header-height) + 34px); padding-bottom: 64px; }
  .subpage-hero h1 { font-size: clamp(2rem, 9vw, 2.7rem); }
  .subpage-lead { font-size: 1.05rem; }
  .subpage-visual { min-height: 300px; padding: 22px; border-radius: 24px; }
  .subpage-visual::before { width: 245px; height: 245px; }
  .subpage-visual::after { top: 30px; right: 25px; width: 48px; height: 48px; }
  .feature-grid, .simple-steps, .page-list { grid-template-columns: 1fr; }
  .feature-card, .simple-steps li { min-height: 0; }
  .data-band { padding: 27px 20px; border-radius: 22px; }
  .data-points { grid-template-columns: 1fr; }
  .microcopy { display: grid; gap: 6px; margin-top: 21px; }
  .problem-intro { margin-bottom: 30px; }
  .problem-copy p:first-child { font-size: 1rem; }
  .situation-grid, .solution-scroller { display: flex; gap: 11px; margin-right: 0; padding-right: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .situation-grid::-webkit-scrollbar, .solution-scroller::-webkit-scrollbar { display: none; }
  .situation-card { flex: 0 0 min(82vw, 315px); min-height: 222px; scroll-snap-align: start; }
  .section-closing { padding: 20px 18px; text-align: left; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card, .path-card-primary { min-height: 0; grid-column: 1; padding: 25px 20px; }
  .path-platform-visual { padding: 12px; }
  .path-platform-visual span { min-height: 64px; }
  .path-note { text-align: left; }
  .method-steps { padding-right: 16px; }
  .method-steps li { flex-basis: min(76vw, 280px); }
  .management-flow { padding-right: 16px; }
  .method-closing { margin-top: 32px; text-align: left; }
  .demo-stage { padding: 67px 10px 20px; border-radius: 20px; }
  .demo-metrics { top: 12px; right: 10px; left: 10px; gap: 4px; }
  .demo-metrics span { padding: 7px 6px; }
  .demo-metrics strong { font-size: .56rem; }
  .demo-metrics small { font-size: .5rem; }
  .dashboard-frame { border-width: 4px; border-radius: 11px; }
  .demo-tags { gap: 5px; margin-top: 17px; }
  .demo-tags span { padding: 5px 8px; font-size: .6rem; }
  .note { margin-bottom: 32px; }
  .platform-home-focus { padding: 24px 18px; }
  .platform-home-focus > .button { width: 100%; }
  .solution-card { flex: 0 0 min(82vw, 315px); min-height: 220px; scroll-snap-align: start; }
  .projects-heading { margin-bottom: 27px; }
  .project-panel { gap: 30px; padding: 24px 16px; }
  .case-copy > h3 { font-size: 2.35rem; }
  .case-summary { font-size: .93rem; }
  .case-gallery { height: auto; grid-template-columns: 1fr; }
  .case-image { height: 235px; }
  .project-panel-validation { grid-template-columns: 1fr; text-align: center; }
  .doura-brand { width: min(100%, 390px); margin-inline: auto; }
  .doura-copy { margin-inline: auto; }
  .project-site-link { width: 100%; }
  .image-lightbox { padding: 14px; }
  .lightbox-dialog { width: 100%; height: min(760px, 88vh); grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 6px; }
  .lightbox-close, .lightbox-nav { width: 44px; height: 44px; }
  .founder-card { max-width: 330px; padding: 27px 20px; }
  .founder-card img { width: 138px; height: 138px; }
  .about-copy h2 { margin-top: 3px; }
  .about-copy > p:not(.eyebrow):not(.education) { font-size: .92rem; }
  .faq-divider { margin: 68px 0; }
  .faq-item button { min-height: 68px; padding-block: 15px; }
  .faq-item button span { font-size: .88rem; }
  .faq-answer p { padding-right: 4px; font-size: .84rem; }
  .final-cta .button-row { align-items: stretch; flex-direction: column; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-contact { grid-column: 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
  .whatsapp-float { right: 12px; bottom: 12px; padding-right: 8px; }
  .whatsapp-float > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
}

@media (max-width: 370px) {
  .container { width: min(100% - 22px, var(--container)); }
  .hero { padding-top: 82px; }
  .site-nav { width: min(90vw, 340px); padding: 20px; }
}

/* Adaptação exclusiva da Hero mobile */
@media (max-width: 767px) {
  .hero { padding-top: calc(var(--header-height) + 14px); padding-bottom: 58px; }
  .hero-layout { gap: 26px; }
  .hero-copy { padding-top: 0; }
  .hero-eyebrow { max-width: 100%; margin-bottom: 14px; font-size: .62rem; line-height: 1.45; letter-spacing: .12em; }
  .hero h1 { margin-bottom: 21px; font-size: clamp(2.625rem, 11vw, 3.15rem); line-height: 1; }
  .hero-lead, .hero-support { font-size: 1rem; line-height: 1.58; }
  .hero-support { margin-bottom: 24px; }
  .hero-buttons { align-items: stretch; flex-direction: column; }
  .hero-buttons .button { width: 100%; }
  .hero .microcopy { display: grid; gap: 6px; margin-top: 21px; }
}

/* Expansão progressiva da nova composição visual da Hero */
@media (max-width: 390px) {
  .marker-decision { display: none; }
  .hero-node-platform { width: 150px; }
  .hero-node-presence { width: 134px; }
  .hero-node-assistant { width: 168px; }
}

@media (max-width: 767px) {
  .hero-visual { width: min(100%, 440px); aspect-ratio: 1.12; transform: none; }
  .flow-bundle { animation-duration: 22s; }
  .hero-media img { --logo-float-y: -2px; --logo-scale: 1.007; animation-duration: 10.5s; }
  .flow-bundle path:nth-child(even) { display: none; }
  .flow-bundle path { stroke-width: .85; opacity: .44; }
  .flow-bundle .flow-active { display: block; stroke-width: 1.05; opacity: .62; }
  .hero-media { top: 46%; width: clamp(132px, 37vw, 154px); }
  .hero-node-platform { top: 5%; left: 1%; }
  .hero-node-presence { top: 5%; right: 0; }
  .hero-node-assistant { right: 0; bottom: 4%; }
  .hero-node-platform { --float-x: 2px; --float-y: -4px; }
  .hero-node-presence { --float-x: -2px; --float-y: 3.5px; }
  .hero-node-assistant { --float-x: 2.5px; --float-y: -3.5px; }
  .signal-card { display: none; }
  .marker-process { top: 50%; left: 0; }
  .marker-data { bottom: 9%; left: 25%; }
  .marker-decision { top: 55%; right: 1%; }
}

@media (min-width: 768px) {
  .hero-visual { width: min(100%, 520px); min-height: 480px; aspect-ratio: auto; }
  .hero-flow { inset: -3% -5%; width: 110%; height: 106%; }
  .hero-media { width: clamp(172px, 37%, 200px); padding: 22px; }
  .hero-node { min-height: 52px; padding: 8px 10px; }
  .hero-node strong { font-size: .76rem; }
  .hero-node small { font-size: .59rem; }
  .node-symbol { flex-basis: 32px; width: 32px; height: 32px; }
  .node-symbol-platform i:nth-child(1) { left: 8px; }
  .node-symbol-platform i:nth-child(2) { left: 14px; }
  .node-symbol-platform i:nth-child(3) { left: 20px; }
  .hero-node-platform { top: 7%; left: 1%; width: 178px; min-height: 58px; }
  .hero-node-presence { top: 15%; right: -1%; width: 154px; }
  .hero-node-assistant { right: 0; bottom: 6%; width: 194px; }
  .hero-marker { font-size: .59rem; }
  .marker-process { top: 47%; left: -1%; }
  .marker-data { bottom: 11%; left: 29%; }
  .marker-decision { top: 54%; right: -1%; }
  .signal-card { top: 19%; left: -2%; width: 128px; padding: 9px 10px; }
  .signal-card > span { font-size: .54rem; }
  .signal-card > strong { font-size: .75rem; }
  .mini-chart { height: 21px; }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-node-platform { --float-x: 3px; --float-y: -5px; }
  .hero-node-presence { --float-x: -3px; --float-y: 5px; }
  .hero-node-assistant { --float-x: 4px; --float-y: -5px; }
  .hero-media img { --logo-float-y: -3px; --logo-scale: 1.01; }
}

@media (min-width: 1200px) {
  .hero-visual { width: min(100%, 575px); min-height: 550px; transform: translateY(-1.25%); }
  .hero-flow { inset: -6% -9%; width: 118%; height: 112%; }
  .hero-media { width: clamp(200px, 38%, 220px); padding: 24px; }
  .hero-node { min-height: 56px; padding: 9px 11px; }
  .hero-node strong { font-size: .82rem; }
  .hero-node small { font-size: .62rem; }
  .hero-node-platform { top: 8%; left: -1%; width: 190px; min-height: 62px; }
  .hero-node-presence { top: 14%; right: -2%; width: 164px; }
  .hero-node-assistant { right: -1%; bottom: 7%; width: 205px; }
  .signal-card { top: 20%; left: -3%; width: 136px; }
  .marker-process { top: 47%; left: -3%; }
  .marker-data { bottom: 12%; left: 28%; }
  .marker-decision { top: 53%; right: -3%; }
}

@media (max-width: 767px) {
  .exploded-business { inset: 14% 8% 13%; }
  .exploded-layer { width: 72%; height: 16%; border-radius: 18px; }
  .exploded-layer-presence { --layer-x: 12px; --layer-y: -76px; }
  .exploded-layer-experience { --layer-x: -14px; --layer-y: -46px; }
  .exploded-layer-process { --layer-x: 12px; --layer-y: -16px; }
  .exploded-layer-information { --layer-x: -12px; --layer-y: 16px; }
  .exploded-layer-data { --layer-x: 11px; --layer-y: 48px; }
  .exploded-layer-decision { --layer-x: -3px; --layer-y: 78px; }
  .exploded-layer::before { inset: 5px; }
  .exploded-layer-data { padding: 0 25%; }
  .exploded-layer-decision b { width: 18px; height: 18px; }
  .exploded-layer-decision b::after { width: 28px; }
  .hero-node-platform { top: 7%; left: 0; }
  .hero-node-presence { top: 14%; right: 0; }
  .hero-node-assistant { right: 0; bottom: 2%; }
  .marker-process { top: 47%; left: 2%; }
  .marker-data { bottom: 13%; left: 22%; }
  .marker-decision { top: 58%; right: 1%; }
}

/* Exploded view: peças independentes de um ecossistema digital */
.hero-flow { opacity: .54; }
.flow-bundle path { opacity: .24; }
.flow-bundle path:nth-child(2n) { opacity: .13; }
.exploded-business { inset: 0; perspective: 1000px; }
.exploded-layer { --component-x: 0px; --component-y: 0px; --component-z: 0px; --component-rotate: 0deg; --component-delay: 0s; display: block; box-sizing: border-box; border: 0; background: transparent; box-shadow: none; opacity: 0; transform-style: preserve-3d; animation: product-component-open 1.28s cubic-bezier(.18, .82, .26, 1) var(--component-delay) both; }
.exploded-layer::after { display: none; }
.exploded-layer-presence { --component-x: -105px; --component-y: -132px; --component-z: 44px; --component-rotate: -8deg; --component-delay: .04s; width: 136px; height: 91px; padding: 22px 14px 12px; border: 1px solid rgba(89,35,156,.2); border-radius: 15px; background: linear-gradient(145deg, #fff, #f2ecfa); box-shadow: 0 18px 30px rgba(36,7,69,.13), 0 2px 0 rgba(255,255,255,.9) inset; }
.exploded-layer-presence::before { content: ""; position: absolute; top: 10px; right: 12px; left: 12px; height: 7px; border-radius: 6px; background: linear-gradient(90deg, var(--coral) 0 10px, rgba(89,35,156,.22) 10px 34px, transparent 34px); }
.exploded-layer-presence span { position: absolute; left: 14px; height: 7px; border-radius: 4px; background: rgba(89,35,156,.27); }
.exploded-layer-presence span:nth-child(1) { top: 32px; width: 56%; background: var(--purple-mid); }
.exploded-layer-presence span:nth-child(2) { top: 47px; width: 75%; }
.exploded-layer-presence span:nth-child(3) { bottom: 13px; width: 34px; background: var(--coral); }
.exploded-layer-experience { --component-x: 126px; --component-y: -78px; --component-z: 20px; --component-rotate: 12deg; --component-delay: .11s; width: 132px; height: 92px; }
.exploded-layer-experience::before { content: ""; position: absolute; top: 42px; right: 13px; left: 13px; height: 1px; background: linear-gradient(90deg, var(--purple-mid), rgba(89,35,156,.18)); transform: rotate(-12deg); transform-origin: left; }
.exploded-layer-experience span { position: absolute; width: 22px; height: 22px; border: 2px solid var(--purple-mid); border-radius: 50%; background: #fff; box-shadow: 0 8px 17px rgba(36,7,69,.1); }
.exploded-layer-experience span:first-child { top: 17px; left: 13px; }
.exploded-layer-experience span:last-child { right: 14px; bottom: 16px; border-color: var(--coral); }
.exploded-layer-experience span:last-child::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: var(--coral); }
.exploded-layer-process { --component-x: -140px; --component-y: 2px; --component-z: 8px; --component-rotate: -11deg; --component-delay: .18s; width: 122px; height: 104px; }
.exploded-layer-process::before { content: ""; position: absolute; top: 51px; right: 17px; left: 17px; height: 2px; background: rgba(89,35,156,.42); box-shadow: 22px -20px 0 -1px rgba(89,35,156,.34), 44px 20px 0 -1px rgba(89,35,156,.34); transform: rotate(-24deg); transform-origin: left; }
.exploded-layer-process span { position: absolute; width: 25px; height: 18px; border: 1px solid rgba(89,35,156,.25); border-radius: 5px; background: #fff; box-shadow: 0 7px 14px rgba(36,7,69,.09); }
.exploded-layer-process span:nth-child(1) { top: 17px; left: 12px; background: var(--purple-mid); }
.exploded-layer-process span:nth-child(2) { top: 43px; left: 47px; }
.exploded-layer-process span:nth-child(3) { right: 11px; bottom: 17px; border-color: rgba(255,92,53,.35); background: var(--coral-soft); }
.exploded-layer-information { --component-x: 141px; --component-y: 22px; --component-z: -8px; --component-rotate: 7deg; --component-delay: .25s; width: 112px; height: 99px; padding: 18px 17px; border: 1px solid rgba(89,35,156,.16); border-radius: 10px 18px 14px 12px; background: linear-gradient(145deg, #fff, #ece4f7); box-shadow: -9px 10px 0 rgba(234,226,247,.8), -16px 18px 0 rgba(234,226,247,.45), 0 15px 24px rgba(36,7,69,.1); }
.exploded-layer-information::before { content: ""; position: absolute; top: 10px; left: 17px; width: 34px; height: 4px; border-radius: 5px; background: var(--purple-mid); }
.exploded-layer-information span { position: relative; z-index: 1; display: block; width: 100%; height: 5px; margin: 8px 0; border-radius: 5px; background: rgba(89,35,156,.24); }
.exploded-layer-information span:nth-child(3) { width: 68%; background: var(--coral); }
.exploded-layer-data { --component-x: -78px; --component-y: 124px; --component-z: 26px; --component-rotate: 9deg; --component-delay: .32s; width: 118px; height: 90px; display: flex; align-items: end; justify-content: center; gap: 6px; padding: 19px 21px 17px; clip-path: polygon(13% 0, 100% 11%, 87% 100%, 0 88%); background: linear-gradient(145deg, var(--purple-deep), var(--purple-mid)); box-shadow: 0 17px 25px rgba(36,7,69,.2); }
.exploded-layer-data::before { content: ""; position: absolute; top: 13px; left: 20px; width: 35px; height: 4px; border-radius: 5px; background: rgba(255,255,255,.7); }
.exploded-layer-data i { position: relative; z-index: 1; flex: 1; max-width: 10px; background: rgba(255,255,255,.58); border-radius: 3px 3px 0 0; }
.exploded-layer-data i:nth-child(1) { height: 23%; }
.exploded-layer-data i:nth-child(2) { height: 43%; }
.exploded-layer-data i:nth-child(3) { height: 72%; background: #fff; }
.exploded-layer-data i:nth-child(4) { height: 52%; }
.exploded-layer-data i:nth-child(5) { height: 88%; background: var(--coral); }
.exploded-layer-decision { --component-x: 95px; --component-y: 121px; --component-z: 6px; --component-rotate: -5deg; --component-delay: .39s; width: 88px; height: 88px; border: 1px solid rgba(89,35,156,.2); border-radius: 50%; background: radial-gradient(circle, #fff 0 29%, rgba(235,227,247,.9) 30% 34%, #fff 35% 55%, rgba(89,35,156,.25) 56% 59%, transparent 60%); filter: drop-shadow(0 13px 16px rgba(36,7,69,.12)); }
.exploded-layer-decision::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(89,35,156,.18); border-radius: 50%; }
.exploded-layer-decision b { position: absolute; top: 50%; left: 50%; z-index: 1; width: 13px; height: 13px; border: 0; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 6px rgba(255,92,53,.1); transform: translate(-50%, -50%); }
.exploded-layer-decision b::before, .exploded-layer-decision b::after { display: none; }
.exploded-layer span, .exploded-layer i, .exploded-layer b { animation: component-detail-float 5.6s ease-in-out calc(var(--component-delay) + 1.35s) infinite alternate; }
.hero-media { width: clamp(166px, 32%, 196px); }
.marker-process { top: 54%; left: 6%; }
.marker-data { bottom: 9%; left: 18%; }
.marker-decision { top: 73%; right: 16%; }

@keyframes product-component-open { from { opacity: 0; transform: translate(-50%, -50%) translate3d(0, 0, -60px) rotate(var(--component-rotate)) scale(.58); } to { opacity: 1; transform: translate(-50%, -50%) translate3d(var(--component-x), var(--component-y), var(--component-z)) rotate(var(--component-rotate)) scale(1); } }
@keyframes component-detail-float { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(0, -3px, 0); } }

@media (max-width: 767px) {
  .exploded-layer-presence { --component-x: -64px; --component-y: -73px; width: 96px; height: 65px; }
  .exploded-layer-experience { --component-x: 72px; --component-y: -47px; width: 85px; height: 63px; }
  .exploded-layer-process { --component-x: -83px; --component-y: 4px; width: 75px; height: 72px; }
  .exploded-layer-information { --component-x: 78px; --component-y: 26px; width: 73px; height: 68px; padding: 13px 11px; }
  .exploded-layer-data { --component-x: -48px; --component-y: 78px; width: 79px; height: 60px; padding: 14px 15px 11px; gap: 4px; }
  .exploded-layer-decision { --component-x: 53px; --component-y: 79px; width: 57px; height: 57px; }
  .exploded-layer-information span { height: 3px; margin: 5px 0; }
  .exploded-layer-information::before { top: 7px; left: 11px; height: 3px; }
  .exploded-layer-data::before { top: 8px; left: 13px; height: 3px; }
  .exploded-layer-decision::before { inset: 8px; }
  .exploded-layer-decision b { width: 9px; height: 9px; box-shadow: 0 0 0 4px rgba(255,92,53,.1); }
  .hero-media { width: clamp(120px, 33vw, 142px); }
  .marker-process { top: 56%; left: 4%; }
  .marker-data { bottom: 6%; left: 21%; }
  .marker-decision { top: 72%; right: 12%; }
}

/* Abertura controlada do ecossistema: executa ao entrar em destaque na viewport. */
.hero .exploded-layer { opacity: 0; transform: translate(-50%, -50%) translate3d(0, 0, -60px) rotate(var(--component-rotate)) scale(.58); animation: none; }
.hero.is-exploded .exploded-layer { animation: product-component-open 1.28s cubic-bezier(.18, .82, .26, 1) calc(var(--component-delay) + var(--explosion-offset, 0ms)) both; }
.hero .hero-media { opacity: 0; transform: translate(-50%, -50%) scale(.86); animation: none; }
.hero.is-exploded .hero-media { animation: hero-core-open .82s cubic-bezier(.18, .82, .26, 1) calc(.18s + var(--explosion-offset, 0ms)) both; }
.hero .hero-node { opacity: 0; filter: blur(2px); transition: opacity .52s var(--ease), filter .52s var(--ease); }
.hero.is-exploded .hero-node { opacity: 1; filter: none; transition-delay: calc(.28s + var(--explosion-offset, 0ms)); }
.hero.is-exploded .hero-node-presence { transition-delay: calc(.36s + var(--explosion-offset, 0ms)); }
.hero.is-exploded .hero-node-assistant { transition-delay: calc(.44s + var(--explosion-offset, 0ms)); }
.hero .hero-flow { opacity: .08; transition: opacity 1.1s ease; }
.hero.is-exploded .hero-flow { opacity: .54; transition-delay: calc(.1s + var(--explosion-offset, 0ms)); }
.hero .flow-point { opacity: 0; transition: opacity .42s ease; }
.hero.is-exploded .flow-point { opacity: 1; transition-delay: calc(.38s + var(--explosion-offset, 0ms)); }

@keyframes hero-core-open { from { opacity: 0; transform: translate(-50%, -50%) scale(.86); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .title-reveal { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .js .typewriter-reserve { visibility: visible; }
  .js .typewriter-visual { display: none; }
  .hero-node, .signal-card { animation: none !important; transform: none !important; }
  .exploded-layer { opacity: 1; transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-16deg) translate3d(var(--layer-x), var(--layer-y), var(--layer-z)) scale(1); animation: none !important; }
  .exploded-layer { transform: translate(-50%, -50%) translate3d(var(--component-x), var(--component-y), var(--component-z)) rotate(var(--component-rotate)) scale(1); }
  .exploded-layer span, .exploded-layer i, .exploded-layer b { animation: none !important; }
  .exploded-layer::after { animation: none !important; }
  .hero .hero-media, .hero .hero-node, .hero .flow-point { opacity: 1; filter: none; transform: translate(-50%, -50%) scale(1); animation: none !important; transition: none; }
  .hero .hero-node { transform: none; }
  .hero .hero-flow { opacity: .54; transition: none; }
}
