/* ==========================================================================
   Onboarding Bunker Foods · page.css
   Estilos específicos desta landing, construídos sobre tokens + components
   ========================================================================== */

/* Ajuste: hero grid aceita a coluna direita como sumário, não VSL */
.hero__grid { min-height: calc(100vh - 150px); }
.hero__headline { max-width: 16ch; }
.hero__headline .accent {
  display: inline-block;
  line-height: 0.9;
}
.hero__headline .accent::after { content: ''; margin: 0; }

/* --- Sumário (substitui VSL no hero__right) ----------------------------- */
.sumario {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 360px;
  width: 100%;
}
.sumario__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: var(--s-3);
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: var(--s-4);
}
.sumario__key {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sumario__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sumario__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: sum;
}
.sumario__list li a {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: var(--s-3);
  padding: 6px 8px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-mid);
  transition: all var(--t-fast) var(--ease-out);
  letter-spacing: -0.005em;
}
.sumario__list li a span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--primary);
  letter-spacing: 0.04em;
}
.sumario__list li a:hover {
  background: rgba(242, 107, 31, 0.08);
  color: var(--text);
  transform: translateX(3px);
}
.sumario__list li.is-anchor a {
  background: rgba(242, 107, 31, 0.12);
  color: var(--text);
  font-weight: var(--fw-bold);
  border-left: 2px solid var(--primary);
  padding-left: 6px;
}
.sumario__list li.is-anchor a::after {
  content: '★';
  color: var(--primary);
  margin-left: auto;
  font-size: 11px;
}
.sumario__foot {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px dashed var(--border-strong);
  display: flex;
  gap: 6px;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-accent { color: var(--primary); }

/* --- Brand com logo (substitui text brand) ------------------------------ */
.brand--logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.brand--logo .brand__img {
  height: 38px;
  width: auto;
  display: block;
}
.brand--logo .brand__tagline {
  padding-left: var(--s-3);
  border-left: 1px solid var(--border-strong);
  line-height: 1.2;
}
.brand--logo-invert .brand__img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer__brand .brand--logo { margin-bottom: var(--s-4); }
@media (max-width: 768px) {
  .brand--logo .brand__img { height: 32px; }
  .brand--logo .brand__tagline { display: none; }
}

/* --- Case-card icon (override .case-card__value) ------------------------ */
.case-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  background: rgba(242, 107, 31, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-5);
  border: 1px dashed rgba(242, 107, 31, 0.3);
  transition: all var(--t-base) var(--ease-out);
}
.case-card:hover .case-card__icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.04);
}
.case-card__icon svg {
  width: 36px;
  height: 36px;
}

/* --- Slide 2 · Condutor ------------------------------------------------- */
.condutor {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--s-9);
  align-items: center;
  max-width: var(--max-w-narrow);
  margin-inline: auto;
}
.condutor__photo {
  position: relative;
  display: flex;
  justify-content: center;
}
.condutor__photo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-strong);
  isolation: isolate;
}
.condutor__photo-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px dashed rgba(242, 107, 31, 0.5);
  border-radius: calc(var(--r-xl) + 2px);
  z-index: 2;
  pointer-events: none;
}
.condutor__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(61, 26, 10, 0.35));
  pointer-events: none;
  z-index: 1;
}
.condutor__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.condutor__photo:hover .condutor__photo-frame img { transform: scale(1.03); }
.condutor__photo-tag {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 3;
}
.condutor__photo-tag .dot {
  color: var(--primary);
  margin-right: 6px;
  font-size: 9px;
  animation: pulse-dot 2s infinite;
}
.condutor__id {
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-4);
  border-bottom: 1px dashed var(--border-strong);
}
.condutor__id-name {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(32px, 3vw, 44px);
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 6px;
}
.condutor__id-role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(242, 107, 31, 0.1);
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px dashed rgba(242, 107, 31, 0.35);
}
.condutor__lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.3;
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
}
.condutor__lead strong { color: var(--primary); font-weight: var(--fw-bold); }
.condutor__text {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: var(--s-5);
}
.condutor__quote {
  border-left: 3px solid var(--primary);
  padding: var(--s-3) var(--s-5);
  background: var(--bg-warm);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--text);
}
.condutor__quote em { font-style: italic; }
.condutor__quote cite {
  display: block;
  margin-top: var(--s-2);
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: var(--fw-bold);
  color: var(--primary);
}

/* --- Slide 3 · Fluxo ---------------------------------------------------- */
.fluxo {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: var(--s-4);
  align-items: stretch;
  margin-bottom: var(--s-9);
}
.fluxo__step {
  background: rgba(250, 246, 240, 0.05);
  border: 1px solid rgba(250, 246, 240, 0.14);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  transition: all var(--t-base) var(--ease-out);
}
.fluxo__step:hover {
  background: rgba(242, 107, 31, 0.1);
  border-color: rgba(242, 107, 31, 0.45);
  transform: translateY(-4px);
}
.fluxo__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  margin-bottom: var(--s-3);
}
.fluxo__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  background: rgba(242, 107, 31, 0.12);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-4);
  width: fit-content;
}
.fluxo__step h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-xl);
  color: var(--text-inverse);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-2);
  line-height: 1;
}
.fluxo__step p {
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.65);
}
.fluxo__arrow {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--primary);
  font-weight: var(--fw-black);
  align-self: center;
  opacity: 0.6;
}

/* --- Slide 3 · Leitura de resultado ------------------------------------- */
.leitura {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  background: linear-gradient(135deg, rgba(242, 107, 31, 0.1), rgba(230, 46, 26, 0.05));
  border: 1px solid rgba(242, 107, 31, 0.35);
  border-left: 6px solid var(--primary);
  border-radius: var(--r-xl);
  padding: var(--s-7) var(--s-8);
}
.leitura__head { margin-bottom: var(--s-4); }
.leitura__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.leitura h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(24px, 2.2vw, 34px);
  color: var(--text-inverse);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.leitura__body {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: rgba(250, 246, 240, 0.75);
  margin-bottom: var(--s-5);
}
.leitura__body strong { color: var(--text-inverse); font-weight: var(--fw-bold); }
.leitura__punch {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: rgba(250, 246, 240, 0.85);
  letter-spacing: -0.015em;
  padding-top: var(--s-4);
  border-top: 1px dashed rgba(242, 107, 31, 0.35);
}
.leitura__punch strong { color: var(--primary); font-weight: var(--fw-black); }

/* --- Slide 4 · Alertas (ponto focal + planilha) ------------------------- */
.alerta-list {
  margin-top: var(--s-9);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: var(--s-5);
  max-width: var(--max-w-narrow);
  margin-inline: auto;
}
.alerta {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--s-7);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
}
.alerta--critico {
  border-left-width: 6px;
  background: linear-gradient(135deg, var(--bg-dark), #3a1405);
  box-shadow: 0 24px 48px -20px rgba(242, 107, 31, 0.35);
}
.alerta__head { margin-bottom: var(--s-4); }
.alerta__key {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: var(--s-3);
}
.alerta__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(22px, 2vw, 30px);
  color: var(--text-inverse);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.alerta--critico .alerta__title { font-size: clamp(26px, 2.4vw, 36px); }
.alerta__text {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: rgba(250, 246, 240, 0.78);
}
.alerta__text strong { color: var(--primary); font-weight: var(--fw-bold); }
.alerta--critico .alerta__text strong { color: var(--primary); }
.alerta__footnote {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px dashed rgba(242, 107, 31, 0.3);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 240, 0.55);
}

/* --- Slide 5 · Métricas ------------------------------------------------- */
.metricas {
  margin-top: var(--s-9);
  margin-bottom: var(--s-9);
  padding: var(--s-8);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.metricas__head { text-align: center; margin-bottom: var(--s-6); }
.metricas__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(24px, 2.2vw, 34px);
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-2);
}
.metricas__sub {
  font-size: var(--fs-base);
  color: var(--text-mid);
  max-width: 56ch;
  margin-inline: auto;
}
.metricas__row {
  grid-template-columns: repeat(8, 1fr);
  margin-bottom: var(--s-5);
}
.metricas__row .stats-row__item strong {
  font-size: clamp(22px, 2vw, 34px);
}
.metricas__row .stats-row__item {
  padding: var(--s-5) var(--s-3);
}
.metricas__ressalva {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.6;
  padding: var(--s-4);
  background: var(--bg-soft);
  border-radius: var(--r-md);
  border-left: 3px solid var(--primary);
}
.metricas__ressalva strong { color: var(--text); font-weight: var(--fw-bold); }

/* --- Slide 5 · Escopo --------------------------------------------------- */
.escopo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.escopo__col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-7);
}
.escopo__col--in { border-top: 4px solid var(--c-success); }
.escopo__col--out { border-top: 4px solid var(--primary); }
.escopo__col ul {
  list-style: none;
  margin-top: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.escopo__col li {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  padding-left: var(--s-5);
  position: relative;
  line-height: 1.45;
}
.escopo__col--in li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-success);
  font-weight: var(--fw-bold);
}
.escopo__col--out li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: var(--fw-black);
  font-size: 18px;
  line-height: 1;
}
.escopo__col--out li { color: var(--text-mid); }
.escopo__eyebrow-out { color: var(--primary); }
.escopo__eyebrow-out::before { content: '// '; }
.escopo__footnote {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px dashed var(--border-strong);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  line-height: 1.5;
}

/* --- Slide 6 · Pauta ---------------------------------------------------- */
.pauta {
  margin-top: var(--s-9);
  padding: var(--s-8);
  background: rgba(250, 246, 240, 0.04);
  border: 1px solid rgba(250, 246, 240, 0.12);
  border-radius: var(--r-xl);
}
.pauta__head {
  text-align: center;
  margin-bottom: var(--s-6);
}
.pauta__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(24px, 2vw, 32px);
  color: var(--text-inverse);
  letter-spacing: -0.03em;
  margin-top: var(--s-2);
}
.pauta__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.pauta__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  padding: var(--s-5);
  background: rgba(250, 246, 240, 0.02);
  border: 1px solid rgba(250, 246, 240, 0.08);
  border-radius: var(--r-md);
  align-items: start;
  transition: all var(--t-fast);
}
.pauta__list li:hover {
  background: rgba(242, 107, 31, 0.08);
  border-color: rgba(242, 107, 31, 0.3);
}
.pauta__num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 32px;
  color: var(--primary);
  line-height: 0.9;
  letter-spacing: -0.04em;
  min-width: 42px;
}
.pauta__list li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--text-inverse);
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.pauta__list li span {
  display: block;
  font-size: var(--fs-sm);
  color: rgba(250, 246, 240, 0.65);
  line-height: 1.45;
}

/* --- Slide 7 · Turning point -------------------------------------------- */
.turning {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding-block: clamp(96px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}
.turning__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 50% 50%, rgba(242, 107, 31, 0.18), transparent 60%);
  pointer-events: none;
}
.turning .container { position: relative; text-align: center; }
.turning__eyebrow { color: var(--primary); margin-bottom: var(--s-6); }
.turning__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-inverse);
  margin-bottom: var(--s-6);
}
.turning__sub {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: rgba(250, 246, 240, 0.7);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: var(--s-7);
}
.turning__arrow {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  color: var(--primary);
  animation: turning-bounce 2.4s var(--ease-in-out) infinite;
}
.turning__arrow svg { width: 100%; height: 100%; }
@keyframes turning-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* --- Slides 8-10 · Observações ------------------------------------------ */
.obs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.obs-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.obs-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.obs-card__num {
  position: absolute;
  top: -12px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 88px;
  line-height: 0.85;
  color: rgba(242, 107, 31, 0.12);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.obs-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-3);
}
.obs-card__title {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-xl);
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-4);
  border-bottom: 1px dashed var(--border-strong);
}
.obs-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.obs-card__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: var(--text-mid);
  align-items: start;
}
.obs-card__ok {
  color: var(--c-success);
  font-weight: var(--fw-black);
  line-height: 1.45;
}
.obs-card__op {
  color: var(--primary);
  font-weight: var(--fw-black);
  line-height: 1.45;
}
.obs-card__solution {
  margin-top: auto;
  padding: var(--s-4);
  background: var(--bg-warm);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.obs-card__solution span {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 4px;
}

/* --- Slide 11 · Timeline 30 dias ---------------------------------------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 2px;
  background:
    repeating-linear-gradient(to right, rgba(242, 107, 31, 0.5) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.timeline__col {
  position: relative;
  z-index: 1;
  background: rgba(250, 246, 240, 0.04);
  border: 1px solid rgba(250, 246, 240, 0.14);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  transition: all var(--t-base) var(--ease-out);
}
.timeline__col--mid {
  background: rgba(242, 107, 31, 0.08);
  border-color: rgba(242, 107, 31, 0.35);
}
.timeline__col:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 107, 31, 0.45);
}
.timeline__num {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: var(--s-4);
  box-shadow: 0 8px 20px -8px rgba(242, 107, 31, 0.6);
}
.timeline__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-3);
}
.timeline__col h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-xl);
  color: var(--text-inverse);
  letter-spacing: -0.025em;
  margin-bottom: var(--s-4);
  line-height: 1.05;
}
.timeline__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.timeline__col li {
  font-size: var(--fs-base);
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.5;
  padding-left: var(--s-4);
  position: relative;
}
.timeline__col li::before {
  content: '◼';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 10px;
  top: 4px;
}

/* --- Slide 12 · Maturação (★ ANCHOR) ------------------------------------ */
.maturacao {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(242, 107, 31, 0.08), transparent 55%),
    var(--bg);
  position: relative;
}
.maturacao::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}
.maturacao__grid {
  grid-template-columns: 220px 1fr;
}
.maturacao__pin {
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  max-width: 200px;
}
.maturacao__body { max-width: none; }
.maturacao__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin: var(--s-7) 0;
  position: relative;
}
.maturacao__step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}
.maturacao__step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.maturacao__step--peak {
  background: linear-gradient(135deg, var(--bg-warm), #fff);
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 20px 40px -15px rgba(242, 107, 31, 0.35);
}
.maturacao__step-num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: clamp(32px, 3vw, 44px);
  color: var(--primary);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: var(--s-2);
}
.maturacao__step-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  background: rgba(242, 107, 31, 0.12);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-4);
}
.maturacao__step p {
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--text-mid);
}
.maturacao__step p strong { color: var(--text); font-weight: var(--fw-bold); }
.maturacao__step--peak p strong { color: var(--primary); }

.maturacao__highlight {
  padding: var(--s-7) var(--s-8);
}
.maturacao__highlight-key {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: var(--fw-bold);
  margin-bottom: var(--s-4);
}
.maturacao__highlight p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: var(--fw-medium);
  color: var(--text-inverse);
  line-height: 1.45;
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}
.maturacao__highlight p:last-of-type { margin-bottom: 0; }
.maturacao__highlight p strong { color: var(--primary); font-weight: var(--fw-bold); }
.maturacao__highlight-footer {
  margin-top: var(--s-4) !important;
  padding-top: var(--s-4);
  border-top: 1px dashed rgba(242, 107, 31, 0.35);
  font-size: var(--fs-sm) !important;
  color: rgba(250, 246, 240, 0.65) !important;
}
.maturacao__highlight-footer em { font-style: italic; }

/* --- Slide 13 · Próximos passos ----------------------------------------- */
.proximos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.proximos__col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7);
}
.proximos__col--nos {
  background: var(--bg-dark);
  color: var(--text-inverse);
  border-color: rgba(242, 107, 31, 0.25);
}
.proximos__head { margin-bottom: var(--s-6); padding-bottom: var(--s-4); border-bottom: 1px dashed var(--border-strong); }
.proximos__col--nos .proximos__head { border-bottom-color: rgba(242, 107, 31, 0.25); }
.proximos__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-3);
}
.proximos__tag--cliente {
  background: rgba(242, 107, 31, 0.12);
  color: var(--primary);
  border: 1px dashed rgba(242, 107, 31, 0.45);
}
.proximos__tag--agencia {
  background: var(--primary);
  color: #fff;
}
.proximos__head h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-xl);
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.1;
}
.proximos__col--nos .proximos__head h3 { color: var(--text-inverse); }
.proximos__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.proximos__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: start;
}
.proximos__check {
  width: 28px;
  height: 28px;
  border: 2px solid var(--primary);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: var(--fw-black);
  font-size: 16px;
  flex-shrink: 0;
}
.proximos__check--done {
  background: var(--primary);
  color: #fff;
}
.proximos__list li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: -0.015em;
}
.proximos__col--nos .proximos__list li strong { color: var(--text-inverse); }
.proximos__list li span {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.45;
}
.proximos__col--nos .proximos__list li span { color: rgba(250, 246, 240, 0.6); }

/* --- Slide 14 · Encerramento (estende .cta-final) ----------------------- */
.encerramento__meta {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(242, 107, 31, 0.25);
  border: 1px solid rgba(242, 107, 31, 0.25);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.encerramento__meta-item {
  background: var(--bg-dark);
  padding: var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.encerramento__meta-key {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--primary);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.encerramento__meta-val {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--text-inverse);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.cta-final__wrap .section__eyebrow { color: var(--primary); }
.cta-final__title { margin-top: var(--s-3); }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1100px) {
  .fluxo { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .fluxo__arrow { display: none; }
  .pauta__list { grid-template-columns: 1fr; }
  .metricas__row { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .obs-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .maturacao__grid { grid-template-columns: 1fr; }
  .maturacao__pin { max-width: none; }
  .maturacao__steps { grid-template-columns: 1fr; }
  .proximos { grid-template-columns: 1fr; }
  .alerta-list { grid-template-columns: 1fr; }
  .escopo { grid-template-columns: 1fr; }
  .encerramento__meta { grid-template-columns: 1fr; }
  .condutor { grid-template-columns: 1fr; text-align: center; }
  .condutor__icon { margin: 0 auto; }
  .condutor__quote { text-align: left; }
}
@media (max-width: 768px) {
  .fluxo { grid-template-columns: 1fr; }
  .metricas__row { grid-template-columns: repeat(2, 1fr); }
  .metricas { padding: var(--s-6); }
  .hero__headline { max-width: none; }
}
@media (max-width: 640px) {
  .hero__cta-row { flex-direction: column; }
  .hero__cta-row .btn { width: 100%; }
}
