

:root {
  
  --fw-navy-900: #003382;    
  --fw-blue-600: #115FF3;    
  --fw-blue-400: #4283FF;    
  --fw-orange-500: #EC9801;  
  --fw-gold-400: #DFB363;    
  --fw-gold-on: #241500;     
  --fw-night-950: #04101F;   
  --fw-night-900: #062142;   
  --fw-cream-100: #F5F3EE;   

  
  --color-bg:          #FFFFFF;
  --color-bg-2:        #EEF3FA;   
  --color-surface:     rgba(0, 51, 130, .038);
  --color-text:        #0C1A33;   
  --color-text-muted:  rgba(12, 26, 51, .82);
  --color-text-subtle: rgba(12, 26, 51, .60);
  --color-structure:   var(--fw-navy-900);
  --color-ui:          var(--fw-blue-600);
  --color-accent:      var(--fw-blue-600);   
  --color-accent-on:   #FFFFFF;
  --color-hair:        rgba(0, 51, 130, .24);
  --color-grid:        rgba(0, 51, 130, .055);

  
  --zoom-factor: 1.25;
  --slide-px: 24px;
  --slide-py: 14px;
  --slide-pb: 14px;   
  --radius: 14px;
  --grid-step: 48px;

  --font-voz: "Albert Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-humana: "Lora", Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--color-bg);
}

body {
  font-family: var(--font-voz);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.deck {
  position: relative;
  width: 100vw;
  height: 100vh;
  background:
    repeating-linear-gradient(0deg, transparent 0 calc(var(--grid-step) - 1px), var(--color-grid) calc(var(--grid-step) - 1px) var(--grid-step)),
    repeating-linear-gradient(90deg, transparent 0 calc(var(--grid-step) - 1px), var(--color-grid) calc(var(--grid-step) - 1px) var(--grid-step)),
    linear-gradient(175deg, var(--color-bg) 30%, var(--color-bg-2) 100%);
}

.deck::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.slide {
  width: calc(100vw / var(--zoom-factor));
  height: calc(100vh / var(--zoom-factor));
  padding: var(--slide-py) var(--slide-px);
  padding-bottom: var(--slide-pb);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(var(--zoom-factor));
  transform-origin: top left;
  display: none;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.slide.active { display: flex; }

.slide.top-align { justify-content: flex-start; }

h1 {
  font-size: clamp(46px, 4.29vw, 75px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--color-text);
}

h2 {
  font-size: clamp(37px, 3.41vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--color-text);
}

.sublabel {
  font-family: var(--font-humana);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 1.65vw, 31px);
  line-height: 1.3;
  color: var(--color-accent);
}

.kicker {
  font-weight: 700;
  font-size: clamp(12px, 0.86vw, 15px);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.trilhas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: clamp(9px, 0.76vw, 13px);
  flex: none;
}

.trilha {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 14px;
  border-radius: 999px;
  border: 1px solid;
  font-weight: 700;
  font-size: clamp(14px, 1.04vw, 19px);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trilha svg { width: 1.15em; height: 1.15em; flex: none; }

.trilha-ui {
  color: var(--color-text);
  border-color: rgba(17, 95, 243, .55);
  background: rgba(17, 95, 243, .16);
}
.trilha-ui svg { color: var(--fw-blue-600); }

.trilha-accent {
  color: var(--color-accent);
  border-color: rgba(17, 95, 243, 0.632);
  background: rgba(17, 95, 243, 0.092);
}

.cota {
  position: relative;
  height: 1px;
  background: var(--color-ui);
  width: clamp(240px, 21vw, 400px);
  margin: clamp(5px, 0.46vw, 8px) 0 clamp(6px, 0.54vw, 10px);
  flex: none;
}

.cota::before,
.cota::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 1px;
  height: 13px;
  background: var(--color-ui);
}
.cota::before { left: 0; }
.cota::after { right: 0; }

.cota span {
  position: absolute;
  left: 0;
  top: -24px;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: clamp(11px, 0.79vw, 14px);
  text-transform: uppercase;
  color: var(--color-ui);
  white-space: nowrap;
}

.cota.has-label { margin-top: clamp(22px, 1.98vw, 33px); }

.table-wrapper {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-hair);
  background: var(--color-surface);
  flex: none;               
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

table.data-table thead th {
  background: var(--color-structure);
  color: var(--color-text);
  font-weight: 700;
  font-size: clamp(16px, 1.35vw, 28px);
  line-height: 1.22;
  letter-spacing: .02em;
  padding: clamp(9px, 0.79vw, 15px) clamp(7px, 0.68vw, 13px);
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid rgba(0, 51, 130, .22);
}

table.data-table thead th:last-child { border-right: none; }

table.data-table thead th:first-child,
table.data-table tbody th {
  text-align: left;
}

table.data-table thead th.col-destaque {
  background: var(--color-accent);
  color: var(--color-accent-on);
  border-right: none;
}

table.data-table tbody th {
  font-weight: 700;
  font-size: clamp(18px, 1.43vw, 29px);
  color: var(--color-text);
  letter-spacing: .01em;
  padding: clamp(8px, 0.73vw, 14px) clamp(9px, 0.79vw, 16px);
  white-space: nowrap;
}

table.data-table tbody td {
  font-weight: 400;
  font-size: clamp(19px, 1.52vw, 31px);
  color: var(--color-text-muted);
  text-align: center;
  padding: clamp(8px, 0.73vw, 14px) clamp(6px, 0.61vw, 11px);
  white-space: nowrap;
}

table.data-table tbody tr + tr th,
table.data-table tbody tr + tr td {
  border-top: 1px solid var(--color-hair);
}

table.data-table tbody td.col-destaque {
  background: rgba(17, 95, 243, 0.081);
  color: var(--color-accent);
  font-weight: 700;
}

table.data-table tr.total-row th,
table.data-table tr.total-row td {
  background: rgba(17, 95, 243, .14);
  font-weight: 800;
  font-size: clamp(20px, 1.56vw, 32px);
  color: var(--color-text);
  border-top: 1px solid rgba(0, 51, 130, .45);
}

table.data-table tr.total-row td.col-destaque {
  background: rgba(17, 95, 243, 0.184);
  color: var(--color-accent);
}

table.data-table th:first-child { width: 17%; }
.table-wrapper.narrow table.data-table th:first-child { width: 46%; }

.table-wrapper.narrow { max-width: 760px; }

.split {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.98vw, 42px);
  flex: none;
}

.split > .table-wrapper { flex: 1 1 auto; }

.callout {
  display: flex;
  align-items: center;
  gap: clamp(11px, 0.92vw, 17px);
  padding: clamp(12px, 1.06vw, 20px) clamp(15px, 1.32vw, 24px);
  border-radius: var(--radius);
  border: 1px solid rgba(17, 95, 243, 0.517);
  background: rgba(17, 95, 243, 0.069);
  flex: none;
  max-width: 34%;
}

.callout svg {
  width: clamp(38px, 3.2vw, 60px);
  height: clamp(38px, 3.2vw, 60px);
  flex: none;
  color: var(--color-accent);
}

.callout-text {
  font-weight: 800;
  font-size: clamp(24px, 2.09vw, 42px);
  line-height: 1.15;
  color: var(--color-text);
  padding-left: clamp(11px, 0.92vw, 17px);
  border-left: 1px solid rgba(17, 95, 243, 0.402);
}

.nota-base {
  margin-top: clamp(7px, 0.66vw, 12px);
  font-size: clamp(14px, 1.10vw, 21px);
  line-height: 1.45;
  color: var(--color-text-subtle);
  flex: none;
}

.nota-base strong {
  font-weight: 700;
  color: var(--color-text-muted);
}

.navZone {
  position: fixed;
  top: 0;
  width: 15vw;
  height: 100vh;
  z-index: 50;
  cursor: pointer;
}
.navZone.left { left: 0; }
.navZone.right { right: 0; }

@media (prefers-reduced-motion: no-preference) {
  .slide.active > * {
    opacity: 0;
    transform: translateY(14px);
  }
  .slide.active.entering > * {
    opacity: 1;
    transform: none;
    transition: opacity .42s ease, transform .42s ease;
  }
  .slide.active.entering > *:nth-child(2) { transition-delay: .07s; }
  .slide.active.entering > *:nth-child(3) { transition-delay: .14s; }
  .slide.active.entering > *:nth-child(4) { transition-delay: .21s; }
  .slide.active.entering > *:nth-child(5) { transition-delay: .28s; }
}

@media print {
  @page { size: 1920px 1080px; margin: 0; }

  html, body, .deck { width: 1920px; height: auto; overflow: visible; background: var(--color-bg); }

  .deck::before { display: none; }
  .navZone { display: none; }

  .slide {
    display: flex !important;
    position: relative;
    width: 1920px;
    height: 1080px;
    transform: none !important;   
    page-break-after: always;
    break-after: page;
    background:
      repeating-linear-gradient(0deg, transparent 0 47px, var(--color-grid) 47px 48px),
      repeating-linear-gradient(90deg, transparent 0 47px, var(--color-grid) 47px 48px),
      linear-gradient(175deg, var(--color-bg) 30%, var(--color-bg-2) 100%);
  }

  .slide:last-child { page-break-after: auto; break-after: auto; }

  .slide.active > * { opacity: 1 !important; transform: none !important; }
}

.split-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(10px, 0.89vw, 18px);
  align-items: start;
  flex: none;
}

.split-2.equilibrio    { grid-template-columns: 1fr 1fr; }

.split-3 {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: clamp(8px, 0.69vw, 13px);
  align-items: stretch;   
  flex: none;
}
.split-2.apoio-estreito { grid-template-columns: 1.5fr .5fr; }

.coluna {
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.46vw, 9px);
  min-width: 0;
}

.ico {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(38px, 3vw, 56px);
  height: clamp(38px, 3vw, 56px);
  border-radius: 50%;
  border: 1px solid rgba(0, 51, 130, .45);
  background: rgba(17, 95, 243, .14);
  color: var(--fw-blue-600);
}

.ico svg { width: 54%; height: 54%; }

.ico.ico-accent {
  border-color: rgba(17, 95, 243, 0.575);
  background: rgba(17, 95, 243, 0.115);
  color: var(--color-accent);
}

.ico.ico-sm { width: clamp(30px, 2.3vw, 42px); height: clamp(30px, 2.3vw, 42px); }

.card-def {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 0.73vw, 13px);
  padding: clamp(6px, 0.54vw, 10px) clamp(8px, 0.69vw, 13px);
  border: 1px solid var(--color-hair);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.card-def > div { min-width: 0; }

.card-def h4 {
  font-size: clamp(16px, 1.28vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.card-def p {
  font-size: clamp(16px, 1.47vw, 30px);
  line-height: 1.34;
  color: var(--color-text-muted);
}

.card-def strong { color: var(--color-text); font-weight: 700; }

.valor-destaque {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(7px, 0.59vw, 12px);
  padding: clamp(8px, 0.73vw, 14px) clamp(12px, 1.06vw, 20px);
  border: 1px solid rgba(17, 95, 243, 0.575);
  border-radius: var(--radius);
  background: rgba(17, 95, 243, 0.081);
  flex: none;
}

.valor-destaque .cifra {
  font-size: clamp(35px, 3.19vw, 59px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-accent);
}

.valor-destaque .unidade {
  font-size: clamp(18px, 1.38vw, 28px);
  font-weight: 500;
  color: var(--color-text-muted);
}

.cadeia {
  display: flex;
  align-items: stretch;
  gap: clamp(3px, 0.33vw, 7px);
  flex: none;
}

.cadeia .no {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(4px, 0.36vw, 7px);
  padding: clamp(5px, 0.48vw, 9px) clamp(5px, 0.43vw, 8px);
  border: 1px solid var(--color-hair);
  border-radius: 12px;
  background: var(--color-surface);
  text-align: center;
}

.cadeia .no .rot {
  font-size: clamp(15px, 1.31vw, 26px);
  font-weight: 500;
  line-height: 1.24;
  color: var(--color-text-muted);
}

.cadeia .no .val {
  font-size: clamp(18px, 1.62vw, 32px);
  font-weight: 800;
  line-height: 1;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.cadeia .no.destaque {
  border-color: rgba(17, 95, 243, 0.632);
  background: rgba(17, 95, 243, 0.092);
}
.cadeia .no.destaque .val { color: var(--color-accent); }

.cadeia .op {
  flex: none;
  align-self: center;
  font-size: clamp(18px, 1.49vw, 30px);
  font-weight: 800;
  color: var(--fw-blue-600);
}

.painel {
  border: 1px solid var(--color-hair);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
  flex: none;                 
  display: flex;
  flex-direction: column;
}

.painel > header {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.53vw, 10px);
  padding: clamp(4px, 0.38vw, 7px) clamp(8px, 0.69vw, 13px);
  background: var(--color-structure);
  font-size: clamp(14px, 1.12vw, 22px);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-text);
}

.painel > .corpo {
  padding: clamp(5px, 0.48vw, 9px) clamp(7px, 0.65vw, 12px);
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.41vw, 7px);
}

.linhas { display: flex; flex-direction: column; }

.linha {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(7px, 0.68vw, 14px);
  padding: clamp(5px, 0.48vw, 9px) 0;
  font-size: clamp(16px, 1.52vw, 31px);
  line-height: 1.3;
  color: var(--color-text-muted);
}

.linha + .linha { border-top: 1px solid var(--color-hair); }

.linha .v {
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.linha.resultado .v {
  color: var(--color-accent);
  font-size: 1.08em;
  font-weight: 800;
}

.linha .obs,
.data-table .obs {
  display: block;
  font-size: .82em;
  color: var(--color-text-subtle);
  font-weight: 400;
  margin-top: 2px;
  white-space: normal;
}

.faixa {
  display: flex;
  align-items: center;
  gap: clamp(9px, 0.79vw, 15px);
  padding: clamp(6px, 0.61vw, 11px) clamp(10px, 0.92vw, 17px);
  border: 1px solid rgba(17, 95, 243, 0.437);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  background: rgba(17, 95, 243, 0.069);
  font-size: clamp(18px, 1.59vw, 32px);
  line-height: 1.34;
  color: var(--color-text);
  flex: none;
}

.faixa .rotulo { font-weight: 800; color: var(--color-accent); }
.faixa strong  { font-weight: 700; color: var(--color-text); }

.cards {
  display: grid;
  grid-template-columns: repeat(var(--n, 3), 1fr);
  gap: clamp(5px, 0.48vw, 9px);
  align-items: stretch;
  flex: none;
}

.card {
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.48vw, 9px);
  padding: clamp(6px, 0.54vw, 10px) clamp(7px, 0.65vw, 12px);
  border: 1px solid var(--color-hair);
  border-radius: var(--radius);
  background: var(--color-surface);
  min-width: 0;
}

.card > h4 {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.48vw, 9px);
  font-size: clamp(16px, 1.28vw, 26px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

.num {
  flex: none;
  display: grid;
  place-items: center;
  width: 1.7em;
  height: 1.7em;
  border-radius: 50%;
  background: rgba(17, 95, 243, 0.184);
  border: 1px solid rgba(17, 95, 243, 0.575);
  color: var(--color-accent);
  font-size: .8em;
  font-weight: 800;
}

.painel > header .num { font-size: clamp(14px, 1.12vw, 22px); }

.card .sub {
  font-size: clamp(16px, 1.45vw, 30px);
  line-height: 1.34;
  color: var(--color-text-muted);
}

.card.destaque { border-color: rgba(17, 95, 243, 0.575); background: rgba(17, 95, 243, 0.069); }

.corpo-texto {
  font-size: clamp(19px, 1.68vw, 34px);
  line-height: 1.4;
  color: var(--color-text-muted);
  flex: none;
}

.corpo-texto strong  { color: var(--color-text); font-weight: 700; }
.corpo-texto .realce { color: var(--color-accent); font-weight: 700; }

.data-table.compacta thead th { font-size: clamp(14px, 1.23vw, 25px); padding: clamp(5px, 0.51vw, 9px) clamp(6px, 0.59vw, 11px); }
.data-table.compacta tbody th { font-size: clamp(16px, 1.40vw, 29px); padding: clamp(5px, 0.50vw, 9px) clamp(7px, 0.68vw, 12px); white-space: normal; }
.data-table.compacta tbody td { font-size: clamp(16px, 1.47vw, 30px); padding: clamp(5px, 0.50vw, 9px) clamp(5px, 0.53vw, 9px); }

.timeline {
  display: grid;
  grid-template-columns: repeat(var(--n, 4), 1fr);
  gap: clamp(7px, 0.66vw, 13px);
  flex: none;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: clamp(19px, 1.5vw, 28px);
  height: 1px;
  background: rgba(0, 51, 130, .35);
}

.marco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.53vw, 10px);
  text-align: center;
  min-width: 0;
}

.marco .pino {
  position: relative;
  z-index: 1;
  width: clamp(38px, 3vw, 56px);
  height: clamp(38px, 3vw, 56px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-bg-2);
  border: 1px solid rgba(0, 51, 130, .5);
  color: var(--fw-blue-600);
}

.marco .pino svg { width: 52%; height: 52%; }

.marco.destaque .pino {
  border-color: rgba(17, 95, 243, 0.690);
  background: rgba(17, 95, 243, 0.138);
  color: var(--color-accent);
}

.marco .caixa {
  width: 100%;
  padding: clamp(7px, 0.59vw, 11px) clamp(6px, 0.53vw, 10px);
  border: 1px solid var(--color-hair);
  border-radius: 12px;
  background: var(--color-surface);
}

.marco.destaque .caixa { border-color: rgba(17, 95, 243, 0.517); background: rgba(17, 95, 243, 0.081); }

.marco .ano {
  font-size: clamp(23px, 2.04vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 6px;
}

.marco.destaque .ano { color: var(--color-accent); }

.marco .desc {
  font-size: clamp(16px, 1.43vw, 29px);
  line-height: 1.28;
  color: var(--color-text-muted);
}

.topicos { display: flex; flex-direction: column; gap: clamp(5px, 0.48vw, 9px); flex: none; }

.topico {
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.71vw, 13px);
  padding: clamp(6px, 0.59vw, 11px) clamp(9px, 0.82vw, 15px);
  border: 1px solid var(--color-hair);
  border-left: 3px solid rgba(0, 51, 130, .5);
  border-radius: 10px;
  background: var(--color-surface);
  font-size: clamp(18px, 1.57vw, 32px);
  line-height: 1.3;
  color: var(--color-text-muted);
}

.topico strong { color: var(--color-text); font-weight: 700; }

.figura {
  border: 1px solid var(--color-hair);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-2);
  flex: none;
  line-height: 0;
}

.figura img { width: 100%; height: 100%; object-fit: cover; display: block; }

.figura.recorte {
  border: none;
  background: transparent;
  border-radius: 0;
}

.figura.recorte img {
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1) contrast(1.06);
}

.capa { display: flex; flex-direction: column; gap: clamp(11px, 0.99vw, 20px); }

.capa h1 { font-size: clamp(57px, 5.50vw, 101px); }

.capa .assinatura {
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.66vw, 12px);
  font-size: clamp(19px, 1.49vw, 31px);
  font-weight: 500;
  color: var(--color-text-muted);
}

.sprite { display: none; }

.rotulo-bloco {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.53vw, 10px);
  font-size: clamp(14px, 1.12vw, 22px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: clamp(5px, 0.41vw, 7px);
  flex: none;
}

.fluxo {
  display: flex;
  align-items: stretch;
  gap: clamp(5px, 0.41vw, 8px);
  flex: none;
}

.fluxo .etapa {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(5px, 0.41vw, 8px);
  padding: clamp(7px, 0.61vw, 11px) clamp(6px, 0.53vw, 10px);
  border: 1px solid var(--color-hair);
  border-radius: 12px;
  background: var(--color-surface);
  text-align: center;
}

.fluxo .etapa .rot {
  font-size: clamp(16px, 1.43vw, 29px);
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-text);
}

.fluxo .etapa .det {
  font-size: clamp(15px, 1.33vw, 26px);
  line-height: 1.3;
  color: var(--color-text-muted);
}

.fluxo .etapa.destaque {
  border-color: rgba(17, 95, 243, 0.632);
  background: rgba(17, 95, 243, 0.092);
}
.fluxo .etapa.destaque .rot { color: var(--color-accent); }

.fluxo .seta {
  flex: none;
  align-self: center;
  color: var(--fw-blue-600);
  font-size: clamp(18px, 1.49vw, 30px);
  line-height: 1;
  font-weight: 700;
}

.formula {
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.71vw, 14px);
  padding: clamp(7px, 0.65vw, 12px) clamp(10px, 0.96vw, 18px);
  border: 1px solid rgba(0, 51, 130, .38);
  border-radius: var(--radius);
  background: rgba(17, 95, 243, .09);
  font-size: clamp(18px, 1.59vw, 32px);
  line-height: 1.32;
  color: var(--color-text);
  flex: none;
}

.formula .termo  { font-weight: 800; color: var(--color-accent); }
.formula .op     { font-weight: 800; color: var(--fw-blue-600); padding: 0 .15em; }
.formula .nota   { font-size: .82em; color: var(--color-text-subtle); }

.fracao {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  vertical-align: middle;
  font-size: .82em;
  line-height: 1.2;
  text-align: center;
}
.fracao .den { border-top: 1px solid rgba(245,243,238,.5); padding-top: 2px; margin-top: 2px; }

.checks {
  display: grid;
  grid-template-columns: repeat(var(--n, 1), 1fr);
  gap: clamp(5px, 0.41vw, 8px);
  flex: none;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: clamp(6px, 0.57vw, 11px);
  font-size: clamp(16px, 1.50vw, 30px);
  line-height: 1.3;
  color: var(--color-text-muted);
}

.check > .marca {
  flex: none;
  width: 1.35em;
  height: 1.35em;
  margin-top: .05em;
  color: var(--color-accent);
}
.check > .marca svg { width: 100%; height: 100%; }

.check strong { color: var(--color-text); font-weight: 700; }

.faixa.atencao {
  border-color: rgba(17, 95, 243, 0.690);
  border-left-width: 4px;
  background: rgba(17, 95, 243, 0.115);
}

.faixa.neutra {
  border-color: rgba(0, 51, 130, .38);
  border-left-color: var(--fw-blue-600);
  background: rgba(17, 95, 243, .08);
}
.faixa.neutra .rotulo { color: var(--fw-blue-600); }

.passos { display: flex; flex-direction: column; gap: clamp(5px, 0.41vw, 8px); flex: none; }

.passo {
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.66vw, 12px);
  padding: clamp(6px, 0.54vw, 10px) clamp(9px, 0.76vw, 14px);
  border: 1px solid var(--color-hair);
  border-radius: 12px;
  background: var(--color-surface);
}

.passo .num { flex: none; font-size: clamp(14px, 1.12vw, 22px); }

.passo .txt {
  font-size: clamp(16px, 1.50vw, 30px);
  line-height: 1.28;
  color: var(--color-text-muted);
  min-width: 0;
}

.passo .txt b { display: block; color: var(--color-text); font-weight: 700; }
.passo .txt .v { color: var(--color-accent); font-weight: 800; }

.painel.lado-a > header { background: rgba(17, 95, 243, 0.184); color: var(--color-accent); }
.painel.lado-b > header { background: rgba(17, 95, 243, .18); color: var(--fw-blue-600); }

.linha.empilhada {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.linha.empilhada .v { white-space: normal; }

.slide.capa-hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.slide.capa-hero.active {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.capa-hero .foto {
  position: absolute;   
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  overflow: hidden;
}

.capa-hero .foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 38%;
  display: block;
  
  filter: brightness(1) contrast(1.18) saturate(1.35) hue-rotate(-6deg);

  
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.25) 22%, rgba(0,0,0,.75) 48%, #000 78%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.25) 22%, rgba(0,0,0,.75) 48%, #000 78%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.capa-hero .foto::after {
  content: "";
  position: absolute;
  inset: 0;
  
  background: linear-gradient(115deg,
    rgba(4, 16, 31, .45) 0%, rgba(6, 33, 66, .18) 45%, rgba(4, 16, 31, .30) 100%);
}

.capa-hero .texto {
  position: relative;
  z-index: 2;
  width: 62%;
  flex: none;
  
  margin: auto auto auto 0;
  padding: var(--slide-py) var(--slide-px);
  display: flex;
  flex-direction: column;
  gap: clamp(9px, 0.86vw, 17px);
}

.capa-hero .texto h1 {
  font-size: clamp(55px, 5.50vw, 106px);
  line-height: .98;
  letter-spacing: -0.025em;
}

.capa-hero .texto .sublabel {
  font-family: var(--font-voz);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(21px, 1.76vw, 36px);
  line-height: 1.24;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.capa-hero .assinatura {
  display: flex;
  align-items: center;
  gap: clamp(7px, 0.66vw, 12px);
  font-size: clamp(19px, 1.49vw, 31px);
  font-weight: 500;
  color: var(--color-text-muted);
}

.capa-hero .cota { width: clamp(280px, 26vw, 520px); }

.diagrama-imoveis {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: clamp(5px, 0.46vw, 9px);
  flex: none;
}

.diagrama-imoveis .imovel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(5px, 0.46vw, 9px);
  min-width: 0;
}

.diagrama-imoveis .imovel img {
  width: 100%;
  max-height: clamp(180px, 20vw, 380px);
  object-fit: contain;
  object-position: bottom;
  
  filter: brightness(1) contrast(1.06) saturate(.92)
          drop-shadow(0 14px 26px rgba(0, 51, 130, .18));
}

.diagrama-imoveis .rotulo {
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.46vw, 9px);
  padding: clamp(5px, 0.48vw, 9px) clamp(8px, 0.69vw, 13px);
  border: 1px solid var(--color-hair);
  border-radius: 999px;
  background: var(--color-surface);
  font-size: clamp(14px, 1.12vw, 22px);
  line-height: 1.24;
  color: var(--color-text-muted);
  text-align: left;
}

.diagrama-imoveis .rotulo strong { color: var(--color-accent); font-weight: 800; }

.diagrama-imoveis .elo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.36vw, 7px);
  padding-bottom: clamp(20px, 2.31vw, 46px);
}

.diagrama-imoveis .elo .arco {
  width: clamp(76px, 7vw, 140px);
  color: var(--color-accent);
}

.diagrama-imoveis .elo .arco svg { width: 100%; height: auto; display: block; }

.diagrama-imoveis .elo .txt {
  font-size: clamp(13px, 1.04vw, 21px);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.24;
  text-align: center;
  color: var(--color-text);
  max-width: clamp(120px, 11vw, 200px);
}

.imovel-solto { display: flex; align-items: center; justify-content: center; min-width: 0; }

.imovel-solto img {
  width: 100%;
  max-height: clamp(96px, 9vw, 170px);
  object-fit: contain;
  filter: brightness(1) contrast(1.06) saturate(.92)
          drop-shadow(0 12px 22px rgba(0, 51, 130, .18));
}

.table-wrapper.densa table.data-table thead th { padding-left: 5px; padding-right: 5px; letter-spacing: 0; }
.table-wrapper.densa table.data-table tbody th { padding-left: 10px; padding-right: 8px; }
.table-wrapper.densa table.data-table tbody td { padding-left: 4px; padding-right: 4px; }
.table-wrapper.densa table.data-table th:first-child { width: 13%; }
.table-wrapper.densa .obs { font-size: .74em; letter-spacing: -0.01em; }

.card .render {
  width: 100%;
  height: clamp(84px, 8vw, 150px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: brightness(1) contrast(1.05) saturate(.95)
          drop-shadow(0 10px 18px rgba(0, 51, 130, .18));
}

.painel > header,
.painel > header *,
table.data-table thead th,
table.data-table thead th * { color: #FFFFFF; }

table.data-table thead th.col-destaque,
table.data-table thead th.col-destaque * { color: var(--color-accent-on); }

.painel > header .num {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .55);
  color: #FFFFFF;
}

.linha { flex-wrap: wrap; }

.capa-hero .foto::after { background: none; }
.capa-hero .foto img { filter: contrast(1.04) saturate(.96); }
