:root {
  --blue: #1f55e6;
  --blue-dark: #081a4d;
  --ink: #11151c;
  --muted: #525762;
  --paper: #ffffff;
  --gray: #f4f4f4;
  --line: #d9d9d9;
  --soft-line: rgba(17, 21, 28, 0.12);
  --max: 1420px;
  --section-y: 104px;
  --display: Impact, "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
[data-site-header], [data-site-footer], [data-lead-modal-root] { display: contents; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 128px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 80px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 90; background: var(--paper); }
.site-header__top, .site-header__bottom { min-height: 56px; background: var(--paper); border-bottom: 1px solid var(--line); }
.header-row { display: flex; align-items: center; justify-content: space-between; min-height: 56px; }
.header-row--bottom { justify-content: flex-end; }
.brand-logo { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo__text { color: currentColor; font-size: 13px; font-weight: 900; letter-spacing: 0.08em; line-height: 1; text-transform: uppercase; }
.site-logo { color: var(--ink); }
.footer-logo { color: var(--paper); }
.site-nav, .page-nav { display: flex; align-items: center; justify-content: flex-end; gap: 28px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.site-nav { color: rgba(17, 21, 28, 0.74); }
.site-nav > a, .site-nav__group > a, .page-nav a { display: inline-flex; align-items: center; min-height: 56px; }
.site-nav__group { position: relative; display: inline-flex; align-items: center; min-height: 56px; }
.site-nav__submenu { position: absolute; top: calc(100% - 1px); right: 0; z-index: 100; display: grid; min-width: 240px; padding: 10px 16px; visibility: hidden; background: var(--paper); border: 1px solid var(--line); opacity: 0; transform: translateY(6px); transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease; }
.site-nav__submenu a, .site-nav__submenu .site-nav__disabled { display: flex; align-items: center; min-height: 40px; color: var(--ink); }
.site-nav__submenu .site-nav__disabled { color: rgba(17, 21, 28, 0.46); cursor: default; }
.site-nav__submenu small { margin-left: 8px; color: var(--blue); font-size: 8px; }
.site-nav__group:hover .site-nav__submenu, .site-nav__group:focus-within .site-nav__submenu { visibility: visible; opacity: 1; transform: translateY(0); }
.site-nav__cta { min-height: 34px !important; padding: 0 13px; color: var(--paper); background: var(--blue); border: 1px solid var(--blue); }
.site-nav__cta:hover { background: #1649d8; border-color: #1649d8; }
.page-nav a,
.site-nav--home a:not(.site-nav__cta) { position: relative; }
.page-nav a::after,
.site-nav--home a:not(.site-nav__cta)::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; content: ""; background: var(--blue); opacity: 0; }
.page-nav a:hover::after,
.page-nav a.is-active::after,
.site-nav--home a:not(.site-nav__cta):hover::after,
.site-nav--home a:not(.site-nav__cta).is-active::after { opacity: 1; }
.menu-toggle, .mobile-menu { display: none; }

.kicker { margin: 0 0 16px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.17em; line-height: 1.2; text-transform: uppercase; }
.kicker.on-dark { color: rgba(255, 255, 255, 0.84); }
h1, h2 { margin: 0; font-family: var(--display); font-weight: 900; letter-spacing: 0; line-height: 0.92; text-transform: uppercase; }
h1 { max-width: 1180px; font-size: clamp(4rem, 6.2vw, 7.2rem); }
h2 { max-width: 900px; font-size: clamp(2.8rem, 4.3vw, 4.8rem); }
h3 { margin: 0; font-size: 20px; line-height: 1.15; }
.home-hero-title span { display: block; }
.home-hero-title .hero-title-line--desktop { white-space: nowrap; }
.home-hero-title .hero-title-line--mobile { display: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 22px; border: 1px solid currentColor; font-size: 10px; font-weight: 900; letter-spacing: 0.14em; line-height: 1.1; text-align: center; text-transform: uppercase; transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease; }
.btn:hover { transform: translateY(-1px); }
.btn.solid { color: var(--paper); background: var(--blue); border-color: var(--blue); }
.btn.solid:hover { background: #1649d8; border-color: #1649d8; }
.btn.secondary { color: var(--blue); background: transparent; border-color: rgba(31, 85, 230, 0.58); }
.btn.secondary:hover { color: var(--paper); background: var(--blue); border-color: var(--blue); }
.btn.outline-light { color: var(--paper); background: transparent; border-color: rgba(255, 255, 255, 0.9); }
.btn.outline-light:hover { color: var(--blue-dark); background: var(--paper); border-color: var(--paper); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; max-width: 880px; margin-top: 34px; }
.hero-chips span { display: inline-flex; min-height: 32px; align-items: center; padding: 0 12px; color: rgba(255, 255, 255, 0.78); border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.045); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }

.institutional-hero { position: relative; min-height: min(840px, calc(100vh - 112px)); overflow: hidden; color: var(--paper); background: var(--blue-dark); }
.institutional-hero__media, .institutional-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.institutional-hero__media { object-fit: cover; object-position: center; }
.institutional-hero__video { background: var(--blue-dark) url("/assets/video/home-hero-poster.webp") center / cover no-repeat; }
.studies-hero__video { background: var(--blue-dark) url("/assets/video/estudos-hero-poster.webp") center / cover no-repeat; }
.studies-hero .studies-hero__video { object-position: 62% center; filter: saturate(0.82) contrast(1.04) brightness(0.92); }
.studies-hero .institutional-hero__overlay {
  background:
    radial-gradient(ellipse at 20% 48%, rgba(3, 8, 22, 0.98) 0%, rgba(3, 8, 22, 0.88) 34%, rgba(3, 8, 22, 0.46) 61%, rgba(3, 8, 22, 0.1) 78%),
    linear-gradient(90deg, rgba(5, 14, 42, 0.98) 0%, rgba(8, 26, 77, 0.88) 45%, rgba(8, 26, 77, 0.48) 70%, rgba(31, 85, 230, 0.24) 100%),
    linear-gradient(180deg, rgba(3, 9, 28, 0.24), rgba(3, 9, 28, 0.68));
}
.institutional-hero__overlay { background: linear-gradient(90deg, rgba(8, 26, 77, 0.96), rgba(8, 26, 77, 0.72) 55%, rgba(31, 85, 230, 0.26)), linear-gradient(180deg, rgba(3, 9, 28, 0.12), rgba(3, 9, 28, 0.6)); }
.institutional-hero__inner { position: relative; z-index: 1; display: flex; min-height: inherit; flex-direction: column; justify-content: center; padding: 86px 0 96px; }
.institutional-hero__inner > p:not(.kicker) { max-width: 780px; margin: 26px 0 0; color: rgba(255, 255, 255, 0.86); font-size: 18px; line-height: 1.52; }
.compact-hero { min-height: 560px; }
.compact-hero h1 { max-width: 850px; font-size: clamp(4rem, 6.3vw, 7rem); }
.status-badge { display: inline-flex; align-items: center; width: max-content; min-height: 30px; margin-top: 26px; padding: 0 12px; color: var(--paper); border: 1px solid rgba(255, 255, 255, 0.44); background: rgba(255, 255, 255, 0.08); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }

.site-section { padding: var(--section-y) 0; }
.site-section.gray { background: #f3f4f6; }
.site-section.blue { color: var(--paper); background: var(--blue); }
.section-head { margin-bottom: 48px; }
.section-head > p:not(.kicker) { max-width: 760px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.52; }
.section-head.on-dark > p:not(.kicker) { color: rgba(255, 255, 255, 0.82); }

.home-thesis { padding: 76px 0; background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%); }
.thesis-panel { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr); gap: clamp(46px, 6vw, 96px); align-items: start; padding-top: 44px; border-top: 1px solid var(--line); }
.thesis-copy h2 { max-width: 720px; font-size: clamp(2.4rem, 3.6vw, 4.2rem); }
.thesis-copy > p:not(.kicker) { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.56; }
.thesis-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.thesis-points article { min-height: 230px; padding: 24px; background: var(--paper); }
.thesis-points span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; }
.thesis-points h3 { margin-top: 34px; font-family: var(--display); font-size: clamp(1.7rem, 2vw, 2.35rem); line-height: 0.98; text-transform: uppercase; }
.thesis-points p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.about-layout { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr); gap: clamp(54px, 7vw, 120px); align-items: start; }
.about-layout p { max-width: 760px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.58; }
.about-copy {
  display: grid;
  justify-items: start;
}
.about-proof { margin-top: 36px; padding: 24px 0 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.principles-list { display: grid; gap: 1px; margin-top: 36px; background: var(--line); border: 1px solid var(--line); }
.principles-list span { display: block; padding: 18px 20px; background: var(--paper); color: var(--ink); font-size: 13px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.principles-asset {
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 44px);
  background: #2457e8;
  overflow: hidden;
}
.principles-asset svg {
  display: block;
  width: min(100%, 620px);
  height: auto;
}
.about-visual {
  width: 100%;
  min-width: 0;
}
.about-visual img,
.about-visual svg {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
.about-principles-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  width: 100%;
  max-width: 620px;
  justify-self: center;
  padding: 56px 48px;
  background: #f8fafc;
  border: 1px solid rgba(17, 24, 32, 0.08);
  box-shadow: 0 24px 52px rgba(3, 9, 28, 0.16);
  gap: 32px 0;
}
.about-principles-card__label {
  grid-column: 1 / -1;
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.about-principles-card article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(17, 21, 28, 0.1);
}
.about-principles-card article:first-child {
  border-left: 0;
  padding-left: 0;
}
.about-principles-card article:last-child {
  padding-right: 0;
}
.about-principles-card span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.about-principles-card h3 {
  margin: 32px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.35vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}
.about-principles-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.about-editorial-principles {
  display: grid;
  width: 100%;
  min-width: 0;
}
.about-editorial-principle {
  position: relative;
  min-height: 120px;
  padding: 22px 0 30px 116px;
  border-bottom: 1px solid rgba(255, 248, 244, 0.24);
}
.about-editorial-principle:first-child {
  border-top: 1px solid rgba(255, 248, 244, 0.24);
}
.about-editorial-principle--two {
  width: calc(100% - 48px);
  margin-left: 48px;
}
.about-editorial-principle--three {
  width: calc(100% - 96px);
  margin-left: 96px;
}
.about-editorial-principle span {
  position: absolute;
  left: 0;
  top: 2px;
  color: rgba(28, 25, 31, 0.2);
  font-size: clamp(76px, 7vw, 118px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}
.about-editorial-principle h3 {
  margin: 0;
  color: #fff8f4;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}
.about-editorial-principle p {
  margin: 12px 0 0;
  color: rgba(255, 248, 244, 0.72);
  font-size: 18px;
  line-height: 1.35;
}
.principles-rule {
  stroke: #ffffff;
  stroke-opacity: 0.28;
  stroke-width: 1;
}
.principles-number,
.principles-heading,
.principles-copy {
  font-family: var(--sans);
  text-transform: uppercase;
}
.principles-simple-line {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-opacity: 0.42;
  stroke-width: 1.5;
}
.principles-pillar line {
  stroke: #ffffff;
  stroke-opacity: 0.28;
  stroke-width: 1;
}
.principles-number {
  fill: #cfe0ff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.principles-heading {
  fill: #ffffff;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.08em;
}
.principles-copy {
  fill: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-feature { display: grid; grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.72fr); gap: clamp(54px, 7vw, 120px); align-items: start; }
.studies-feature { display: grid; grid-template-columns: minmax(0, 0.66fr) minmax(480px, 0.8fr); gap: clamp(54px, 7vw, 120px); align-items: start; }
.home-feature__body { display: grid; justify-items: start; gap: 30px; }
.home-feature__body p { max-width: 680px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.58; }
.home-final-cta { position: relative; min-height: min(760px, 82vh); overflow: hidden; isolation: isolate; }
.home-final-cta.site-section { display: flex; align-items: center; padding: clamp(118px, 12vw, 168px) 0; }
.home-final-cta .home-feature__body p { color: rgba(255, 255, 255, 0.84); }
.home-final-cta h2 { max-width: 820px; }
.study-visual { position: relative; width: min(100%, 520px); min-height: 230px; }
.study-mockup { position: absolute; display: flex; min-height: 190px; flex-direction: column; justify-content: space-between; padding: 26px; color: var(--paper); background: var(--blue-dark); border: 1px solid rgba(17, 21, 28, 0.14); }
.study-mockup span { color: rgba(255, 255, 255, 0.62); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; }
.study-mockup strong { max-width: 13ch; font-family: var(--display); font-size: 34px; line-height: 0.95; text-transform: uppercase; }
.study-mockup--front { inset: 16px auto auto 0; z-index: 2; width: 58%; background: linear-gradient(140deg, var(--blue), var(--blue-dark)); }
.study-mockup--back { top: 0; right: 0; width: 56%; background: #151a24; transform: translateY(32px); }
.topic-tags, .cta-topics { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-tags span, .cta-topics span { display: inline-flex; min-height: 30px; align-items: center; padding: 0 10px; border: 1px solid rgba(31, 85, 230, 0.24); color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.identity-statement { display: grid; gap: 12px; max-width: 520px; margin-top: 38px; padding: 28px; background: var(--gray); border-left: 4px solid var(--blue); }
.identity-statement span, .identity-statement strong { display: block; font-size: 14px; line-height: 1.35; }
.identity-statement span { color: var(--muted); font-weight: 800; }
.identity-statement strong { color: var(--ink); font-weight: 900; }
.principles-list small { display: block; margin: 8px 0 0 38px; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0; line-height: 1.45; text-transform: none; }
.principles-list strong { display: inline-flex; width: 30px; color: var(--blue); }
.studies-copy { display: grid; justify-items: start; gap: 0; }
.studies-copy > p:not(.kicker) { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.56; }
.studies-copy .topic-tags { margin-top: 30px; }
.studies-copy .btn { margin-top: 24px; }
.study-library-frame { position: absolute; inset: 0; border-top: 1px solid rgba(17, 21, 28, 0.16); border-bottom: 1px solid rgba(17, 21, 28, 0.16); }
.study-library-frame::before { position: absolute; top: 28px; right: 0; bottom: 28px; left: 0; content: ""; background-image: linear-gradient(rgba(31, 85, 230, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 85, 230, 0.12) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent); opacity: 0.7; }
.study-layer { position: absolute; display: flex; min-height: 156px; flex-direction: column; justify-content: space-between; padding: 22px 24px; color: var(--paper); background: linear-gradient(145deg, #151a24, #081a4d); border: 1px solid rgba(255, 255, 255, 0.14); box-shadow: 0 24px 54px rgba(8, 26, 77, 0.14); }
.study-layer::after { position: absolute; right: 18px; bottom: 18px; width: 42px; height: 42px; content: ""; border-right: 1px solid rgba(31, 85, 230, 0.42); border-bottom: 1px solid rgba(31, 85, 230, 0.42); }
.study-layer span { color: rgba(255, 255, 255, 0.58); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; }
.study-layer strong { max-width: 13ch; font-family: var(--display); font-size: 30px; line-height: 0.96; text-transform: uppercase; }
.study-layer--front { z-index: 3; top: 58px; left: 0; width: 48%; background: linear-gradient(145deg, var(--blue), var(--blue-dark)); }
.study-layer--middle { z-index: 2; top: 26px; left: 30%; width: 43%; }
.study-layer--back { z-index: 1; top: 78px; right: 0; width: 42%; background: linear-gradient(145deg, #11151c, #273041); }
.home-final-video,
.home-final-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.home-final-video {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
}

.home-final-overlay {
  z-index: -1;
  background:
    radial-gradient(ellipse at 18% 48%, rgba(3, 9, 24, 0.92) 0%, rgba(3, 9, 24, 0.78) 34%, rgba(3, 9, 24, 0.24) 66%, transparent 78%),
    linear-gradient(90deg, rgba(4, 11, 27, 0.9) 0%, rgba(7, 20, 50, 0.76) 42%, rgba(9, 35, 92, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 16, 34, 0.22) 0%, rgba(7, 16, 34, 0.58) 100%);
}

.home-final-cta .wrap { position: relative; z-index: 1; }
.home-final-cta .wrap::before {
  position: absolute;
  top: -28px;
  left: 0;
  width: min(420px, 36vw);
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.62);
}
.cta-topics span { color: rgba(255, 255, 255, 0.9); border-color: rgba(255, 255, 255, 0.26); }
.home-final-cta .btn.outline-light { color: var(--paper); background: var(--blue); border-color: var(--blue); }
.home-final-cta .btn.outline-light:hover { background: #1649d8; border-color: #1649d8; }

body[data-page="home"] .site-header__top { min-height: 62px; }
body[data-page="home"] .header-row { min-height: 62px; }
body[data-page="home"] .site-nav--home { gap: clamp(18px, 2.1vw, 30px); }
body[data-page="home"] #home-hero .institutional-hero__media { object-position: 58% center; filter: saturate(0.88) contrast(1.04) brightness(0.95); }
body[data-page="home"] #home-hero .institutional-hero__overlay {
  background:
    radial-gradient(ellipse at 19% 48%, rgba(3, 9, 28, 0.94) 0%, rgba(3, 9, 28, 0.78) 35%, rgba(3, 9, 28, 0.28) 66%, transparent 80%),
    linear-gradient(90deg, rgba(8, 26, 77, 0.96) 0%, rgba(8, 26, 77, 0.78) 50%, rgba(8, 26, 77, 0.42) 74%, rgba(31, 85, 230, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 9, 28, 0.14), rgba(3, 9, 28, 0.62));
}
body[data-page="home"] #home-hero .institutional-hero__inner > p:not(.kicker) { max-width: 850px; }
body[data-page="home"] #home-hero .hero-chips { margin-top: 32px; }
body[data-page="home"] #home-hero .hero-chips span { color: rgba(255, 255, 255, 0.76); border-color: rgba(255, 255, 255, 0.17); background: rgba(255, 255, 255, 0.04); }

body[data-page="home"] .site-section { padding: 88px 0; }
body[data-page="home"] #servicos { color: var(--paper); background: #2349cc; }
body[data-page="home"] #quem-somos { color: #fff8f4; background: #b84a36; }
body[data-page="home"] #quem-somos.site-section { padding: clamp(104px, 9vw, 152px) 0; }
body[data-page="home"] #servicos { position: relative; }
body[data-page="home"] #servicos.site-section { padding: clamp(92px, 8vw, 124px) 0; }
body[data-page="home"] #servicos .kicker { color: rgba(255, 255, 255, 0.82); }
body[data-page="home"] #servicos h2 { max-width: 820px; font-size: clamp(2.75rem, 3.95vw, 4.55rem); text-transform: none; }
body[data-page="home"] #servicos .split-copy > p:not(.kicker) { color: rgba(255, 255, 255, 0.84); }
body[data-page="home"] #servicos .strategic-note { color: rgba(255, 255, 255, 0.88); border-left-color: rgba(255, 255, 255, 0.55); }
body[data-page="home"] #servicos .btn.secondary { color: var(--paper); border-color: rgba(255, 255, 255, 0.72); background: rgba(255, 255, 255, 0.08); }
body[data-page="home"] #servicos .btn.secondary:hover { background: rgba(255, 255, 255, 0.16); }
body[data-page="home"] .home-thesis { padding: 68px 0 78px; }
body[data-page="home"] .thesis-panel { grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1fr); gap: clamp(42px, 5.4vw, 78px); padding-top: 36px; }
body[data-page="home"] .thesis-copy h2 { max-width: 760px; font-size: clamp(2.05rem, 3.05vw, 3.45rem); }
body[data-page="home"] .thesis-copy > p:not(.kicker) { max-width: 780px; font-size: 17px; line-height: 1.58; }
body[data-page="home"] .thesis-points { gap: 0; background: rgba(255, 255, 255, 0.74); border-top: 1px solid rgba(17, 21, 28, 0.14); border-bottom: 1px solid rgba(17, 21, 28, 0.14); border-right: 0; border-left: 0; }
body[data-page="home"] .thesis-points article { min-height: 220px; padding: 30px 25px 26px; background: transparent; }
body[data-page="home"] .thesis-points article + article { border-left: 1px solid rgba(17, 21, 28, 0.12); }
body[data-page="home"] .thesis-points h3 { margin-top: 42px; font-size: clamp(1.55rem, 1.7vw, 2rem); }
body[data-page="home"] .thesis-points p { margin-top: 14px; font-size: 14px; }

body[data-page="home"] #servicos .section-head > p:not(.kicker) { max-width: 810px; }
body[data-page="home"] .studies-feature { grid-template-columns: minmax(0, 0.74fr) minmax(520px, 0.86fr); align-items: center; }
body[data-page="home"] .studies-feature h2 { font-size: clamp(2.15rem, 3.05vw, 3.55rem); }
body[data-page="home"] .study-visual { width: min(100%, 600px); min-height: 292px; margin: 0; }
body[data-page="home"] .topic-tags span { min-height: 28px; color: rgba(31, 85, 230, 0.9); border-color: rgba(31, 85, 230, 0.2); background: rgba(255, 255, 255, 0.42); }

body[data-page="home"] #quem-somos .about-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(64px, 7vw, 120px); align-items: center; max-width: 1280px; }
body[data-page="home"] #quem-somos .about-copy { grid-column: span 6; }
body[data-page="home"] #quem-somos .about-editorial-principles { grid-column: 7 / -1; }
body[data-page="home"] #quem-somos .about-layout h2 { max-width: 680px; color: #fff8f4; font-size: clamp(3.35rem, 4.4vw, 4.9rem); line-height: 0.9; letter-spacing: 0; }
body[data-page="home"] #quem-somos .about-layout h2 span { display: block; white-space: nowrap; }
body[data-page="home"] #quem-somos .about-layout p { font-size: clamp(18px, 1.3vw, 22px); line-height: 1.48; }
body[data-page="home"] #quem-somos .about-layout p + p { margin-top: 20px; }
body[data-page="home"] #quem-somos .kicker { color: rgba(255, 248, 244, 0.7); font-size: 14px; font-weight: 800; letter-spacing: 0.22em; }
body[data-page="home"] #quem-somos .about-copy > p:not(.kicker) { max-width: 560px; color: rgba(255, 248, 244, 0.76); }
body[data-page="home"] #quem-somos .about-editorial-principle p { margin-top: 12px; color: rgba(255, 248, 244, 0.72); font-size: 18px; line-height: 1.35; }
body[data-page="home"] #quem-somos .about-principles-card p { color: var(--muted); font-size: 15px; line-height: 1.45; }
body[data-page="home"] #quem-somos .about-principles-card .about-principles-card__label { margin: 0 0 6px; color: var(--blue); font-size: 11px; line-height: 1; }
body[data-page="home"] #quem-somos .about-principles-card h3 { color: var(--ink); font-size: clamp(1.25rem, 1.35vw, 1.55rem); }
body[data-page="home"] .about-copy h2 { max-width: 560px; }
body[data-page="home"] .about-copy > p:not(.kicker) { max-width: 610px; margin-top: 22px; }
body[data-page="home"] .identity-statement { max-width: 580px; margin-top: 34px; padding: 30px 32px; background: linear-gradient(180deg, #f7f8fb, #ffffff); border-top: 1px solid rgba(17, 21, 28, 0.12); border-bottom: 1px solid rgba(17, 21, 28, 0.12); border-left: 4px solid var(--blue); }
body[data-page="home"] .identity-statement strong { display: block; max-width: 13ch; font-family: var(--display); color: var(--ink); font-size: clamp(2rem, 2.4vw, 3rem); line-height: 0.96; text-transform: uppercase; }
body[data-page="home"] .identity-statement span { display: block; max-width: 420px; margin-top: 18px; color: var(--muted); font-size: 15px; font-weight: 700; letter-spacing: 0; line-height: 1.5; text-transform: none; }

body[data-page="home"] #contato-home.home-final-cta { min-height: min(520px, 62vh); }
body[data-page="home"] #contato-home.home-final-cta.site-section { padding: clamp(76px, 7.2vw, 104px) 0; }
body[data-page="home"] #contato-home.home-final-cta h2 { max-width: 760px; font-size: clamp(2.25rem, 3.25vw, 3.85rem); }
body[data-page="home"] #contato-home.home-final-cta .home-feature { align-items: center; }
body[data-page="home"] #contato-home.home-final-cta .home-feature__body { gap: 24px; }
body[data-page="home"] #contato-home.home-final-cta .home-feature__body p { max-width: 660px; font-size: 17px; line-height: 1.54; }
body[data-page="home"] .cta-topics span { min-height: 28px; color: rgba(255, 255, 255, 0.84); border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.045); }

body[data-page="home"] .home-consulting-hero .institutional-hero__media { object-position: 58% center; filter: saturate(0.86) contrast(1.04) brightness(0.94); }
body[data-page="home"] .home-consulting-hero .institutional-hero__overlay {
  background:
    radial-gradient(ellipse at 18% 48%, rgba(3, 9, 28, 0.96) 0%, rgba(3, 9, 28, 0.78) 34%, rgba(3, 9, 28, 0.28) 66%, transparent 82%),
    linear-gradient(90deg, rgba(8, 26, 77, 0.96) 0%, rgba(8, 26, 77, 0.78) 52%, rgba(31, 85, 230, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 9, 28, 0.12), rgba(3, 9, 28, 0.62));
}

.split-block { display: grid; grid-template-columns: minmax(0, 0.68fr) minmax(620px, 1fr); gap: clamp(54px, 7vw, 104px); align-items: start; }
.split-copy > p:not(.kicker), .service-definition, .service-fit { max-width: 760px; margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.58; }
.strategic-note { padding-left: 18px; border-left: 3px solid var(--blue); font-weight: 800; }
.split-copy .btn { margin-top: 28px; }
.demand-router {
  position: relative;
  display: grid;
  gap: 20px;
  overflow: hidden;
  padding: 0;
}
.demand-router::before {
  position: absolute;
  inset: -26px;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(255, 255, 255, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 56%);
  opacity: 0.64;
  pointer-events: none;
}
.demand-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.demand-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 2.25vw, 30px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(7, 23, 72, 0.22), rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 34px rgba(5, 17, 58, 0.08);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.demand-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.08));
}
.demand-card::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 132px;
  height: 132px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.demand-card:hover {
  background:
    linear-gradient(145deg, rgba(7, 23, 72, 0.28), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 42px rgba(5, 17, 58, 0.14);
  transform: translateY(-2px);
}
.demand-card:hover::after {
  opacity: 1;
}
.demand-card strong {
  max-width: 24ch;
  color: var(--paper);
  font-size: clamp(1.08rem, 1.28vw, 1.42rem);
  font-weight: 900;
  line-height: 1.14;
}
.demand-card small {
  width: max-content;
  margin-top: auto;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.demand-card em {
  color: rgba(255, 255, 255, 0.94);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.demand-method {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 4px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.demand-method::before {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-right: 14px;
  color: rgba(255, 255, 255, 0.52);
  content: "MÉTODO";
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.demand-method span {
  position: relative;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.demand-method span + span {
  margin-left: 22px;
}
.demand-method span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -7px;
  z-index: 2;
  content: "→";
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1;
  transform: translateY(-50%);
}

.service-detail { padding: clamp(82px, 7.8vw, 108px) 0; }
.service-detail--dark { color: var(--ink); background: #ffffff; }
.service-detail--generative {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: #081a4d;
}
.service-detail--future { color: var(--ink); background: #f4f6f8; }
.service-detail--light { background: #f4f6f8; }
.service-detail--soft { background: #ffffff; }
.service-detail__grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.92fr); gap: clamp(54px, 7vw, 112px); align-items: center; }
.generative-teaser {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.08fr);
  gap: clamp(42px, 5.4vw, 86px);
  align-items: center;
}
.generative-teaser__copy {
  display: grid;
  justify-items: start;
}
.service-detail--reverse .service-detail__grid > :first-child { order: 1; }
.service-detail--reverse .service-detail__grid > :last-child { order: 2; }
.service-detail h2 { max-width: 720px; font-size: clamp(2.35rem, 3.2vw, 3.7rem); }
.service-detail--generative h2 {
  max-width: 700px;
  font-size: clamp(2.65rem, 4vw, 4.85rem);
}
.service-pain {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.24rem, 1.75vw, 1.72rem);
  font-weight: 850;
  line-height: 1.28;
}
.service-pain--dark {
  max-width: 700px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.6vw, 1.58rem);
}
.service-subtitle {
  margin: 14px 0 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.service-detail--generative .service-definition {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.56;
}
.service-detail--dark .service-definition,
.service-detail--dark .service-fit,
.service-detail--future .service-definition,
.service-detail--future .service-fit { color: var(--muted); }
.service-fit { padding-left: 18px; border-left: 3px solid rgba(31, 85, 230, 0.72); font-weight: 800; }
.service-detail .btn { margin-top: 28px; }
.service-detail__body { display: grid; gap: 30px; }
.generative-deliverables {
  display: grid;
  gap: 0;
  width: min(100%, 690px);
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.generative-deliverables li {
  position: relative;
  padding: 15px 0 15px 24px;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.42;
}
.generative-deliverables li:last-child {
  border-bottom: 0;
}
.generative-deliverables li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 11px;
  height: 2px;
  content: "";
  background: #4f83ff;
}
.presence-layer-visual {
  position: relative;
  width: min(108%, 720px);
  justify-self: end;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
}
.presence-layer-visual svg {
  display: block;
  width: 100%;
  height: 100%;
}
.presence-orbit {
  fill: none;
  stroke: #a8c3ff;
}
.presence-orbit--outer {
  stroke-opacity: 0.08;
}
.presence-orbit--inner {
  stroke-opacity: 0.06;
}
.presence-guide,
.presence-connectors path {
  fill: none;
  stroke: #dde8ff;
  stroke-dasharray: 6 8;
  stroke-opacity: 0.3;
  stroke-width: 1.2;
}
.presence-plane {
  stroke: url(#presence-plane-stroke);
  stroke-width: 1.35;
}
.presence-plane--subtle {
  fill: #ffffff;
  fill-opacity: 0.05;
}
.presence-plane--ai {
  fill: url(#presence-ai-plane);
  stroke: #7daaff;
  stroke-opacity: 0.95;
  stroke-width: 1.6;
}
.presence-plane-light {
  fill: url(#presence-ai-light);
  opacity: 0.75;
}
.presence-icon {
  fill: none;
  stroke: #eff5ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-opacity: 0.88;
  stroke-width: 2.2;
}
.presence-icon circle {
  stroke-opacity: 0.35;
}
.presence-signal-lines {
  fill: none;
  stroke: #dce8ff;
  stroke-linecap: round;
}
.presence-signal-lines path:nth-child(1) {
  stroke-opacity: 0.58;
}
.presence-signal-lines path:nth-child(2) {
  stroke-opacity: 0.42;
}
.presence-signal-lines path:nth-child(3) {
  stroke-opacity: 0.28;
}
.presence-ai-mark {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-opacity: 0.9;
  stroke-width: 3;
}
.presence-market-rings {
  fill: none;
  stroke: #74a5ff;
}
.presence-market-rings circle:nth-child(1),
.presence-market-rings circle:nth-child(5),
.presence-market-rings circle:nth-child(6) {
  stroke-opacity: 0.22;
}
.presence-market-rings circle:nth-child(2) {
  stroke-opacity: 0.34;
}
.presence-market-rings circle:nth-child(3) {
  stroke-opacity: 0.46;
}
.presence-market-rings circle:nth-child(4) {
  stroke: #dce8ff;
  stroke-opacity: 0.76;
  stroke-width: 1.5;
}
.presence-labels path {
  fill: none;
  stroke: #74a5ff;
  stroke-opacity: 0.68;
  stroke-width: 1.3;
}
.presence-labels circle {
  fill: #74a5ff;
}
.presence-label-line--ai {
  stroke-opacity: 0.9 !important;
  stroke-width: 1.6 !important;
}
.presence-label-dot--ai {
  fill: #8eb5ff !important;
}
.presence-label-title,
.presence-label-copy {
  font-family: var(--sans);
}
.presence-label-title {
  fill: #f6f8ff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.presence-label-title--ai {
  fill: #8eb5ff;
}
.presence-label-copy {
  fill: #c8d3ea;
  font-size: 15px;
  font-weight: 650;
}
.deliverables-list { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(17, 21, 28, 0.12); border-bottom: 1px solid rgba(17, 21, 28, 0.12); }
.service-detail--dark .deliverables-list,
.service-detail--future .deliverables-list { border-color: rgba(17, 21, 28, 0.14); }
.deliverables-list li { position: relative; padding: 12px 0 12px 18px; color: rgba(17, 21, 28, 0.72); border-bottom: 1px solid rgba(17, 21, 28, 0.085); font-size: 13.5px; font-weight: 760; line-height: 1.42; }
.deliverables-list li::before { position: absolute; top: 20px; left: 0; width: 8px; height: 1px; content: ""; background: rgba(31, 85, 230, 0.72); }
.deliverables-list li:last-child { border-bottom: 0; }
.service-detail--dark .deliverables-list li,
.service-detail--future .deliverables-list li { color: rgba(17, 21, 28, 0.76); border-color: rgba(17, 21, 28, 0.1); }
.product-service-copy {
  display: grid;
  justify-items: start;
}
.service-essentials {
  display: grid;
  gap: 0;
  width: min(100%, 640px);
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  border-top: 1px solid rgba(17, 21, 28, 0.14);
  border-bottom: 1px solid rgba(17, 21, 28, 0.14);
}
.service-essentials li {
  position: relative;
  padding: 14px 0 14px 24px;
  color: rgba(17, 21, 28, 0.78);
  border-bottom: 1px solid rgba(17, 21, 28, 0.09);
  font-size: 13.5px;
  font-weight: 820;
  line-height: 1.42;
}
.service-essentials li:last-child {
  border-bottom: 0;
}
.service-essentials li::before {
  position: absolute;
  top: 23px;
  left: 0;
  width: 11px;
  height: 2px;
  content: "";
  background: var(--blue);
}
.product-minimal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}
.product-minimal-visual img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
}
.service-svg-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
}
.service-svg-visual img {
  display: block;
  width: min(100%, 640px);
  height: auto;
  margin: 0 auto;
}
#setup-marketing {
  color: var(--paper);
  background: #081a4d;
}
#setup-marketing h2,
#setup-marketing .service-pain--dark {
  color: var(--paper);
}
#setup-marketing .service-definition {
  color: rgba(255, 255, 255, 0.74);
}
#setup-marketing .service-essentials {
  border-color: rgba(255, 255, 255, 0.18);
}
#setup-marketing .service-essentials li {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.1);
}
#setup-marketing .service-essentials li::before {
  background: #4f83ff;
}
#setup-marketing .btn.secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
}
#setup-marketing .btn.secondary:hover {
  color: var(--blue-dark);
  background: var(--paper);
  border-color: var(--paper);
}
#produtos-digitais .service-detail__grid {
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.08fr);
  gap: clamp(42px, 5.4vw, 86px);
}
.product-pillars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 360px;
  align-items: stretch;
  border-top: 1px solid rgba(17, 21, 28, 0.16);
  border-bottom: 1px solid rgba(17, 21, 28, 0.16);
}
.product-pillars::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(31, 85, 230, 0), rgba(31, 85, 230, 0.38), rgba(31, 85, 230, 0));
}
.product-pillars article {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: clamp(24px, 3vw, 36px);
}
.product-pillars article + article {
  border-left: 1px solid rgba(17, 21, 28, 0.1);
}
.product-pillars span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.product-pillars h3 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}
.product-pillars p {
  max-width: 220px;
  margin: 28px 0 0;
  color: rgba(17, 21, 28, 0.66);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.48;
}
.product-offer-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(142px, 0.54fr) minmax(0, 1fr);
  min-height: 430px;
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  padding: clamp(22px, 3.2vw, 36px) 0;
  overflow: hidden;
  background: transparent;
  border: 0;
}
.product-offer-visual::before {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  left: 50%;
  width: 1px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(31, 85, 230, 0), rgba(31, 85, 230, 0.46), rgba(31, 85, 230, 0));
}
.product-offer-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(176px, 26vw, 258px);
  height: clamp(176px, 26vw, 258px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(31, 85, 230, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.product-offer-visual__lines {
  position: absolute;
  inset: clamp(28px, 4vw, 48px) 0;
  width: 100%;
  height: calc(100% - clamp(56px, 8vw, 96px));
  pointer-events: none;
}
.product-offer-visual__lines path {
  fill: none;
  stroke: rgba(31, 85, 230, 0.2);
  stroke-linecap: round;
  stroke-width: 0.55;
}
.product-offer-visual__lines path:nth-child(3),
.product-offer-visual__lines path:nth-child(8) {
  stroke: rgba(31, 85, 230, 0.42);
  stroke-width: 0.8;
}
.product-offer-visual__column,
.product-offer-visual__bridge {
  position: relative;
  z-index: 1;
}
.product-offer-visual__column {
  display: grid;
  gap: 18px;
  align-self: stretch;
  align-content: center;
  padding: 20px 0;
}
.product-offer-visual__label {
  display: inline-flex;
  width: fit-content;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.product-offer-visual__column ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.product-offer-visual__column li {
  padding: 8px 0;
  color: rgba(17, 21, 28, 0.76);
  border-bottom: 1px solid rgba(17, 21, 28, 0.075);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 780;
  line-height: 1.25;
}
.product-offer-visual__column li:last-child {
  border-bottom: 0;
}
.product-offer-visual__column--outcome li {
  color: rgba(17, 21, 28, 0.9);
  font-weight: 850;
}
.product-offer-visual__bridge {
  display: grid;
  min-height: clamp(158px, 18vw, 204px);
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 22px 18px;
  color: var(--blue);
  background: radial-gradient(circle, rgba(31, 85, 230, 0.1) 0 2px, transparent 3px);
  background-size: 16px 16px;
  border: 1px solid rgba(31, 85, 230, 0.38);
  border-radius: 50%;
}
.product-offer-visual__bridge::before,
.product-offer-visual__bridge::after {
  position: absolute;
  top: 50%;
  width: clamp(22px, 3.2vw, 48px);
  height: 1px;
  content: "";
  background: rgba(31, 85, 230, 0.48);
}
.product-offer-visual__bridge::before {
  right: 100%;
}
.product-offer-visual__bridge::after {
  left: 100%;
}
.product-offer-visual__bridge span {
  max-width: 118px;
  font-size: clamp(0.92rem, 1.12vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}
.mini-diagram, .flow-diagram, .ops-diagram, .b2a-diagram {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(31, 85, 230, 0.28);
  border-bottom: 1px solid rgba(31, 85, 230, 0.2);
}
.flow-diagram, .ops-diagram { border-color: rgba(17, 21, 28, 0.16); background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)); }
.mini-diagram::before, .flow-diagram::before, .ops-diagram::before, .b2a-diagram::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(31, 85, 230, 0.16), rgba(31, 85, 230, 0.52), rgba(31, 85, 230, 0.16));
}
.flow-diagram::before, .ops-diagram::before { background: linear-gradient(90deg, rgba(17, 21, 28, 0.12), rgba(17, 21, 28, 0.32), rgba(17, 21, 28, 0.12)); }
.mini-diagram span, .mini-diagram strong, .flow-diagram span, .ops-diagram span, .b2a-diagram span, .b2a-diagram strong {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 0;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 13px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 21, 28, 0.1);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.mini-diagram span + span, .mini-diagram span + strong, .mini-diagram strong + span,
.flow-diagram span + span,
.ops-diagram span + span,
.b2a-diagram span + span, .b2a-diagram span + strong, .b2a-diagram strong + span {
  margin-left: 16px;
}
.mini-diagram span + span::before, .mini-diagram span + strong::before, .mini-diagram strong + span::before,
.flow-diagram span + span::before,
.ops-diagram span + span::before,
.b2a-diagram span + span::before, .b2a-diagram span + strong::before, .b2a-diagram strong + span::before {
  position: absolute;
  top: 50%;
  left: -17px;
  width: 17px;
  height: 1px;
  content: "";
  background: rgba(31, 85, 230, 0.58);
}
.flow-diagram span + span::before, .ops-diagram span + span::before { background: rgba(17, 21, 28, 0.32); }
.mini-diagram strong, .b2a-diagram strong {
  flex: 1.15 1 0;
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
  font-family: var(--display);
  font-size: 20px;
  line-height: 0.95;
  letter-spacing: 0;
}
.b2a-diagram span:last-child { flex: 1.45 1 0; }
.studies-strip { color: var(--paper); background: #080b12; }
body[data-page="home"] .studies-strip.site-section { padding: clamp(46px, 4.2vw, 60px) 0; }
.studies-strip__panel { display: grid; grid-template-columns: minmax(0, 0.46fr) minmax(560px, 1fr); gap: clamp(30px, 4.2vw, 54px); align-items: center; padding: 0; background: transparent; border: 0; }
.studies-strip h2 { font-size: clamp(1.85rem, 2.45vw, 2.9rem); }
.studies-strip p { max-width: 500px; color: rgba(255, 255, 255, 0.76); font-size: 14.5px; line-height: 1.48; }
.home-study-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.home-study-card { display: grid; grid-template-columns: 0.47fr 0.53fr; min-height: 178px; overflow: hidden; background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.14); }
.home-study-card img { width: 100%; height: 100%; object-fit: contain; background: #050913; }
.home-study-card div { display: grid; gap: 8px; align-content: center; padding: 14px; }
.home-study-card h3 { font-family: var(--display); font-size: clamp(1.08rem, 1.2vw, 1.42rem); line-height: 0.98; text-transform: uppercase; }
.home-study-card p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 11.5px; line-height: 1.38; }
.home-study-card a { display: inline-flex; width: max-content; min-height: 32px; align-items: center; margin-top: 2px; padding: 0 11px; color: var(--paper); background: var(--blue); border: 1px solid var(--blue); font-size: 8.5px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease; }
.home-study-card a:hover { transform: translateY(-1px); }
.home-study-card a:hover { background: #1649d8; border-color: #1649d8; }

.study-grid { display: grid; gap: 24px; }
.studies-context { padding: 66px 0; background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%); }
.studies-context__layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1fr); gap: clamp(40px, 5vw, 76px); align-items: start; padding-top: 32px; border-top: 1px solid var(--line); }
.studies-context__layout h2 { max-width: 760px; font-size: clamp(2.05rem, 3.05vw, 3.45rem); }
.studies-context__layout > div > p:not(.kicker) { max-width: 760px; margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.58; }
.context-line { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; background: rgba(255, 255, 255, 0.74); border-top: 1px solid rgba(17, 21, 28, 0.14); border-bottom: 1px solid rgba(17, 21, 28, 0.14); }
.context-line article { position: relative; min-height: 206px; padding: 30px 25px 26px; background: transparent; }
.context-line article + article { border-left: 1px solid rgba(17, 21, 28, 0.12); }
.context-line article::before { display: block; margin-bottom: 46px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; content: "0" counter(context-item); counter-increment: context-item; }
.context-line { counter-reset: context-item; }
.context-line h3 { color: var(--ink); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.context-line p { margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

.access-flow { display: flex; flex-wrap: wrap; gap: 0; width: max-content; max-width: 100%; margin: -18px 0 30px; border-top: 1px solid rgba(17, 21, 28, 0.16); border-bottom: 1px solid rgba(17, 21, 28, 0.16); }
.access-flow span { position: relative; display: inline-flex; min-height: 40px; align-items: center; gap: 10px; padding: 0 18px 0 0; color: rgba(17, 21, 28, 0.62); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.access-flow span + span { padding-left: 22px; }
.access-flow span + span::before { position: absolute; top: 50%; left: 0; width: 1px; height: 18px; content: ""; background: rgba(17, 21, 28, 0.18); transform: translateY(-50%); }
.access-flow strong { color: var(--blue); font-size: 9px; letter-spacing: 0.16em; }

.study-card { display: grid; grid-template-columns: minmax(440px, 0.74fr) minmax(0, 0.86fr); align-items: stretch; overflow: hidden; background: linear-gradient(90deg, #ffffff 0%, #fbfcff 100%); border: 1px solid rgba(17, 21, 28, 0.12); box-shadow: 0 14px 34px rgba(8, 26, 77, 0.045); transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease; }
.study-card:hover { border-color: rgba(31, 85, 230, 0.28); box-shadow: 0 20px 46px rgba(8, 26, 77, 0.075); transform: translateY(-1px); }
.study-cover { position: relative; display: flex; min-height: 0; aspect-ratio: 16 / 9; align-self: center; margin: 12px 0 12px 12px; overflow: hidden; color: var(--paper); background: #090d14; border: 1px solid rgba(17, 21, 28, 0.12); }
.study-cover::before { display: none; }
.study-cover__image { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.study-cover > :not(.study-cover__image) { position: relative; z-index: 2; }
.study-cover span { font-size: 10px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.study-cover strong { max-width: 14ch; font-family: var(--display); font-size: clamp(2.05rem, 2.6vw, 3.2rem); line-height: 0.95; text-transform: uppercase; }
.study-card__content { display: flex; flex-direction: column; justify-content: center; min-height: 0; padding: clamp(20px, 2vw, 26px) clamp(24px, 2.7vw, 34px); }
.study-card__content h2 { max-width: 610px; font-size: clamp(1.42rem, 1.85vw, 2.08rem); }
.study-card__content p { max-width: 620px; margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.46; }
.study-card__content .button-row { margin-top: 18px; }
.study-card__content .btn { min-height: 42px; padding: 0 18px; }
.study-meta { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 17px; border-top: 1px solid rgba(31, 85, 230, 0.2); border-bottom: 1px solid rgba(31, 85, 230, 0.14); }
.study-meta span { display: inline-flex; min-height: 28px; align-items: center; padding: 0 11px 0 0; color: var(--blue); border: 0; font-size: 8px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.study-meta span + span { padding-left: 11px; border-left: 1px solid rgba(31, 85, 230, 0.16); }
.study-delivery-note { display: block; margin-top: 9px; color: rgba(17, 21, 28, 0.46); font-size: 10px; font-weight: 700; letter-spacing: 0.02em; }

#proximo-passo.home-final-cta { min-height: min(390px, 48vh); }
#proximo-passo.home-final-cta.site-section { padding: clamp(54px, 5.8vw, 74px) 0; }
#proximo-passo.home-final-cta h2 { max-width: 760px; font-size: clamp(2.35rem, 3.65vw, 4.05rem); }
#proximo-passo.home-final-cta .home-feature { align-items: center; }
#proximo-passo.home-final-cta .home-feature__body { gap: 24px; }
#proximo-passo.home-final-cta .home-feature__body p { max-width: 640px; font-size: 17px; line-height: 1.54; }

.process-line, .insight-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.process-line article, .insight-grid article { min-height: 250px; padding: 28px; background: var(--paper); }
.process-line span, .insight-grid span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; }
.process-line h3, .insight-grid h3 { margin-top: 40px; font-family: var(--display); font-size: clamp(1.8rem, 2.2vw, 2.8rem); line-height: 0.98; text-transform: uppercase; }
.process-line p, .insight-grid p { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(460px, 0.62fr); gap: clamp(54px, 7vw, 110px); align-items: start; }
.contact-copy p:not(.kicker) { max-width: 640px; margin: 24px 0 0; color: var(--muted); font-size: 18px; }
.contact-panel { padding: 36px; background: var(--paper); border: 1px solid rgba(17, 21, 28, 0.13); border-top: 4px solid var(--blue); }
.contact-form, .lead-form { display: grid; gap: 17px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
label { display: grid; gap: 7px; color: rgba(17, 21, 28, 0.68); font-size: 10px; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
input, textarea, select { width: 100%; min-height: 48px; padding: 13px 14px; color: var(--ink); background: #fbfcff; border: 1px solid rgba(17, 21, 28, 0.16); outline: none; transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease; }
textarea { min-height: 104px; resize: vertical; }
input:focus, textarea:focus, select:focus { background: var(--paper); border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31, 85, 230, 0.12); }
.form-field-wide, .form-consent, .lead-submit, .form-message { grid-column: 1 / -1; }
.form-consent { display: grid; grid-template-columns: 18px minmax(0, 1fr); align-items: start; gap: 12px; color: rgba(17, 21, 28, 0.76); font-size: 12px; font-weight: 760; letter-spacing: 0; line-height: 1.45; text-transform: none; }
.form-consent input { width: 18px; min-height: 18px; margin: 2px 0 0; padding: 0; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { min-height: 20px; margin: 0; color: var(--muted); font-size: 12.5px; font-weight: 800; }
.form-message.is-error { color: #b3261e; }
.form-message.is-success { color: #176a3a; }
.lead-submit, .contact-form [type="submit"] { width: 100%; min-height: 56px; cursor: pointer; }

body[data-page="home"] .contact-main { position: relative; overflow: hidden; color: var(--paper); background: #061326; }
body[data-page="home"] .contact-main__media,
body[data-page="home"] .contact-main__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
body[data-page="home"] .contact-main__media { object-fit: cover; object-position: center; filter: saturate(0.92) contrast(1.04) brightness(0.96); }
body[data-page="home"] .contact-main__overlay {
  background:
    radial-gradient(ellipse at 18% 50%, rgba(3, 9, 28, 0.86) 0%, rgba(3, 9, 28, 0.66) 38%, rgba(3, 9, 28, 0.24) 72%, transparent 88%),
    linear-gradient(90deg, rgba(6, 19, 38, 0.88) 0%, rgba(6, 19, 38, 0.66) 46%, rgba(6, 19, 38, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 19, 38, 0.12), rgba(6, 19, 38, 0.44));
}
body[data-page="home"] .contact-main .wrap { position: relative; z-index: 1; }
body[data-page="home"] .contact-copy .kicker { color: rgba(255, 255, 255, 0.86); }
body[data-page="home"] .contact-copy h2 { max-width: 720px; font-size: clamp(2.25rem, 3.25vw, 3.85rem); }
body[data-page="home"] .contact-copy p:not(.kicker) { color: rgba(255, 255, 255, 0.78); }
body[data-page="home"] .contact-context-list { border-color: rgba(255, 255, 255, 0.22); }
body[data-page="home"] .contact-context-list span { color: rgba(255, 255, 255, 0.86); border-color: rgba(255, 255, 255, 0.14); }
body[data-page="home"] .contact-panel { background: #ffffff; border-color: rgba(255, 255, 255, 0.24); border-top-color: var(--blue); box-shadow: 0 28px 60px rgba(3, 9, 28, 0.26); }

body[data-page="contato"] .contact-hero { min-height: min(560px, calc(78vh - 112px)); }
body[data-page="contato"] .contact-hero .institutional-hero__media { object-position: center 48%; filter: saturate(0.82) contrast(1.04) brightness(0.88); }
body[data-page="contato"] .contact-hero .institutional-hero__overlay {
  background:
    radial-gradient(ellipse at 18% 50%, rgba(3, 9, 28, 0.96) 0%, rgba(3, 9, 28, 0.8) 36%, rgba(3, 9, 28, 0.3) 68%, transparent 82%),
    linear-gradient(90deg, rgba(8, 26, 77, 0.96) 0%, rgba(8, 26, 77, 0.76) 52%, rgba(31, 85, 230, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 9, 28, 0.1), rgba(3, 9, 28, 0.62));
}
body[data-page="contato"] .contact-hero h1 { max-width: 980px; font-size: clamp(3.3rem, 5.2vw, 5.9rem); }
body[data-page="contato"] .contact-hero .institutional-hero__inner { padding: 70px 0 82px; }
body[data-page="contato"] .contact-hero .institutional-hero__inner > p:not(.kicker) { max-width: 760px; }

body[data-page="contato"] .contact-main { padding: 84px 0; }
body[data-page="contato"] .contact-layout { grid-template-columns: minmax(0, 0.8fr) minmax(500px, 0.82fr); gap: clamp(54px, 6vw, 96px); align-items: start; }
body[data-page="contato"] .contact-copy h2 { max-width: 680px; font-size: clamp(2.3rem, 3.45vw, 4rem); }
body[data-page="contato"] .contact-copy > p:not(.kicker) { max-width: 720px; font-size: 17px; line-height: 1.58; }
.contact-context-list { display: grid; gap: 0; max-width: 620px; margin-top: 34px; border-top: 1px solid rgba(17, 21, 28, 0.14); border-bottom: 1px solid rgba(17, 21, 28, 0.14); }
.contact-context-list span { position: relative; display: block; padding: 16px 0 16px 34px; color: var(--ink); font-size: 13px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid rgba(17, 21, 28, 0.1); }
.contact-context-list span:last-child { border-bottom: 0; }
.contact-context-list span::before { position: absolute; top: 22px; left: 0; width: 14px; height: 2px; content: ""; background: var(--blue); }
.contact-trust-note { max-width: 620px; margin-top: 28px !important; padding-left: 18px; color: rgba(17, 21, 28, 0.66) !important; border-left: 3px solid rgba(31, 85, 230, 0.8); font-size: 14px !important; font-weight: 800; line-height: 1.5 !important; }
body[data-page="contato"] .contact-panel { padding: clamp(30px, 3vw, 42px); background: linear-gradient(180deg, #ffffff, #fbfcff); border-color: rgba(17, 21, 28, 0.13); border-top: 4px solid var(--blue); box-shadow: 0 22px 52px rgba(8, 26, 77, 0.07); }
body[data-page="contato"] label { color: rgba(17, 21, 28, 0.76); }
body[data-page="contato"] input,
body[data-page="contato"] textarea,
body[data-page="contato"] select { min-height: 50px; background: #ffffff; border-color: rgba(17, 21, 28, 0.16); }
body[data-page="contato"] textarea { min-height: 132px; }
body[data-page="contato"] .form-consent { padding-top: 2px; color: rgba(17, 21, 28, 0.78); }
body[data-page="contato"] .form-message { font-weight: 800; }

body[data-page="contato"] .contact-process { padding: 82px 0; background: var(--paper); }
body[data-page="contato"] .contact-process .section-head { margin-bottom: 36px; }
body[data-page="contato"] .contact-process h2,
body[data-page="contato"] .contact-topics h2 { font-size: clamp(2.25rem, 3.35vw, 3.9rem); }
body[data-page="contato"] .contact-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body[data-page="contato"] .contact-steps article { min-height: 210px; }
body[data-page="contato"] .contact-steps h3 { font-size: clamp(1.65rem, 2vw, 2.35rem); }

body[data-page="contato"] .contact-topics { padding: 76px 0; }
body[data-page="contato"] .contact-topic-tags { max-width: 760px; }
body[data-page="contato"] .contact-topic-tags span { min-height: 32px; color: rgba(31, 85, 230, 0.92); background: rgba(255, 255, 255, 0.46); border-color: rgba(31, 85, 230, 0.22); }

.site-footer { color: rgba(255, 255, 255, 0.76); background: #061326; padding: 54px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-grid { display: grid; grid-template-columns: minmax(300px, 1.25fr) minmax(210px, 0.75fr) minmax(260px, 0.85fr); gap: clamp(34px, 4vw, 68px); align-items: start; }
.footer-brand p, .footer-legal p { max-width: 360px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.66); font-size: 14px; line-height: 1.5; }
.footer-column { display: grid; gap: 12px; justify-content: start; }
.footer-column h2 { margin: 0 0 4px; color: rgba(255, 255, 255, 0.46); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-grid a { color: rgba(255, 255, 255, 0.82); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-grid a:hover { color: var(--paper); }
.footer-legal { gap: 0; }
.footer-legal p { max-width: 280px; margin-top: 12px; font-size: 12px; letter-spacing: 0.04em; }
.footer-bottom { margin-top: 48px; padding: 20px 0 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.46); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.lead-modal[aria-hidden="true"] { display: none; }
.lead-modal { position: fixed; inset: 0; z-index: 180; display: grid; place-items: center; padding: 28px; }
.lead-modal__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4, 12, 30, 0.86), rgba(8, 26, 77, 0.74)), rgba(0, 0, 0, 0.62); }
.lead-modal__dialog { position: relative; z-index: 1; width: min(760px, 100%); max-height: calc(100vh - 56px); overflow: auto; padding: clamp(28px, 4vw, 44px); color: var(--ink); background: #fbfcff; border: 1px solid rgba(17, 21, 28, 0.16); }
.lead-modal__close { position: absolute; top: 16px; right: 16px; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: var(--ink); background: transparent; border: 1px solid rgba(17, 21, 28, 0.22); cursor: pointer; font-size: 24px; line-height: 1; }
.lead-modal__intro { max-width: 620px; margin-bottom: 26px; }
.lead-modal__intro h2 { margin: 8px 0 0; font-size: clamp(2.4rem, 4vw, 4rem); }
.lead-modal__intro p:not(.kicker) { margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.lead-success { padding: 28px 0 4px; border-top: 1px solid rgba(17, 21, 28, 0.14); }
.lead-success p { max-width: 560px; margin: 0; color: var(--ink); font-size: 19px; font-weight: 900; line-height: 1.45; }

@media (max-width: 980px) {
  .wrap { width: min(100% - 44px, var(--max)); }
  .site-header__top { min-height: 58px; }
  .site-header__bottom, .site-nav, .page-nav { display: none; }
  .header-row { min-height: 58px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0 12px; color: var(--blue); background: var(--paper); border: 1px solid var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
  .mobile-menu.open { position: sticky; top: 58px; z-index: 80; display: grid; gap: 0; padding: 16px 22px 18px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .mobile-menu.open div { display: grid; gap: 1px; padding: 0; background: var(--line); }
  .mobile-menu.open div + div { margin-top: 18px; }
  .mobile-menu.open span { padding: 0 0 9px; background: var(--paper); color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
  .mobile-menu.open a, .mobile-menu.open .site-nav__disabled { padding: 14px 0; background: var(--paper); color: var(--ink); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
  .mobile-menu.open .site-nav__disabled { color: rgba(17, 21, 28, 0.46); cursor: default; }
  .mobile-menu.open small { color: var(--blue); font-size: 9px; }
  .about-layout, .contact-layout, .home-feature, .studies-feature, .thesis-panel, .studies-context__layout { grid-template-columns: 1fr; }
  .thesis-points { grid-template-columns: 1fr; }
  .study-card { grid-template-columns: minmax(210px, 0.4fr) minmax(0, 1fr); }
  .context-line, .process-line, .insight-grid { grid-template-columns: 1fr; }
  .context-line article + article { border-top: 1px solid rgba(17, 21, 28, 0.12); border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .home-hero-title .hero-title-line--desktop { display: none; }
  .home-hero-title .hero-title-line--mobile { display: block; }
  body[data-page="home"] .thesis-panel,
  body[data-page="home"] .studies-feature,
  body[data-page="home"] .about-layout { grid-template-columns: 1fr; }
  body[data-page="home"] #quem-somos .about-layout { grid-template-columns: 1fr; gap: 52px; }
  body[data-page="home"] #quem-somos .about-copy,
  body[data-page="home"] #quem-somos .about-editorial-principles { grid-column: auto; }
  .about-editorial-principle,
  .about-editorial-principle--two,
  .about-editorial-principle--three {
    width: 100%;
    margin-left: 0;
    padding-left: 92px;
  }
  .split-block,
  .generative-teaser,
  .service-detail__grid,
  .studies-strip__panel { grid-template-columns: 1fr; }
  #produtos-digitais .service-detail__grid { grid-template-columns: 1fr; }
  .demand-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-pillars {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .product-pillars::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(31, 85, 230, 0), rgba(31, 85, 230, 0.34), rgba(31, 85, 230, 0));
  }
  .product-pillars article {
    min-height: 0;
    padding: 28px 0;
  }
  .product-pillars article + article {
    border-top: 1px solid rgba(17, 21, 28, 0.1);
    border-left: 0;
  }
  .product-pillars h3 {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(2.15rem, 7vw, 3.65rem);
    line-height: 0.96;
  }
  .product-pillars p {
    max-width: 420px;
    margin-top: 16px;
  }
  .product-minimal-visual {
    min-height: 0;
    padding-top: 10px;
  }
  .product-minimal-visual img {
    width: min(100%, 680px);
  }
  .service-svg-visual {
    min-height: 0;
    padding-top: 10px;
  }
  .service-svg-visual img {
    width: min(100%, 620px);
  }
  .product-offer-visual { width: min(100%, 680px); justify-self: center; }
  .presence-layer-visual { justify-self: center; width: min(100%, 680px); }
  .service-detail__grid { gap: 42px; }
  .studies-strip__panel { gap: 34px; }
  body[data-page="home"] .thesis-points article + article { border-top: 1px solid rgba(17, 21, 28, 0.12); border-left: 0; }
  body[data-page="home"] .study-visual { width: min(100%, 620px); }
  .about-principles-card {
    max-width: 760px;
  }
  body[data-page="contato"] .contact-layout,
  body[data-page="contato"] .home-feature { grid-template-columns: 1fr; }
  body[data-page="contato"] .contact-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .institutional-hero { min-height: 650px; }
  .compact-hero { min-height: 560px; }
  .institutional-hero__inner { padding: 64px 0 84px; }
  h1, .compact-hero h1 { font-size: clamp(3rem, 12.5vw, 4.6rem); }
  .home-hero-title .hero-title-line--desktop { display: none; }
  .home-hero-title .hero-title-line--mobile { display: block; }
  h2 { font-size: clamp(2.35rem, 9.7vw, 3.65rem); }
  .button-row { display: grid; }
  .btn { width: 100%; padding: 0 16px; }
  .site-section { padding: 68px 0; }
  .home-thesis { padding: 54px 0; }
  .hero-chips { margin-top: 28px; }
  .thesis-panel { padding-top: 34px; }
  .thesis-points article { min-height: 190px; padding: 22px; }
  .study-visual { min-height: 250px; }
  .study-mockup--front { width: 68%; }
  .study-mockup--back { width: 66%; }
  .study-card { grid-template-columns: 1fr; }
  .study-cover { min-height: 0; margin: 12px 12px 0; }
  .study-card__content { padding: 30px 24px; }
  .studies-context { padding: 58px 0; }
  .context-line article { padding: 22px; }
  .access-flow { width: 100%; }
  .access-flow span { width: 100%; }
  .access-flow span + span { padding-left: 0; }
  .access-flow span + span::before { top: 0; width: 100%; height: 1px; transform: none; }
  #proximo-passo.home-final-cta { min-height: 430px; }
  .process-line, .insight-grid { grid-template-columns: 1fr; }
  .process-line article, .insight-grid article { min-height: 210px; padding: 24px; }
  .contact-panel { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .lead-modal { align-items: end; padding: 14px; }
  .lead-modal__dialog { max-height: calc(100vh - 28px); padding: 28px 20px 22px; }
  .lead-modal__intro h2 { padding-right: 36px; font-size: clamp(2.1rem, 12vw, 3.05rem); }
  body[data-page="home"] .home-thesis { padding: 58px 0 64px; }
  body[data-page="home"] .thesis-panel { padding-top: 32px; }
  body[data-page="home"] .thesis-copy h2,
  body[data-page="home"] .studies-feature h2,
  body[data-page="home"] #contato-home.home-final-cta h2 { font-size: clamp(2.3rem, 9.4vw, 3.55rem); }
  body[data-page="home"] .thesis-points article { min-height: 184px; padding: 24px 22px; }
  body[data-page="home"] .thesis-points h3 { margin-top: 32px; }
  body[data-page="home"] .study-visual { min-height: 320px; }
  body[data-page="home"] .study-layer { min-height: 158px; padding: 20px; }
  body[data-page="home"] .study-layer strong { font-size: 25px; }
  body[data-page="home"] .study-layer--front { top: 84px; width: 58%; }
  body[data-page="home"] .study-layer--middle { top: 26px; left: 22%; width: 56%; }
  body[data-page="home"] .study-layer--back { top: 138px; right: 0; width: 54%; }
  body[data-page="home"] .identity-statement { padding: 24px; }
  body[data-page="home"] #quem-somos .about-layout h2 {
    font-size: clamp(3rem, 14vw, 4.125rem);
  }
  body[data-page="home"] #quem-somos .about-layout h2 span {
    white-space: normal;
  }
  .about-editorial-principle {
    padding: 20px 0 26px 92px;
  }
  .about-editorial-principle span {
    font-size: 64px;
  }
  .about-editorial-principle h3 {
    font-size: 22px;
  }
  .about-editorial-principle p {
    font-size: 16px;
  }
  body[data-page="home"] #quem-somos .about-editorial-principle p {
    font-size: 16px;
  }
  .about-principles-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .about-principles-card article {
    min-height: 0;
    padding: 20px 0;
    border-left: 0;
  }
  .about-principles-card article + article {
    border-top: 1px solid rgba(17, 21, 28, 0.12);
  }
  .about-principles-card h3 {
    margin-top: 16px;
  }
  .principles-asset {
    min-height: 300px;
    padding: 22px 14px;
  }
  .principles-asset svg {
    width: min(100%, 520px);
    margin: 0 auto;
  }
  body[data-page="home"] #contato-home.home-final-cta { min-height: 520px; }
  body[data-page="home"] #contato-home.home-final-cta.site-section { padding: 74px 0; }
  .demand-cards { grid-template-columns: 1fr; }
  .demand-card { min-height: 0; }
  .demand-method { width: 100%; justify-content: center; padding: 8px 12px; }
  .demand-method::before { width: 100%; min-height: 18px; justify-content: center; margin-right: 0; }
  .demand-method span + span { margin-left: 18px; border: 0; }
  .demand-method span:not(:last-child)::after {
    top: 50%;
    right: -13px;
    bottom: auto;
    transform: translateY(-50%);
    content: "→";
  }
  .service-detail { padding: 68px 0; }
  .service-detail h2 { font-size: clamp(2.25rem, 8.8vw, 3.35rem); }
  .service-detail--generative h2 { font-size: clamp(2.55rem, 10vw, 3.8rem); }
  .service-pain { font-size: clamp(1.12rem, 5.2vw, 1.45rem); }
  .generative-deliverables { margin-top: 28px; }
  .service-detail--generative .generative-teaser__copy { display: contents; }
  .service-detail--generative .generative-teaser__copy h2 { order: 1; }
  .service-detail--generative .service-pain { order: 2; }
  .service-detail--generative .service-definition { order: 3; }
  .service-detail--generative .generative-deliverables { order: 4; }
  .service-detail--generative .presence-layer-visual { order: 5; }
  .service-detail--generative .btn { order: 6; }
  .presence-layer-visual { width: min(100%, 540px); }
  .presence-label-title { font-size: 28px; }
  .presence-label-copy { font-size: 20px; }
  .product-pillars {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .product-pillars::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(31, 85, 230, 0), rgba(31, 85, 230, 0.38), rgba(31, 85, 230, 0));
  }
  .product-pillars article {
    min-height: 190px;
    padding: 26px 0;
  }
  .product-pillars article + article {
    border-top: 1px solid rgba(17, 21, 28, 0.1);
    border-left: 0;
  }
  .product-pillars h3 {
    margin-top: 20px;
    font-size: clamp(2.35rem, 12vw, 3.9rem);
  }
  .product-pillars p {
    margin-top: 18px;
  }
  .product-offer-visual {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 22px;
    padding: 18px 0;
  }
  .product-offer-visual::before {
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
  }
  .product-offer-visual::after {
    top: 50%;
    bottom: auto;
    left: 50%;
    width: 172px;
    height: 172px;
    background: transparent;
  }
  .product-offer-visual__lines { display: none; }
  .product-offer-visual__column {
    padding: 0;
  }
  .product-offer-visual__bridge {
    width: min(100%, 172px);
    min-height: 172px;
    justify-self: center;
  }
  .product-offer-visual__bridge::before,
  .product-offer-visual__bridge::after {
    top: auto;
    left: 50%;
    width: 1px;
    height: 18px;
  }
  .product-offer-visual__bridge::before {
    right: auto;
    bottom: 100%;
  }
  .product-offer-visual__bridge::after {
    top: 100%;
  }
  .mini-diagram, .flow-diagram, .ops-diagram, .b2a-diagram { flex-direction: column; padding: 18px 0; }
  .mini-diagram::before, .flow-diagram::before, .ops-diagram::before, .b2a-diagram::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(31, 85, 230, 0.16), rgba(31, 85, 230, 0.52), rgba(31, 85, 230, 0.16));
  }
  .flow-diagram::before, .ops-diagram::before { background: linear-gradient(180deg, rgba(17, 21, 28, 0.12), rgba(17, 21, 28, 0.32), rgba(17, 21, 28, 0.12)); }
  .mini-diagram span, .mini-diagram strong, .flow-diagram span, .ops-diagram span, .b2a-diagram span, .b2a-diagram strong { min-height: 62px; }
  .mini-diagram span + span, .mini-diagram span + strong, .mini-diagram strong + span,
  .flow-diagram span + span,
  .ops-diagram span + span,
  .b2a-diagram span + span, .b2a-diagram span + strong, .b2a-diagram strong + span {
    margin-top: 14px;
    margin-left: 0;
  }
  .mini-diagram span + span::before, .mini-diagram span + strong::before, .mini-diagram strong + span::before,
  .flow-diagram span + span::before,
  .ops-diagram span + span::before,
  .b2a-diagram span + span::before, .b2a-diagram span + strong::before, .b2a-diagram strong + span::before {
    top: -15px;
    left: 50%;
    width: 1px;
    height: 15px;
    transform: none;
  }
  .home-study-cards { grid-template-columns: 1fr; }
  .home-study-card { grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr); }
  .studies-strip__panel { gap: 30px; padding: 0; }
  body[data-page="home"] .studies-strip.site-section { padding: 52px 0; }
  .home-study-card { grid-template-columns: 1fr; min-height: 0; }
  .home-study-card img { height: auto; aspect-ratio: 16 / 9; }
  body[data-page="contato"] .contact-hero { min-height: 540px; }
  body[data-page="contato"] .contact-hero h1 { font-size: clamp(2.85rem, 11vw, 4.35rem); }
  body[data-page="contato"] .contact-hero .institutional-hero__inner { padding: 64px 0 78px; }
  body[data-page="contato"] .contact-main,
  body[data-page="contato"] .contact-process,
  body[data-page="contato"] .contact-topics { padding: 64px 0; }
  body[data-page="contato"] .contact-copy h2,
  body[data-page="contato"] .contact-process h2,
  body[data-page="contato"] .contact-topics h2 { font-size: clamp(2.25rem, 9.4vw, 3.55rem); }
  body[data-page="contato"] .contact-context-list span { padding-left: 28px; font-size: 12px; }
  body[data-page="contato"] .contact-steps article { min-height: 190px; }
}

@media (prefers-reduced-motion: reduce) {
  .institutional-hero__video {
    display: none;
  }

  .studies-hero__video {
    display: none;
  }

  .institutional-hero {
    background: var(--blue-dark) url("/assets/video/home-hero-poster.webp") center / cover no-repeat;
  }

  .studies-hero {
    background: var(--blue-dark) url("/assets/video/estudos-hero-poster.webp") center / cover no-repeat;
  }

  .home-final-video {
    display: none;
  }

  body[data-page="home"] .contact-main__media {
    display: none;
  }

  .home-final-cta {
    background: var(--blue-dark) url("/assets/sao-paulo-skyline.jpg") center / cover no-repeat;
  }

  body[data-page="home"] .contact-main {
    background: var(--blue-dark) url("/assets/sao-paulo-skyline.jpg") center / cover no-repeat;
  }
}
