/* Extensão do design system original para a apresentação de banco de dados. */

strong { font-weight: 800; }
.section-intro strong { color: #fff; }

.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-scale { transform: scale(.94); }
.reveal.active { transform: translate3d(0,0,0) scale(1); }

.scenario-dashboard {
  border-radius: 24px;
  padding: 30px;
}
.scenario-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 0;
}
.scenario-numbers article {
  min-height: 155px;
  padding: 20px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.scenario-numbers article:hover {
  transform: translateY(-7px);
  border-color: rgba(229,9,21,.48);
  background: rgba(229,9,21,.09);
}
.scenario-numbers b {
  font-size: clamp(34px, 4vw, 58px);
  line-height: .9;
  letter-spacing: -.06em;
}
.scenario-numbers span {
  margin-top: 14px;
  font-size: 9px;
  line-height: 1.45;
  color: rgba(255,255,255,.52);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.scenario-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.scenario-note i,
.flow-safety i,
.decision-note i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(229,9,21,.75);
}
.scenario-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
}

.database-structure-layout {
  grid-template-columns: 1fr .7fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(35px, 6vw, 90px);
}
.database-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr .25fr repeat(3, 1fr);
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}
.db-node {
  position: relative;
  min-height: 135px;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.db-node::before {
  content: "";
  position: absolute;
  inset: auto -35% -65% 20%;
  height: 130px;
  background: radial-gradient(circle, rgba(229,9,21,.28), transparent 70%);
}
.db-node:hover { transform: translateY(-6px); border-color: rgba(229,9,21,.48); }
.db-node small { font-size: 8px; letter-spacing: .14em; color: rgba(255,255,255,.36); }
.db-node strong { margin-top: 8px; font-size: 19px; }
.db-node span { margin-top: 5px; font-size: 9px; color: rgba(255,255,255,.44); }
.db-main {
  min-height: 170px;
  background: linear-gradient(145deg, rgba(229,9,21,.96), rgba(95,0,8,.76));
}
.db-main small, .db-main span { color: rgba(255,255,255,.7); }
.db-main strong { font-size: 30px; }
.db-connector {
  display: grid;
  gap: 25px;
}
.db-connector i {
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(255,255,255,.35));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .8s var(--ease);
}
.database-map.active .db-connector i,
.reveal.active .db-connector i { transform: scaleX(1); }
.db-connector i:nth-child(2) { transition-delay: .12s; }
.db-connector i:nth-child(3) { transition-delay: .24s; }
.structure-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2px;
}
.structure-footer span {
  margin-right: 5px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: rgba(255,255,255,.4);
}
.structure-footer b {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.05);
  font-size: 8px;
  letter-spacing: .05em;
}

.provider-card {
  border-radius: 24px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s;
}
.provider-card:hover { transform: translateY(-8px); border-color: rgba(229,9,21,.5); }
.provider-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -100px;
  bottom: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,9,21,.22), transparent 68%);
  pointer-events: none;
}
.provider-top {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.provider-rank {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--red);
  font-size: 10px;
  font-weight: 900;
}
.provider-top div { display: grid; gap: 4px; }
.provider-top small { font-size: 7px; letter-spacing: .13em; color: rgba(255,255,255,.38); }
.provider-top strong { font-size: 15px; }
.provider-badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(229,9,21,.14);
  border: 1px solid rgba(229,9,21,.45);
  color: #ff6f78;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
}
.provider-badge.secondary { color: #c7d7ff; background: rgba(91,132,255,.12); border-color: rgba(91,132,255,.4); }
.provider-badge.tertiary { color: #c8ffdd; background: rgba(40,197,111,.12); border-color: rgba(40,197,111,.38); }
.price-line { display: flex; align-items: baseline; gap: 8px; margin-top: 28px; }
.price-line b { font-size: clamp(36px, 4.5vw, 62px); line-height: .9; letter-spacing: -.055em; }
.price-line span { font-size: 10px; color: rgba(255,255,255,.42); }
.price-brl { margin-top: 11px; font-size: 10px; color: rgba(255,255,255,.48); }
.price-brl strong { color: white; }
.provider-features { list-style: none; padding: 20px 0 8px; margin: 20px 0 0; border-top: 1px solid rgba(255,255,255,.09); }
.provider-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 10px;
  color: rgba(255,255,255,.66);
}
.provider-features i { width: 5px; height: 5px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px rgba(229,9,21,.65); }
.source-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.52);
  transition: color .25s;
}
.source-link:hover { color: white; }
.source-link span { color: var(--red-2); font-size: 13px; }

.comparison-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.comparison-copy { max-width: 500px; }
.priority-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.priority-switcher button {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.56);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
  transition: .25s;
}
.priority-switcher button:hover,
.priority-switcher button.active {
  color: white;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 12px 26px rgba(229,9,21,.2);
}
.comparison-card { border-radius: 24px; padding: 28px; }
.comparison-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.comparison-head div { display: grid; gap: 5px; }
.comparison-head small { font-size: 7px; letter-spacing: .13em; color: rgba(255,255,255,.38); }
.comparison-head strong { font-size: 24px; }
.comparison-head > span { font-size: 10px; color: #ff777f; font-weight: 800; }
.comparison-card > p { margin: 18px 0; max-width: 72ch; font-size: 10px; line-height: 1.55; color: rgba(255,255,255,.54); }
.comparison-table { border-top: 1px solid rgba(255,255,255,.07); }
.comparison-row {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.comparison-row > * { padding: 13px 10px; }
.comparison-row span { font-size: 9px; color: rgba(255,255,255,.42); }
.comparison-row b {
  font-size: 9px;
  font-weight: 700;
  border-left: 1px solid rgba(255,255,255,.055);
  transition: background .25s, color .25s;
}
.comparison-labels b { color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; }
.comparison-card[data-active-provider="supabase"] .comparison-row b:nth-child(2),
.comparison-card[data-active-provider="neon"] .comparison-row b:nth-child(3),
.comparison-card[data-active-provider="turso"] .comparison-row b:nth-child(4) {
  background: rgba(229,9,21,.13);
  color: white;
}

.integration-layout { display: grid; grid-template-columns: 1fr; align-content: center; }
.integration-layout .section-copy { max-width: 760px; }
.integration-flow {
  display: grid;
  grid-template-columns: repeat(11, auto);
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 30px;
}
.integration-step {
  width: 135px;
  min-height: 175px;
  padding: 17px;
  border-radius: 17px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: .25;
  transform: translateY(18px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), border-color .3s;
}
.integration-flow.active .integration-step { opacity: 1; transform: translateY(0); }
.integration-flow.active .integration-step:nth-of-type(2) { transition-delay: .12s; }
.integration-flow.active .integration-step:nth-of-type(3) { transition-delay: .24s; }
.integration-flow.active .integration-step:nth-of-type(4) { transition-delay: .36s; }
.integration-flow.active .integration-step:nth-of-type(5) { transition-delay: .48s; }
.integration-flow.active .integration-step:nth-of-type(6) { transition-delay: .60s; }
.integration-step:hover { transform: translateY(-7px); border-color: rgba(229,9,21,.48); }
.integration-step > span { position: absolute; top: 14px; right: 14px; font-size: 8px; font-weight: 800; color: rgba(255,255,255,.28); }
.step-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(229,9,21,.14);
  border: 1px solid rgba(229,9,21,.35);
  color: #ff747c;
  font-size: 10px;
  font-weight: 900;
}
.integration-step strong { font-size: 11px; }
.integration-step small { margin-top: 7px; font-size: 8px; line-height: 1.45; color: rgba(255,255,255,.4); }
.integration-step.active-step { background: linear-gradient(145deg, rgba(229,9,21,.94), rgba(99,0,9,.72)); border-color: rgba(255,255,255,.18); }
.integration-step.active-step .step-icon { background: white; border-color: white; color: var(--red); }
.integration-step.active-step small { color: rgba(255,255,255,.68); }
.flow-arrow {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,.2);
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.integration-flow.active .flow-arrow { transform: scaleX(1); }
.integration-flow.active .flow-arrow:nth-of-type(1) { transition-delay: .08s; }
.integration-flow.active .flow-arrow:nth-of-type(2) { transition-delay: .20s; }
.integration-flow.active .flow-arrow:nth-of-type(3) { transition-delay: .32s; }
.integration-flow.active .flow-arrow:nth-of-type(4) { transition-delay: .44s; }
.integration-flow.active .flow-arrow:nth-of-type(5) { transition-delay: .56s; }
.flow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255,255,255,.45);
  border-right: 1px solid rgba(255,255,255,.45);
  transform: rotate(45deg);
}
.flow-safety {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.flow-safety span { font-size: 7px; letter-spacing: .13em; color: #ff747c; }
.flow-safety strong { font-size: 10px; line-height: 1.4; }
.flow-safety i { margin: 0; }

.final-cost {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
}
.final-cost small { font-size: 7px; letter-spacing: .14em; color: rgba(255,255,255,.38); }
.final-cost strong { font-size: 25px; }
.final-cost span { font-size: 9px; color: rgba(255,255,255,.48); }
.decision-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding-top: 18px;
  margin-top: 5px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.decision-note span { font-size: 9px; line-height: 1.5; color: rgba(255,255,255,.48); }
.data-disclaimer {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 160px));
  text-align: center;
  font-size: 7px;
  line-height: 1.45;
  letter-spacing: .05em;
  color: rgba(255,255,255,.3);
}

@media (max-width: 1180px) {
  .integration-flow { grid-template-columns: repeat(6, 1fr); }
  .flow-arrow { display: none; }
  .integration-step { width: auto; min-height: 155px; }
}

@media (max-width: 1050px) {
  .database-structure-layout,
  .comparison-layout { grid-template-columns: 1fr; }
  .database-map { grid-template-columns: 1fr 1fr 1fr; }
  .db-main { grid-column: 1 / -1; min-height: 120px; }
  .db-connector { display: none; }
  .comparison-copy { max-width: 680px; }
}

@media (max-width: 720px) {
  .reveal-left, .reveal-right { transform: translateY(28px); }
  .scenario-dashboard,
  .provider-card,
  .comparison-card { padding: 21px; }
  .scenario-numbers { grid-template-columns: 1fr; }
  .scenario-numbers article { min-height: 115px; }
  .database-map { grid-template-columns: 1fr; }
  .db-main { grid-column: auto; }
  .db-node { min-height: 115px; }
  .provider-top { grid-template-columns: 42px 1fr; }
  .provider-badge { grid-column: 1 / -1; justify-self: start; }
  .price-line { align-items: flex-end; flex-wrap: wrap; }
  .comparison-head { align-items: flex-start; flex-direction: column; }
  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 570px; }
  .integration-flow { grid-template-columns: 1fr 1fr; gap: 10px; }
  .integration-step { min-height: 145px; }
  .flow-safety { grid-template-columns: 1fr; }
  .data-disclaimer { position: relative; left: auto; bottom: auto; transform: none; width: calc(100% - 36px); margin: -52px auto 70px; }
}

/* Ajustes V02 — texto final e títulos internos */
.final-checklist .decision-note span {
  width: auto;
  height: auto;
  min-width: 0;
  display: block;
  place-items: initial;
  background: transparent;
  border-radius: 0;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

/* Mantém o título principal da hero e reduz somente os títulos internos. */
.panel:not(.hero) h2 {
  font-size: clamp(40px, 5.35vw, 72px);
}

.final-title h2 {
  font-size: clamp(46px, 6vw, 82px);
}

@media (max-width: 720px) {
  .panel:not(.hero) h2 {
    font-size: clamp(34px, 10.2vw, 50px);
  }

  .final-title h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .final-checklist .decision-note span {
    font-size: 10px;
    line-height: 1.55;
  }
}

/* Ajustes V03 — legibilidade dos cards e proporção dos títulos */

/* Títulos internos menores sem alterar a hero principal. */
.panel:not(.hero) h2 {
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: .94;
}

.final-title h2 {
  font-size: clamp(42px, 5.25vw, 72px);
}

/* Textos informativos dos cards de planos maiores e mais legíveis. */
.provider-rank {
  font-size: 12px;
}

.provider-top small {
  font-size: 10px;
  line-height: 1.35;
}

.provider-top strong {
  font-size: 20px;
  line-height: 1.15;
}

.provider-badge {
  padding: 9px 12px;
  font-size: 9px;
  line-height: 1;
}

.price-line span {
  font-size: 14px;
  line-height: 1.25;
}

.price-brl {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.35;
}

.provider-features {
  padding-top: 22px;
}

.provider-features li {
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.45;
}

.provider-features i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
}

.source-link {
  margin-top: 14px;
  font-size: 10px;
  line-height: 1.35;
}

.source-link span {
  font-size: 16px;
}

/* Garante que a observação final use a largura total do card. */
.final-checklist .decision-note {
  width: 100%;
}

.final-checklist .decision-note span {
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
  height: auto !important;
  display: block !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
}

@media (max-width: 720px) {
  .panel:not(.hero) h2 {
    font-size: clamp(32px, 9.2vw, 46px);
    line-height: .96;
  }

  .final-title h2 {
    font-size: clamp(36px, 10.3vw, 50px);
  }

  .provider-top small {
    font-size: 10px;
  }

  .provider-top strong {
    font-size: 19px;
  }

  .provider-badge {
    font-size: 10px;
  }

  .price-line span,
  .price-brl {
    font-size: 14px;
  }

  .provider-features li {
    font-size: 14px;
    line-height: 1.5;
  }

  .source-link {
    font-size: 11px;
  }

  .final-checklist .decision-note span {
    font-size: 13px;
  }
}

/* Ajustes V04 — legibilidade geral dos textos de apoio */

/* Rótulos e microtextos gerais */
.eyebrow {
  font-size: 11px;
  line-height: 1.35;
}

.note-card span,
.card-kicker,
.quote-card span,
.speech-bubble small,
.comment-card span {
  font-size: 10px;
  line-height: 1.35;
}

.note-card strong,
.quote-card strong,
.comment-card strong {
  font-size: 15px;
  line-height: 1.5;
}

.quote-card small {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,.58);
}

.statement {
  font-size: 11px;
  line-height: 1.35;
}

/* Cenário atual */
.matrix-head span {
  font-size: 10px;
}

.scenario-numbers span {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,.62);
}

.scenario-note p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
}

/* Estrutura do banco */
.db-node small {
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255,255,255,.52);
}

.db-node span {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255,255,255,.6);
}

.structure-footer span,
.structure-footer b {
  font-size: 10px;
  line-height: 1.35;
}

/* Comparador interativo */
.priority-switcher button {
  font-size: 10px;
}

.comparison-head small {
  font-size: 10px;
}

.comparison-head > span {
  font-size: 13px;
}

.comparison-card > p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.68);
}

.comparison-row span,
.comparison-row b {
  font-size: 11px;
  line-height: 1.4;
}

/* Fluxograma de integração */
.integration-step > span {
  font-size: 10px;
}

.integration-step strong {
  font-size: 14px;
  line-height: 1.25;
}

.integration-step small {
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,.62);
}

.integration-step.active-step small {
  color: rgba(255,255,255,.82);
}

.flow-safety span {
  font-size: 10px;
  line-height: 1.35;
}

.flow-safety strong {
  font-size: 13px;
  line-height: 1.5;
}

/* Recomendação final */
.final-cost small {
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255,255,255,.58);
}

.final-cost span {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.66);
}

.final-checklist strong {
  font-size: 14px;
  line-height: 1.45;
}

.final-checklist li > span {
  font-size: 10px;
}

.data-disclaimer {
  font-size: 9px;
  line-height: 1.5;
  color: rgba(255,255,255,.46);
}

@media (max-width: 1180px) {
  .integration-step {
    min-height: 170px;
  }
}

@media (max-width: 720px) {
  .eyebrow {
    font-size: 10px;
  }

  .note-card span,
  .card-kicker,
  .quote-card span,
  .speech-bubble small,
  .comment-card span {
    font-size: 10px;
  }

  .note-card strong,
  .quote-card strong,
  .comment-card strong {
    font-size: 15px;
  }

  .quote-card small,
  .scenario-numbers span,
  .db-node span,
  .integration-step small,
  .final-cost span {
    font-size: 12px;
  }

  .scenario-note p,
  .comparison-card > p,
  .flow-safety strong,
  .final-checklist strong {
    font-size: 14px;
  }

  .integration-step {
    min-height: 165px;
    padding: 18px;
  }

  .integration-step strong {
    font-size: 15px;
  }

  .comparison-row span,
  .comparison-row b {
    font-size: 12px;
  }

  .data-disclaimer {
    font-size: 10px;
  }
}

/* V05 — Tipografia e hero atualizadas */
html, body, button, input, textarea, select {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

h1, h2, h3,
.split-title,
.process-card h3,
.section-copy h2,
.detail-card > small,
.workflow-step b,
.final-process-list b {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
}

.eyebrow,
.brand,
.desktop-nav,
.mobile-menu,
.primary-button,
.ai-badge,
.process-card .num,
.mini-flow,
.slide-number,
.note-card,
.workflow-step small,
.final-process-list small,
.final-process-list em {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.hero .split-title {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .92;
}

.hero .split-title em,
.title-mobile-outline {
  font-family: "Anton", Impact, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.02em;
}

.hero .split-title em {
  white-space: nowrap;
}

.section-copy h2,
.process-card h3 {
  letter-spacing: -.015em;
}

.lead,
.section-intro,
.process-card p,
.detail-card li strong,
.placeholder-note {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

@media (max-width: 900px) {
  .title-mobile-outline {
    white-space: normal;
    max-width: 100%;
  }
}

/* V06 — Respiro entre o identificador do processo e a tag de IA */
.process-detail .section-copy > .eyebrow {
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .process-detail .section-copy > .eyebrow {
    margin-bottom: 18px;
  }
}

/* V07 — Mais respiro entre as linhas dos títulos */
.hero .split-title {
  line-height: 1;
}

.panel:not(.hero) h2 {
  line-height: 1.02;
}

.process-card h3 {
  line-height: 1.08;
}

@media (max-width: 900px) {
  .hero .split-title {
    line-height: 1.02;
  }

  .panel:not(.hero) h2 {
    line-height: 1.04;
  }

  .process-card h3 {
    line-height: 1.1;
  }
}
