:root {
  --navy: #0a0a52;
  --navy-2: #04061d;
  --ink: #0d1238;
  --muted: #676b84;
  --line: #e7e8f3;
  --purple: #7c25f6;
  --purple-2: #9a4dff;
  --violet: #5c25e7;
  --blue: #167bff;
  --cyan: #31d7ff;
  --white: #ffffff;
  --off-white: #f7f8fd;
  --green: #44e7ad;
  --container: 1240px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 22px 70px rgba(25, 21, 77, 0.12);
  --shadow-soft: 0 12px 38px rgba(25, 21, 77, 0.08);
  --transition: 260ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
::selection { background: rgba(124, 37, 246, .18); color: var(--navy); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  inset: 10px auto auto 10px;
  z-index: 9999;
  padding: 12px 18px;
  transform: translateY(-140%);
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(124, 37, 246, .45); outline-offset: 4px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 72px;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(17, 19, 69, .06);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(9, 8, 72, .08); background: rgba(255,255,255,.95); }
.header-inner { height: 72px; display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; width: 126px; }
.brand img { width: 126px; height: 45px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(13px, 1.35vw, 24px); }
.desktop-nav a {
  position: relative;
  color: #3b3d5c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color var(--transition);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple);
  transition: right var(--transition);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--purple); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 750;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #6622df 0%, #8a2cff 56%, #7047ff 100%);
  box-shadow: 0 11px 28px rgba(119, 38, 240, .26), inset 0 1px 0 rgba(255,255,255,.28);
}
.button-primary:hover { box-shadow: 0 16px 36px rgba(119, 38, 240, .34), inset 0 1px 0 rgba(255,255,255,.34); }
.button-outline { border-color: rgba(124,37,246,.55); color: var(--purple); background: rgba(255,255,255,.78); }
.button-outline:hover { border-color: var(--purple); background: rgba(124,37,246,.055); }
.button-dark-outline { color: #fff; border-color: rgba(154,77,255,.72); background: rgba(6,7,40,.2); box-shadow: inset 0 0 20px rgba(124,37,246,.06); }
.button-dark-outline:hover { background: rgba(124,37,246,.13); }
.button-small { min-height: 40px; padding: 10px 16px; font-size: 11px; border-radius: 8px; }
.whatsapp-icon { font-size: 16px; transform: rotate(-24deg); }
.menu-toggle { display: none; width: 46px; height: 46px; place-items: center; border: 0; border-radius: 12px; background: #f6f4fe; cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--navy); border-radius: 999px; transition: transform var(--transition), opacity var(--transition); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 72px 0 auto 0; max-height: calc(100vh - 72px); overflow-y: auto; padding: 18px 24px 30px; background: rgba(255,255,255,.98); border-top: 1px solid var(--line); box-shadow: 0 24px 50px rgba(10, 10, 82, .14); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 14px 2px; border-bottom: 1px solid var(--line); font-weight: 750; color: var(--navy); }
.mobile-menu .button { width: 100%; margin-top: 20px; }

/* Common typography */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.05; letter-spacing: -.035em; }
h1 { font-size: clamp(46px, 5vw, 76px); margin-bottom: 30px; }
h2 { font-size: clamp(37px, 4.25vw, 62px); margin-bottom: 24px; }
h3 { font-size: 20px; margin-bottom: 10px; }
h1 span, h2 span, .section-heading h2 span, .authority-item h3 span { color: var(--purple); }
p { color: var(--muted); }
.section-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-kicker::before, .eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 999px; background: currentColor; }
.section-kicker.light { color: #a66eff; }
.long-copy p { margin-bottom: 12px; }
.long-copy strong { color: var(--ink); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .section-kicker { justify-content: center; }
.section-heading.centered p:last-child { font-size: 18px; }

/* Hero */
.hero { position: relative; min-height: min(760px, calc(100vh - 72px)); overflow: hidden; background: #fff; }
.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -170px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119,45,255,.10), rgba(44,171,255,.03) 45%, transparent 69%);
  pointer-events: none;
}
.hero-orbit { position: absolute; right: 5%; top: 12%; width: 520px; aspect-ratio: 1; border: 1px solid rgba(124,37,246,.08); border-radius: 50%; transform: rotate(-18deg); }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(21,113,255,.08); }
.hero-orbit::before { inset: 44px -70px; transform: rotate(28deg); }
.hero-orbit::after { inset: 105px -100px; transform: rotate(56deg); }
.hero-grid { min-height: inherit; display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); align-items: center; gap: 18px; }
.hero-copy { position: relative; z-index: 3; padding-block: 72px; }
.hero-copy h1 { max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-media { position: relative; align-self: stretch; display: flex; align-items: end; justify-content: end; min-height: 610px; z-index: 2; }
.hero-media picture { width: 100%; align-self: end; }
.hero-media img { width: 100%; max-height: 700px; object-fit: contain; object-position: right bottom; mix-blend-mode: multiply; }
.hero-glow { position: absolute; width: 420px; height: 420px; right: 8%; top: 18%; border-radius: 50%; background: radial-gradient(circle, rgba(130,48,255,.15), rgba(65,173,255,.06) 50%, transparent 72%); filter: blur(8px); }

/* Dark space backgrounds */
.dark-space, .dark-panel { position: relative; overflow: hidden; color: #fff; background: #02051e; }
.dark-space h2, .dark-space h3, .dark-panel h2, .dark-panel h3 { color: #fff; }
.dark-space p, .dark-panel p { color: #c2c6db; }
.stars, .stars-subtle { position: absolute; inset: 0; opacity: .68; pointer-events: none; background-image: radial-gradient(circle at 15% 24%, rgba(153,77,255,.9) 0 1px, transparent 1.6px), radial-gradient(circle at 74% 17%, rgba(83,196,255,.72) 0 1px, transparent 1.5px), radial-gradient(circle at 42% 63%, rgba(255,255,255,.76) 0 1px, transparent 1.4px), radial-gradient(circle at 88% 72%, rgba(139,81,255,.7) 0 1px, transparent 1.5px), radial-gradient(circle at 28% 85%, rgba(83,196,255,.56) 0 1px, transparent 1.4px); background-size: 160px 160px, 230px 230px, 195px 195px, 280px 280px, 250px 250px; }
.dark-space::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 58% 48%, rgba(69,34,178,.18), transparent 42%), linear-gradient(180deg, rgba(3,6,29,.2), rgba(2,3,20,.66)); }
.dark-space > .container, .dark-space > .stars + .container, .dark-panel > .container { position: relative; z-index: 2; }

/* Main funnel */
.funnel-section { min-height: 820px; padding: 76px 0 50px; }
.funnel-layout { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(480px, 1.42fr) minmax(160px, .44fr); align-items: center; gap: 12px; }
.funnel-copy { position: relative; z-index: 5; max-width: 390px; }
.funnel-copy h2 { font-size: clamp(38px, 4vw, 58px); }
.funnel-intro { margin: 26px 0 22px; }
.funnel-intro p { margin: 0; color: #fff; font-size: 18px; font-weight: 780; }
.funnel-copy > p { font-size: 15px; }
.stacked-actions { display: grid; max-width: 330px; gap: 10px; margin-top: 28px; }
.funnel-stage { position: relative; min-height: 700px; display: grid; place-items: center; isolation: isolate; }
.particle-canvas { position: absolute; inset: 5% 2% 4%; width: 96%; height: 91%; z-index: 4; pointer-events: none; opacity: .86; mix-blend-mode: screen; }
.funnel-aura { position: absolute; inset: 12% 8% 7%; z-index: 0; background: radial-gradient(ellipse at 50% 45%, rgba(91,60,255,.20), transparent 48%), radial-gradient(ellipse at 50% 78%, rgba(39,219,255,.13), transparent 34%); filter: blur(12px); }
.funnel-svg { position: relative; z-index: 3; width: 100%; max-width: 650px; overflow: visible; filter: drop-shadow(0 22px 42px rgba(80,37,255,.16)); }
.funnel-layer { transform-origin: center; transition: filter 600ms ease; }
.funnel-layer.is-pulsing { filter: drop-shadow(0 0 16px rgba(142,72,255,.8)); }
.funnel-number { fill: #fff; font-size: 31px; font-weight: 800; letter-spacing: -.02em; }
.funnel-label { fill: #d9ddff; font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.funnel-label.small { font-size: 10px; }
.funnel-caption { fill: #9fa8cc; font-size: 11px; }
.core-label { fill: #fff; font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.funnel-core { transform-origin: 310px 594px; animation: corePulse 3.8s ease-in-out infinite; }
@keyframes corePulse { 0%,100% { transform: scale(.96); opacity: .75; } 50% { transform: scale(1.08); opacity: 1; } }
.metric-stack { position: absolute; right: -98px; top: 120px; z-index: 8; display: grid; gap: 13px; width: 180px; }
.metric-card { padding: 13px 13px 9px; border: 1px solid rgba(160,139,255,.2); border-radius: 14px; background: linear-gradient(135deg, rgba(21,27,82,.72), rgba(19,13,65,.4)); box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 16px 28px rgba(0,0,0,.18); backdrop-filter: blur(16px); }
.metric-card div { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 1px 8px; }
.metric-card span { grid-column: 1/-1; color: #aeb4d2; font-size: 10px; }
.metric-card strong { color: #fff; font-size: 16px; }
.metric-card em { font-size: 9px; font-style: normal; font-weight: 800; }
.metric-card .up { color: var(--green); }.metric-card .down { color: #7de7ff; }
.metric-card svg { margin-top: 5px; width: 100%; height: 30px; overflow: visible; }
.metric-card path { fill: none; stroke: #a956ff; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 120; stroke-dashoffset: 120; filter: drop-shadow(0 0 5px rgba(169,86,255,.65)); animation: lineDraw 3.2s ease forwards, lineFloat 6s 3.2s ease-in-out infinite; }
@keyframes lineDraw { to { stroke-dashoffset: 0; } }
@keyframes lineFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-1.5px); } }
.funnel-astronaut { position: relative; z-index: 3; align-self: end; margin-right: -10px; }
.funnel-astronaut img { max-height: 700px; width: 100%; object-fit: contain; object-position: bottom; mix-blend-mode: screen; filter: drop-shadow(0 0 24px rgba(65,89,255,.14)); }

/* Authority */
.authority-strip { border-bottom: 1px solid var(--line); background: #fff; }
.authority-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.authority-item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; min-height: 170px; align-items: center; padding: 30px clamp(24px, 3vw, 46px); border-right: 1px solid var(--line); }
.authority-item:last-child { border-right: 0; }
.authority-item svg { width: 46px; fill: none; stroke: var(--purple); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.authority-item h3 { margin: 0 0 8px; font-size: 19px; }
.authority-item p { margin: 0; font-size: 13px; line-height: 1.45; }

/* Light sections */
.section-light { background: linear-gradient(180deg, #fff, #fafaff); }
.strategy, .growth-assets { padding: 104px 0; }
.split-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); align-items: center; gap: clamp(46px, 7vw, 96px); }
.section-copy h2 { font-size: clamp(38px, 4vw, 58px); }
.editorial-image { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: #eef0f9; box-shadow: var(--shadow); }
.editorial-image::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); }
.editorial-image img { width: 100%; min-height: 540px; object-fit: cover; }
.editorial-image figcaption { position: absolute; left: 22px; right: 22px; bottom: 18px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; color: #fff; background: rgba(4,7,32,.54); backdrop-filter: blur(12px); font-size: 12px; }

/* Methodology */
.methodology { padding: 98px 0; background: #fff; overflow: hidden; }
.methodology-content { display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(320px, .62fr); gap: 24px; align-items: stretch; }
.methodology-steps { position: relative; list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 0; padding: 0; }
.methodology-steps::before { content: ""; position: absolute; left: 8%; right: 8%; top: 25px; height: 1px; background: linear-gradient(90deg, rgba(124,37,246,.15), rgba(124,37,246,.9), rgba(124,37,246,.15)); }
.method-card { position: relative; z-index: 2; min-height: 260px; padding: 66px 18px 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-soft); }
.method-card > span { position: absolute; top: 4px; left: 50%; display: grid; place-items: center; width: 43px; height: 43px; transform: translateX(-50%); border: 6px solid #fff; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--violet), var(--purple-2)); font-size: 12px; font-weight: 850; box-shadow: 0 7px 18px rgba(124,37,246,.24); }
.method-card h3 { text-align: center; font-size: 16px; }
.method-card p { margin: 0; text-align: center; font-size: 12px; line-height: 1.55; }
.method-image { min-height: 260px; margin: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); }
.method-image img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

/* Technology */
.technology { padding: 102px 0; background: radial-gradient(circle at 72% 46%, rgba(73,49,187,.24), transparent 35%), linear-gradient(135deg, #040627, #080632 55%, #03041b); }
.technology-grid { display: grid; grid-template-columns: minmax(350px, .75fr) minmax(560px, 1.25fr); gap: 62px; align-items: center; }
.technology-copy h2 { font-size: clamp(40px, 4.4vw, 62px); }
.technology-copy > p:last-of-type { font-size: 18px; line-height: 1.7; }
.technology-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.technology-tags span { padding: 8px 12px; border: 1px solid rgba(162,119,255,.25); border-radius: 999px; color: #d9dcff; background: rgba(255,255,255,.045); font-size: 11px; font-weight: 700; }
.intelligence-console { position: relative; min-height: 510px; border: 1px solid rgba(162,119,255,.16); border-radius: 28px; overflow: hidden; background: #050729; box-shadow: 0 40px 80px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.06); }
.intelligence-console::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 26%, transparent 78%, rgba(124,37,246,.12)); pointer-events: none; }
.intelligence-console img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; opacity: .93; }
.console-overlay { position: absolute; inset: 0; }
.glass-chip { position: absolute; min-width: 142px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; background: rgba(8,11,48,.58); box-shadow: 0 18px 35px rgba(0,0,0,.2); backdrop-filter: blur(14px); }
.glass-chip span { display: block; color: #abb1d1; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.glass-chip strong { display: block; margin-top: 4px; color: #fff; font-size: 17px; }
.chip-one { top: 8%; right: 6%; }.chip-two { bottom: 10%; left: 5%; }.chip-three { right: 7%; bottom: 12%; }

/* Results */
.results { padding: 102px 0 92px; }
.results-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 50px; align-items: end; margin-bottom: 42px; }
.results-heading h2 { font-size: clamp(39px, 4.4vw, 62px); margin-bottom: 0; }
.results-heading > p { margin-bottom: 8px; }
.results-grid { display: grid; grid-template-columns: minmax(330px, .88fr) minmax(560px, 1.12fr); gap: 24px; }
.case-list { display: grid; gap: 14px; }
.case-card, .dashboard-card { border: 1px solid rgba(139,121,255,.14); border-radius: 18px; background: linear-gradient(135deg, rgba(15,18,67,.86), rgba(8,10,43,.83)); box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 22px 48px rgba(0,0,0,.18); }
.case-card { padding: 20px; }
.case-top { display: flex; align-items: center; gap: 14px; }
.case-mark { flex: 0 0 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(173,114,255,.35); border-radius: 50%; color: #fff; background: radial-gradient(circle at 30% 20%, #a45bff, #39216e); font-weight: 850; font-size: 12px; }
.case-top h3 { margin: 0 0 3px; font-size: 17px; }
.case-top p { margin: 0; color: #d9dcf1; font-size: 12px; }
.case-top small { color: #858bab; font-size: 10px; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.case-metrics div { min-width: 0; padding: 10px 9px; border: 1px solid rgba(255,255,255,.05); border-radius: 10px; background: rgba(255,255,255,.028); }
.case-metrics strong { display: block; color: #fff; font-size: 15px; white-space: nowrap; }
.case-metrics span { display: block; margin-top: 2px; color: #8e95b9; font-size: 9px; }
.case-toggle { width: 100%; margin-top: 14px; padding: 10px 12px; border: 1px solid rgba(145,86,255,.4); border-radius: 9px; color: #c9afff; background: rgba(124,37,246,.07); cursor: pointer; font-size: 11px; font-weight: 750; transition: background var(--transition), color var(--transition); }
.case-toggle:hover { color: #fff; background: rgba(124,37,246,.18); }
.case-details { padding-top: 11px; }
.case-details p { margin: 0; font-size: 11px; }
.dashboard-card { padding: 18px; overflow: hidden; }
.dashboard-header { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 15px; color: #fff; font-weight: 750; }
.dashboard-header small { color: #7d84a7; font-weight: 500; }
.dashboard-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-bottom: 16px; }
.dashboard-kpis > div { padding: 12px; border: 1px solid rgba(255,255,255,.055); border-radius: 10px; background: rgba(255,255,255,.03); }
.dashboard-kpis span { display: block; color: #8188ad; font-size: 9px; }
.dashboard-kpis strong { display: block; margin: 5px 0 2px; color: #fff; font-size: 17px; }
.dashboard-kpis em { color: var(--green); font-size: 8px; font-style: normal; }
.dashboard-card picture { display: block; height: calc(100% - 114px); min-height: 310px; }
.dashboard-card img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; border-radius: 12px; opacity: .92; }
.section-cta { display: flex; justify-content: center; margin-top: 32px; }

/* Solutions */
.solutions { padding: 98px 0; background: #fff; }
.solutions-grid { display: grid; grid-template-columns: minmax(560px, 1.05fr) minmax(440px, .95fr); gap: 34px; align-items: center; }
.solution-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.solution-card { min-height: 265px; padding: 22px 17px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.solution-card:hover { transform: translateY(-5px); border-color: rgba(124,37,246,.25); box-shadow: 0 22px 48px rgba(35,28,95,.12); }
.solution-card svg { width: 38px; margin-bottom: 16px; fill: none; stroke: var(--purple); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.solution-card small { display: block; margin-bottom: 7px; color: var(--purple); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.solution-card h3 { font-size: 15px; line-height: 1.16; }
.solution-card p { margin: 0; font-size: 11px; line-height: 1.55; }
.solutions-image { margin: 0; min-height: 500px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.solutions-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }

/* Assets */
.growth-assets { padding-block: 90px; }
.growth-assets .editorial-image img { min-height: 450px; }
.cinematic::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(9,10,49,.12), transparent 55%), linear-gradient(0deg, rgba(0,0,0,.12), transparent 50%); pointer-events: none; }

/* Journey */
.journey { padding: 100px 0; min-height: 700px; }
.journey-grid { display: grid; grid-template-columns: .62fr 1.18fr .72fr; gap: 42px; align-items: center; }
.journey-copy h2 { font-size: clamp(42px, 5vw, 66px); }
.journey-copy p { max-width: 330px; }
.journey-funnel { position: relative; min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; filter: drop-shadow(0 25px 45px rgba(80,42,255,.16)); }
.journey-funnel::before { content: ""; position: absolute; width: 80%; height: 82%; border-radius: 50%; background: radial-gradient(circle, rgba(112,49,255,.15), transparent 67%); filter: blur(10px); }
.journey-layer { position: relative; z-index: 2; display: grid; place-items: center; height: 82px; margin-top: -8px; clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%); border: 1px solid rgba(106,202,255,.55); color: #fff; background: linear-gradient(135deg, rgba(71,136,255,.15), rgba(122,35,246,.25), rgba(43,223,255,.08)); box-shadow: inset 0 1px 0 rgba(255,255,255,.32), inset 0 -14px 28px rgba(80,31,205,.12), 0 0 20px rgba(101,59,255,.12); backdrop-filter: blur(8px); }
.journey-layer strong { font-size: 19px; }.journey-layer span { color: #a9afd2; font-size: 10px; }
.layer-1 { width: 92%; }.layer-2 { width: 76%; }.layer-3 { width: 61%; }.layer-4 { width: 46%; }
.journey-core { position: relative; z-index: 3; display: grid; place-items: center; width: 140px; height: 115px; margin-top: -2px; clip-path: polygon(7% 0,93% 0,66% 100%,34% 100%); color: #fff; background: radial-gradient(circle at 50% 90%, #fff 0 3%, #7b3cff 17%, rgba(96,38,236,.36) 48%, rgba(28,117,225,.08) 80%); filter: drop-shadow(0 0 24px rgba(131,63,255,.75)); animation: corePulse 4s ease-in-out infinite; }
.journey-core span { max-width: 90px; text-align: center; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.journey-list { list-style: none; display: grid; gap: 14px; margin: 0; padding: 0; }
.journey-list li { display: grid; grid-template-columns: 38px 1fr; align-items: start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.journey-list li > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(142,86,255,.4); border-radius: 10px; color: #b68cff; background: rgba(124,37,246,.08); font-size: 10px; font-weight: 850; }
.journey-list h3 { margin: 0 0 4px; font-size: 15px; }
.journey-list p { margin: 0; font-size: 11px; }

/* Diagnostic */
.diagnostic { padding: 0; background: #fff; }
.diagnostic-grid { width: 100%; max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr); align-items: stretch; }
.diagnostic-copy { width: min(100% - 48px, 620px); margin-left: max(24px, calc((100vw - var(--container)) / 2)); padding: 92px 60px 92px 0; }
.diagnostic-copy h2 { font-size: clamp(39px, 4vw, 58px); }
.check-list { display: grid; gap: 9px; margin: 26px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #434761; font-weight: 700; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--purple), #9d58ff); font-size: 11px; }
.diagnostic-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.diagnostic-image { margin: 0; min-height: 620px; overflow: hidden; background: #eef0f8; }
.diagnostic-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }

/* Footer */
.site-footer { padding: 60px 0 24px; color: #d6d8e8; background: radial-gradient(circle at 20% 30%, rgba(89,43,173,.12), transparent 30%), #050720; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .65fr .8fr .72fr; gap: 60px; }
.footer-brand img { width: 126px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 320px; margin-top: 18px; color: #d3d6e8; }
.footer-brand strong { color: #a86dff; }
.site-footer h2 { margin-bottom: 17px; color: #fff; font-size: 13px; letter-spacing: .02em; }
.site-footer a { display: block; width: fit-content; margin: 8px 0; color: #949ab8; font-size: 12px; transition: color var(--transition); }
.site-footer a:hover { color: #fff; }
.footer-contact p { color: #777e9d; font-size: 11px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 46px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); color: #747a98; font-size: 11px; }
.footer-bottom a { margin: 0; }

/* Reveal animation */
html:not(.js) .reveal { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 780ms cubic-bezier(.2,.7,.2,1), transform 780ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }.reveal-delay-2 { transition-delay: 180ms; }.reveal-delay-3 { transition-delay: 250ms; }.reveal-delay-4 { transition-delay: 320ms; }

/* Tablet */
@media (max-width: 1180px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .desktop-nav { gap: 12px; }
  .desktop-nav a { font-size: 10.5px; }
  .desktop-whatsapp { padding-inline: 12px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; }
  .funnel-layout { grid-template-columns: .66fr 1.25fr .36fr; }
  .metric-stack { right: -50px; width: 160px; }
  .funnel-astronaut { opacity: .84; }
  .technology-grid { grid-template-columns: .78fr 1.22fr; gap: 38px; }
  .results-grid { grid-template-columns: .9fr 1.1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solutions-image { min-height: 440px; }
  .solution-cards { grid-template-columns: repeat(4, 1fr); }
  .journey-grid { grid-template-columns: .52fr 1fr .68fr; gap: 22px; }
}

@media (max-width: 1024px) {
  .desktop-nav, .desktop-whatsapp { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; }
  .hero { min-height: auto; }
  .hero-grid { min-height: 660px; grid-template-columns: .92fr 1.08fr; }
  .hero-copy { padding-block: 64px; }
  .hero-media { min-height: 560px; }
  .funnel-section { padding-top: 80px; }
  .funnel-layout { grid-template-columns: .78fr 1.22fr; }
  .funnel-astronaut { display: none; }
  .metric-stack { right: -10px; top: 120px; }
  .authority-item { padding-inline: 24px; }
  .split-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .editorial-image img { min-height: 480px; }
  .methodology-content { grid-template-columns: 1fr; }
  .method-image { height: 370px; }
  .technology-grid { grid-template-columns: 1fr; }
  .technology-copy { max-width: 760px; }
  .intelligence-console { min-height: 460px; }
  .results-heading { grid-template-columns: 1fr; gap: 12px; }
  .results-grid { grid-template-columns: 1fr; }
  .dashboard-card { min-height: 590px; }
  .journey-grid { grid-template-columns: .72fr 1.28fr; }
  .journey-list { grid-column: 1/-1; grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .journey-list li { grid-template-columns: 1fr; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; padding: 14px; }
  .diagnostic-grid { grid-template-columns: 1fr 1fr; }
  .diagnostic-copy { margin-left: 24px; padding-right: 34px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 820px) {
  h1 { font-size: clamp(42px, 8vw, 60px); }
  h2 { font-size: clamp(36px, 7vw, 54px); }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { order: 2; padding: 22px 0 70px; text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-media { order: 1; min-height: 450px; max-height: 480px; }
  .hero-media img { height: 470px; object-fit: contain; object-position: center bottom; }
  .hero-actions { justify-content: center; }
  .funnel-layout { grid-template-columns: 1fr; }
  .funnel-copy { max-width: 700px; text-align: center; margin-inline: auto; }
  .funnel-copy .section-kicker { justify-content: center; }
  .funnel-copy .stacked-actions { margin-inline: auto; }
  .funnel-stage { min-height: 670px; margin-top: 20px; }
  .funnel-svg { max-width: 580px; }
  .metric-stack { right: 2%; top: 118px; }
  .authority-grid { grid-template-columns: 1fr; }
  .authority-item { min-height: 132px; border-right: 0; border-bottom: 1px solid var(--line); }
  .authority-item:last-child { border-bottom: 0; }
  .split-grid { grid-template-columns: 1fr; }
  .section-copy { max-width: 720px; }
  .editorial-image img { min-height: 420px; }
  .methodology-steps { grid-template-columns: 1fr 1fr; }
  .methodology-steps::before { display: none; }
  .method-card { min-height: 220px; padding-top: 66px; }
  .method-card:last-child { grid-column: 1/-1; }
  .technology { padding-block: 80px; }
  .technology-grid { gap: 36px; }
  .intelligence-console, .intelligence-console img { min-height: 410px; }
  .dashboard-kpis { grid-template-columns: 1fr 1fr; }
  .dashboard-card picture { height: auto; }
  .solution-cards { grid-template-columns: 1fr 1fr; }
  .solution-card { min-height: 225px; }
  .journey-grid { grid-template-columns: 1fr; text-align: center; }
  .journey-copy p { margin-inline: auto; }
  .journey-copy .section-kicker { justify-content: center; }
  .journey-funnel { min-height: 520px; }
  .journey-list { grid-template-columns: 1fr 1fr; text-align: left; }
  .journey-list li:last-child { grid-column: 1/-1; }
  .diagnostic-grid { grid-template-columns: 1fr; }
  .diagnostic-copy { width: min(calc(100% - 40px), 720px); margin-inline: auto; padding: 80px 0; }
  .diagnostic-image, .diagnostic-image img { min-height: 470px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-contact { grid-column: 2/-1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header, .header-inner { min-height: 66px; height: 66px; }
  .mobile-menu { top: 66px; max-height: calc(100vh - 66px); }
  .brand, .brand img { width: 112px; }
  .hero-orbit { width: 340px; right: -80px; top: 4%; }
  .hero-media { min-height: 355px; max-height: 390px; margin-inline: -16px; }
  .hero-media img { height: 390px; }
  .hero-copy { padding-bottom: 56px; }
  .hero-copy h1 { font-size: clamp(38px, 11.4vw, 52px); }
  .hero-actions, .diagnostic-actions { display: grid; width: 100%; }
  .button { width: 100%; min-height: 52px; }
  .funnel-section { padding: 68px 0 36px; }
  .funnel-copy h2 { font-size: 40px; }
  .funnel-stage { min-height: 590px; margin-inline: -18px; }
  .funnel-svg { width: 108%; }
  .funnel-number { font-size: 27px; }
  .funnel-label { font-size: 11px; }
  .funnel-caption { font-size: 10px; }
  .metric-stack { position: relative; right: auto; top: auto; bottom: auto; grid-template-columns: repeat(3, 1fr); width: calc(100% - 38px); margin: -42px auto 0; }
  .metric-card { min-width: 0; padding: 9px; }
  .metric-card strong { font-size: 13px; }.metric-card span { font-size: 8px; }.metric-card em { font-size: 7px; }
  .metric-card svg { height: 24px; }
  .authority-item { grid-template-columns: 44px 1fr; padding: 24px 18px; }
  .authority-item svg { width: 38px; }
  .strategy, .growth-assets, .methodology, .solutions, .results, .technology, .journey { padding-block: 72px; }
  .section-copy h2, .technology-copy h2, .results-heading h2, .diagnostic-copy h2 { font-size: 38px; }
  .editorial-image, .solutions-image, .intelligence-console { border-radius: 20px; }
  .editorial-image img { min-height: 360px; }
  .editorial-image figcaption { font-size: 10px; left: 12px; right: 12px; bottom: 12px; }
  .methodology-steps { grid-template-columns: 1fr; }
  .method-card, .method-card:last-child { grid-column: auto; min-height: auto; padding: 62px 20px 24px; }
  .method-image { height: 300px; }
  .intelligence-console, .intelligence-console img { min-height: 350px; }
  .glass-chip { min-width: 118px; padding: 9px 10px; }
  .glass-chip strong { font-size: 13px; }
  .results-heading { margin-bottom: 30px; }
  .case-card { padding: 16px; }
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .case-metrics > div:last-child { grid-column: 1/-1; }
  .dashboard-card { min-height: auto; padding: 14px; }
  .dashboard-header { display: grid; gap: 2px; }
  .dashboard-kpis { grid-template-columns: 1fr 1fr; }
  .dashboard-card img { min-height: 260px; }
  .solution-cards { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
  .solutions-image, .solutions-image img { min-height: 360px; }
  .growth-assets .editorial-image img { min-height: 350px; }
  .journey-funnel { min-height: 460px; margin-inline: -8px; }
  .journey-layer { height: 72px; }
  .journey-layer strong { font-size: 15px; }
  .journey-list { grid-template-columns: 1fr; }
  .journey-list li:last-child { grid-column: auto; }
  .diagnostic-copy { padding: 68px 0; }
  .diagnostic-image, .diagnostic-image img { min-height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; gap: 15px; }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .hero-copy h1 { font-size: 36px; }
  .hero-media { min-height: 330px; }
  .hero-media img { height: 350px; }
  .funnel-copy h2, .section-copy h2, .technology-copy h2, .results-heading h2, .diagnostic-copy h2 { font-size: 35px; }
  .funnel-stage { min-height: 550px; }
  .metric-stack { width: calc(100% - 22px); gap: 6px; }
  .metric-card strong { font-size: 11px; }
  .dashboard-kpis strong { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .particle-canvas { display: none; }
}

/* =========================================================
   Correções finais de legibilidade e integração visual
   ========================================================= */
body { font-size: 17px; line-height: 1.65; }
p { font-size: 17px; line-height: 1.68; }
.desktop-nav a { font-size: 13px; font-weight: 750; }
.button { min-height: 54px; padding: 15px 24px; font-size: 16px; font-weight: 780; line-height: 1.25; }
.button-small { min-height: 44px; padding: 11px 15px; font-size: 15px; }
.mobile-menu nav a { font-size: 17px; line-height: 1.4; }
.section-kicker, .eyebrow { font-size: 14px; line-height: 1.35; letter-spacing: .105em; }
.section-heading.centered p:last-child { font-size: 18px; line-height: 1.65; }
.long-copy p { margin-bottom: 15px; font-size: 17px; line-height: 1.7; }

/* Funil principal */
.funnel-section { padding-bottom: 64px; }
.funnel-copy { max-width: 430px; }
.funnel-copy > p { font-size: 17px; line-height: 1.72; }
.funnel-intro { margin-block: 28px 24px; }
.funnel-intro p { font-size: 19px; line-height: 1.55; }
.funnel-number { font-size: 34px; font-weight: 850; }
.funnel-label, .funnel-label.small { font-size: 14px; font-weight: 850; letter-spacing: .08em; }
.funnel-caption { fill: #bdc4e1; font-size: 14px; font-weight: 550; }
.core-label { font-size: 14px; font-weight: 850; letter-spacing: .07em; }
.metric-stack { right: -118px; width: 224px; gap: 15px; }
.metric-card { padding: 16px 16px 12px; border-color: rgba(176,157,255,.29); }
.metric-card div { gap: 4px 10px; }
.metric-card span { color: #c3c8e2; font-size: 14px; font-weight: 650; line-height: 1.35; }
.metric-card strong { font-size: 22px; line-height: 1.2; }
.metric-card em { font-size: 14px; line-height: 1.3; }
.metric-card svg { height: 34px; margin-top: 9px; }
.funnel-astronaut, .funnel-astronaut picture { background: transparent; }
.funnel-astronaut img {
  max-height: 700px;
  mix-blend-mode: normal;
  background: transparent;
  filter: drop-shadow(0 18px 34px rgba(23,34,110,.35)) drop-shadow(0 0 22px rgba(88,74,255,.16));
}

/* Faixa de autoridade */
.authority-item { min-height: 196px; padding-block: 34px; }
.authority-item h3 { font-size: 21px; line-height: 1.18; }
.authority-item p { font-size: 16px; line-height: 1.6; color: #555a76; }

/* Estratégia */
.section-copy { min-width: 0; }
.section-copy h2 { line-height: 1.08; }
.editorial-image figcaption { padding: 15px 17px; font-size: 14px; font-weight: 650; line-height: 1.45; }

/* Metodologia — somente os cinco cards */
.methodology-content { display: block; }
.methodology-steps { width: 100%; max-width: 1220px; margin-inline: auto; gap: 16px; }
.methodology-steps::before { top: 27px; }
.method-card { min-height: 330px; padding: 76px 20px 28px; }
.method-card > span { width: 48px; height: 48px; font-size: 14px; }
.method-card h3 { font-size: 19px; line-height: 1.22; margin-bottom: 14px; }
.method-card p { font-size: 15px; line-height: 1.65; color: #565b76; }

/* Tecnologia */
.technology-copy > p:last-of-type { font-size: 18px; line-height: 1.75; }
.technology-tags { gap: 10px; }
.technology-tags span { padding: 10px 14px; font-size: 14px; line-height: 1.3; font-weight: 750; }
.intelligence-console { min-height: 530px; }
.intelligence-console img { min-height: 530px; object-fit: cover; opacity: 1; }
.glass-chip { min-width: 174px; padding: 15px 17px; }
.glass-chip span { font-size: 14px; line-height: 1.3; font-weight: 750; }
.glass-chip strong { font-size: 21px; line-height: 1.3; }

/* Resultados */
.results-heading > p { font-size: 17px; line-height: 1.68; color: #d2d6e8; }
.results-grid { grid-template-columns: minmax(390px, .92fr) minmax(600px, 1.08fr); gap: 28px; }
.case-list { gap: 18px; }
.case-card { padding: 24px; }
.case-mark { flex-basis: 50px; height: 50px; font-size: 14px; }
.case-top { align-items: flex-start; gap: 16px; }
.case-top h3 { margin-bottom: 6px; font-size: 20px; line-height: 1.2; }
.case-top p { font-size: 16px; line-height: 1.55; }
.case-top small { display: block; margin-top: 4px; color: #aeb5d3; font-size: 14px; line-height: 1.4; }
.case-metrics { gap: 12px; margin-top: 22px; }
.case-metrics div { min-height: 86px; padding: 14px 12px; }
.case-metrics strong { font-size: 19px; line-height: 1.25; white-space: normal; overflow-wrap: anywhere; }
.case-metrics span { margin-top: 5px; color: #b1b8d6; font-size: 14px; line-height: 1.4; }
.case-toggle { min-height: 48px; margin-top: 18px; padding: 13px 16px; font-size: 15px; font-weight: 780; line-height: 1.3; }
.case-details { padding-top: 15px; }
.case-details p { font-size: 15px; line-height: 1.65; }
.dashboard-card { padding: 22px; }
.dashboard-header { align-items: center; padding-bottom: 18px; font-size: 17px; line-height: 1.4; }
.dashboard-header small { font-size: 14px; line-height: 1.4; }
.dashboard-kpis { gap: 12px; margin-bottom: 18px; }
.dashboard-kpis > div { min-height: 104px; padding: 15px; }
.dashboard-kpis span { color: #aeb5d3; font-size: 14px; line-height: 1.35; }
.dashboard-kpis strong { margin-block: 7px 4px; font-size: 24px; line-height: 1.15; }
.dashboard-kpis em { font-size: 14px; line-height: 1.35; }
.dashboard-card picture { display: block; height: auto; min-height: 0; }
.dashboard-card img { width: 100%; height: auto; min-height: 0; aspect-ratio: 1920 / 920; object-fit: contain; border-radius: 14px; opacity: 1; }

/* Soluções */
.solutions-grid { grid-template-columns: minmax(600px, 1.12fr) minmax(420px, .88fr); gap: 42px; }
.solution-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.solution-card { min-height: 290px; padding: 26px 24px; }
.solution-card small { margin-bottom: 9px; font-size: 14px; line-height: 1.35; }
.solution-card h3 { font-size: 19px; line-height: 1.25; margin-bottom: 12px; }
.solution-card p { font-size: 15px; line-height: 1.65; }
.solution-card svg { width: 42px; margin-bottom: 18px; }
.solutions-image { min-height: 560px; }
.solutions-image img { min-height: 560px; }

/* Ativos e jornada */
.journey-copy > p:last-child { font-size: 17px; line-height: 1.65; }
.journey-layer { min-height: 92px; height: auto; padding: 13px 20px; text-align: center; }
.journey-layer strong { font-size: 20px; line-height: 1.25; }
.journey-layer span { color: #c2c8e2; font-size: 14px; line-height: 1.4; }
.journey-core { width: 166px; height: 132px; }
.journey-core span { max-width: 125px; font-size: 14px; line-height: 1.35; }
.journey-list { gap: 16px; }
.journey-list li { grid-template-columns: 44px 1fr; gap: 14px; padding-block: 15px; }
.journey-list li > span { width: 40px; height: 40px; font-size: 14px; }
.journey-list h3 { font-size: 19px; line-height: 1.25; margin-bottom: 5px; }
.journey-list p { font-size: 15px; line-height: 1.5; }

/* Diagnóstico e rodapé */
.check-list li { font-size: 16px; line-height: 1.55; }
.site-footer h2 { font-size: 16px; }
.site-footer a, .footer-contact p, .footer-bottom { font-size: 14px; line-height: 1.5; }
.footer-brand p { font-size: 16px; line-height: 1.6; }

@media (max-width: 1280px) {
  .results-grid { grid-template-columns: minmax(360px, .9fr) minmax(540px, 1.1fr); }
  .metric-stack { right: -72px; width: 208px; }
}

@media (max-width: 1180px) {
  .desktop-nav { gap: 10px; }
  .desktop-nav a { font-size: 13px; }
  .desktop-whatsapp { padding-inline: 12px; font-size: 14px; }
  .metric-stack { right: -20px; width: 200px; }
  .results-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solutions-image, .solutions-image img { min-height: 500px; }
}

@media (max-width: 1024px) {
  .funnel-copy { max-width: 420px; }
  .metric-stack { right: 0; width: 200px; }
  .method-card { min-height: 350px; padding-inline: 16px; }
  .dashboard-card { min-height: auto; }
  .journey-list li { min-height: 150px; }
}

@media (max-width: 820px) {
  body, p { font-size: 16px; }
  .button { font-size: 16px; }
  .hero-copy .eyebrow { font-size: 14px; }
  .funnel-copy > p, .funnel-intro p { font-size: 17px; }
  .funnel-stage { min-height: 760px; }
  .metric-stack { right: 1%; top: 104px; width: 210px; }
  .methodology-steps { gap: 18px; }
  .method-card { min-height: 290px; padding: 74px 24px 28px; }
  .method-card p { font-size: 16px; }
  .technology-copy > p:last-of-type { font-size: 17px; }
  .intelligence-console, .intelligence-console img { min-height: 430px; }
  .results-heading > p { font-size: 16px; }
  .case-top p { font-size: 16px; }
  .case-details p, .case-metrics span, .case-top small { font-size: 14px; }
  .solution-card p { font-size: 16px; }
  .journey-list p { font-size: 16px; }
}

@media (max-width: 600px) {
  body, p, .long-copy p { font-size: 16px; line-height: 1.68; }
  .section-kicker, .eyebrow { font-size: 14px; }
  .button, .button-small { min-height: 54px; padding: 15px 18px; font-size: 16px; }
  .hero-actions { gap: 12px; }
  .funnel-section { padding-bottom: 62px; }
  .funnel-stage { min-height: auto; margin-inline: -8px; padding-top: 8px; }
  .funnel-svg { width: 112%; max-width: 620px; }
  .funnel-number { font-size: 38px; }
  .funnel-label, .funnel-label.small { font-size: 21px; letter-spacing: .045em; }
  .funnel-caption { font-size: 19px; }
  .core-label { font-size: 20px; letter-spacing: .04em; }
  .metric-stack {
    position: relative;
    right: auto;
    top: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    max-width: 430px;
    margin: -18px auto 0;
    gap: 12px;
  }
  .metric-card { padding: 16px; }
  .metric-card span { font-size: 14px; }
  .metric-card strong { font-size: 22px; }
  .metric-card em { font-size: 14px; }
  .authority-item { min-height: 160px; padding: 28px 20px; }
  .authority-item h3 { font-size: 20px; }
  .authority-item p { font-size: 16px; line-height: 1.6; }
  .editorial-image figcaption { left: 14px; right: 14px; bottom: 14px; padding: 13px 14px; font-size: 14px; }
  .method-card, .method-card:last-child { min-height: auto; padding: 72px 24px 30px; }
  .method-card h3 { font-size: 20px; }
  .method-card p { font-size: 16px; }
  .technology-tags span { font-size: 14px; }
  .intelligence-console { min-height: 390px; }
  .intelligence-console img { min-height: 390px; }
  .glass-chip { min-width: 150px; padding: 12px; }
  .glass-chip span { font-size: 14px; }
  .glass-chip strong { font-size: 18px; }
  .case-card { padding: 20px; }
  .case-top h3 { font-size: 20px; }
  .case-top p { font-size: 16px; }
  .case-top small { font-size: 14px; }
  .case-metrics { grid-template-columns: 1fr; }
  .case-metrics > div:last-child { grid-column: auto; }
  .case-metrics strong { font-size: 20px; }
  .case-metrics span { font-size: 14px; }
  .case-toggle { font-size: 15px; }
  .case-details p { font-size: 16px; }
  .dashboard-header { font-size: 16px; }
  .dashboard-header small { font-size: 14px; }
  .dashboard-kpis { grid-template-columns: 1fr; }
  .dashboard-kpis > div { min-height: 96px; }
  .dashboard-kpis span, .dashboard-kpis em { font-size: 14px; }
  .dashboard-kpis strong { font-size: 24px; }
  .dashboard-card img { aspect-ratio: 1920 / 920; }
  .solution-cards { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; padding: 25px 22px; }
  .solution-card small { font-size: 14px; }
  .solution-card h3 { font-size: 20px; }
  .solution-card p { font-size: 16px; }
  .journey-layer { min-height: 88px; padding-inline: 14px; }
  .journey-layer strong { font-size: 19px; }
  .journey-layer span { font-size: 14px; }
  .journey-core span { font-size: 14px; }
  .journey-list li { min-height: auto; padding: 17px; }
  .journey-list h3 { font-size: 19px; }
  .journey-list p { font-size: 16px; }
  .check-list li { font-size: 16px; }
  .site-footer h2 { font-size: 17px; }
  .site-footer a, .footer-contact p, .footer-bottom { font-size: 14px; }
}

@media (max-width: 390px) {
  .metric-stack { width: calc(100% - 20px); }
  .metric-card strong { font-size: 21px; }
  .dashboard-kpis strong { font-size: 23px; }
}

/* Ajustes de composição após validação visual */
.results-grid { align-items: start; }
.dashboard-card { height: auto; align-self: start; }
@media (min-width: 1025px) {
  .funnel-astronaut picture { display: block; transform: translateX(42px); }
  .funnel-astronaut img { width: 190px; max-width: 190px; margin-left: auto; }
}
@media (max-width: 600px) {
  .intelligence-console { min-height: 0; overflow: hidden; }
  .intelligence-console picture { display: block; }
  .intelligence-console img { width: 100%; height: auto; min-height: 0; aspect-ratio: 2200 / 1150; object-fit: contain; }
  .console-overlay { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px; }
  .glass-chip, .chip-one, .chip-two, .chip-three { position: static; min-width: 0; width: 100%; }
  .chip-three { grid-column: 1 / -1; }
}
