/* ============================================================================
   Duo Prime · patrimonial.css
   Página /patrimonial/ — identidade própria: institucional, coordenadora,
   silenciosa, autoritativa. Mais sóbria que Saúde, Seguros e Imóveis.

   Direção visual:
   - Mais respiro entre blocos
   - Listas editoriais (hairlines) em vez de cards
   - Motion mais lento e contido
   - Ornamento contido — sem clip-path wipes, sem sweeps horizontais
   - Acento dourado usado com economia
   ========================================================================== */

/* ============================================================================
   MOTION — fade + deslocamento mínimo, easing longo, sem "salto"
   ========================================================================== */

@keyframes ptFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ptFadeOnly {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ptDraw  { to { stroke-dashoffset: 0; } }
@keyframes ptScale { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* reveal padrão — translação curta (8px), easing longo */
.pt-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .85s cubic-bezier(.22,.61,.36,1),
    transform .85s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.pt-reveal.is-visible        { opacity: 1; transform: none; }
.pt-reveal--d1.is-visible    { transition-delay: .10s; }
.pt-reveal--d2.is-visible    { transition-delay: .20s; }
.pt-reveal--d3.is-visible    { transition-delay: .30s; }
.pt-reveal--d4.is-visible    { transition-delay: .40s; }
.pt-reveal--d5.is-visible    { transition-delay: .50s; }

@media (prefers-reduced-motion: reduce) {
  .pt-reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; }
}

/* ============================================================================
   SHELL + tipografia editorial
   ========================================================================== */
.pt-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.pt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.pt-eyebrow__idx {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: color-mix(in srgb, var(--accent) 70%, transparent);
  font-variant-numeric: tabular-nums;
}
.pt-eyebrow__label {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.pt-head { max-width: 780px; margin-bottom: 72px; }
.pt-head .pt-eyebrow { margin-bottom: 28px; }
.pt-head__title {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.024em;
  text-wrap: balance;
}
.pt-head__lead {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
  margin-top: 22px;
}

/* ============================================================================
   BLOCO 1 — HERO
   Maximizar silêncio visual: padding alto, headline forte, sub curto,
   grafismo institucional de coordenação à direita.
   ========================================================================== */
.pt-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.pt-hero__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 8vw;
  align-items: center;
  padding-top: calc(var(--nav-h) + 10vh);
  padding-bottom: 10vh;
}

.pt-hero__left { display: flex; flex-direction: column; align-items: flex-start; }

.pt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  animation: ptFade .9s .25s cubic-bezier(.22,.61,.36,1) both;
}
.pt-hero__eyebrow .pt-eyebrow__label {
  font-size: 12px;
  letter-spacing: 0.24em;
}

.pt-hero__headline {
  font-size: clamp(30px, 3.8vw, 60px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: 36px;
  max-width: 18ch;
  animation: ptFade 1s .55s cubic-bezier(.22,.61,.36,1) both;
}
.pt-hero__headline em { font-style: normal; color: var(--accent); }

.pt-hero__sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 52px;
  animation: ptFade .9s .85s cubic-bezier(.22,.61,.36,1) both;
}

.pt-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  animation: ptFade .9s 1.05s cubic-bezier(.22,.61,.36,1) both;
}
.pt-hero .cta-secondary {
  border: none;
  padding: 0 0 3px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--muted) 85%, transparent);
  background: none;
  border-bottom: 1px solid transparent;
  gap: 8px;
  transition: color .3s ease, border-bottom-color .3s ease;
}
.pt-hero .cta-secondary:hover {
  color: var(--text);
  border-bottom-color: var(--rule-accent);
}

/* SVG lado direito — diagrama de coordenação */
.pt-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ptFadeOnly 1.1s .35s ease both;
}
.pt-hero__svg {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 480 / 560;
  display: block;
}

/* Animação SVG (sequência longa e sutil) */
.pt-draw * { stroke-dasharray: 1; stroke-dashoffset: 1; }
.pt-draw--1 * { animation: ptDraw 1.2s .60s cubic-bezier(.22,.61,.36,1) both; }
.pt-draw--2 * { animation: ptDraw 1.2s 1.00s cubic-bezier(.22,.61,.36,1) both; }
.pt-draw--3 * { animation: ptDraw 1.2s 1.40s cubic-bezier(.22,.61,.36,1) both; }
.pt-nodes    { opacity: 0; animation: ptFadeOnly .9s 1.85s ease both; }
.pt-labels   { opacity: 0; animation: ptFadeOnly .9s 2.25s ease both; }
.pt-core     { opacity: 0; animation: ptFadeOnly .9s 2.10s ease both; }

/* ============================================================================
   BLOCO 2 — SINTOMAS FREQUENTES
   Lista editorial em vez de cards — hairlines, sem fundo, mais institucional.
   ========================================================================== */
.pt-sintomas { padding-block: 128px; }

.pt-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.pt-list__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 36px 0 38px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding-left .35s cubic-bezier(.22,.61,.36,1);
}
.pt-list__item:hover { padding-left: 12px; }

.pt-list__item::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 56px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.pt-list__item.is-visible::before { transform: scaleX(1); }

.pt-list__idx {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  padding-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.pt-list__text {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.014em;
  color: var(--text);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ============================================================================
   BLOCO 3 — COMO ATUAMOS
   3 colunas com hairline horizontal — sem dots ornamentais, mais austero
   ========================================================================== */
.pt-metodo { padding-block: 128px; }

.pt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.pt-step {
  padding: 56px 44px 8px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.pt-step:first-child { padding-left: 0; }
.pt-step:not(:first-child) { padding-left: 44px; }
.pt-step:last-child { border-right: none; padding-right: 0; }

.pt-step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 56px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(.22,.61,.36,1);
}
.pt-step.is-visible::before { transform: scaleX(1); }

.pt-step__num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pt-step__num::after {
  content: '';
  width: 24px;
  height: 1px;
  background: color-mix(in srgb, var(--accent) 60%, transparent);
}
.pt-step__title {
  font-size: clamp(20px, 1.85vw, 26px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-weight: 600;
}
.pt-step__text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 44ch;
}

/* ============================================================================
   BLOCO 4 — ONDE ISSO IMPACTA
   5 eixos como tabela editorial — index | label | descrição
   ========================================================================== */
.pt-impacto { padding-block: 128px; }

.pt-eixos {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.pt-eixo {
  display: grid;
  grid-template-columns: 80px 280px 1fr;
  gap: 28px;
  padding: 32px 0 34px;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  position: relative;
  transition: background-color .35s ease;
}
.pt-eixo:hover {
  background: color-mix(in srgb, var(--bg) 96%, var(--accent));
}
.pt-eixo__idx {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.pt-eixo__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--muted) 90%, transparent);
}
.pt-eixo__text {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--text);
  max-width: 48ch;
}

/* ============================================================================
   BLOCO 5 — O QUE ESTÁ EM JOGO (inversion)
   Grade 2x2 austera, sem fundo de card — apenas linhas divisórias internas
   ========================================================================== */
.pt-jogo { padding-block: 136px; }
.pt-jogo .pt-head { max-width: 720px; }
.pt-jogo .pt-head__title {
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.026em;
}

.pt-pontos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.pt-pontos::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--rule);
}
.pt-pontos::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: var(--rule);
}
.pt-ponto {
  padding: 48px 56px 48px 0;
  position: relative;
}
.pt-ponto:nth-child(2),
.pt-ponto:nth-child(4) { padding-left: 56px; padding-right: 0; }
.pt-ponto:nth-child(3),
.pt-ponto:nth-child(4) { padding-top: 56px; padding-bottom: 0; }

.pt-ponto__idx {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pt-ponto__idx::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.pt-ponto__text {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: -0.018em;
  color: var(--text);
  max-width: 32ch;
  text-wrap: balance;
}

/* ============================================================================
   BLOCO 6 — DIFERENCIAIS
   Header sticky + lista numerada (manifesto), mais respirada que Imóveis
   ========================================================================== */
.pt-dif { padding-block: 128px; }

.pt-dif__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  align-items: start;
}
.pt-dif__header { position: sticky; top: calc(var(--nav-h) + 32px); }
.pt-dif__header .pt-eyebrow { margin-bottom: 24px; }
.pt-dif__header .pt-head__title {
  font-size: clamp(26px, 2.6vw, 38px);
  max-width: 340px;
}
.pt-dif__lead {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 20px;
  max-width: 38ch;
}

.pt-principles {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.pt-principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 32px 8px 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  position: relative;
  transition: padding-left .35s cubic-bezier(.22,.61,.36,1);
}
.pt-principle:hover { padding-left: 16px; }

.pt-principle::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.pt-principle.is-visible::before { transform: scaleX(1); }

.pt-principle__idx {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  padding-top: 5px;
}
.pt-principle__text {
  font-family: var(--serif);
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.014em;
  color: var(--text);
  transition: color .3s ease;
}
.pt-principle:hover .pt-principle__text { color: var(--accent); }

/* ============================================================================
   BLOCO 7 — ECOSSISTEMA DUO PRIME
   Ponte entre a visão patrimonial e as frentes conectadas (Saúde, Seguros, Imóveis).
   Cards sóbrios — superfície levemente elevada, hairline de acento, leitura premium.
   Padding ligeiramente menor que as outras seções para sinalizar bridge.
   ========================================================================== */
.pt-eco { padding-block: 112px; }
.pt-eco__head { max-width: 720px; margin-bottom: 64px; }

.pt-eco__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pt-eco__card {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 36px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition:
    background-color .35s ease,
    border-color .35s ease,
    transform .35s cubic-bezier(.22,.61,.36,1);
}
.pt-eco__card:hover {
  background: color-mix(in srgb, var(--surface) 88%, var(--accent));
  border-color: color-mix(in srgb, var(--rule) 50%, var(--accent));
  transform: translateY(-2px);
}

/* hairline dourada no topo, desenha no reveal */
.pt-eco__card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(.22,.61,.36,1);
}
.pt-eco__card.is-visible::before { transform: scaleX(1); }

.pt-eco__area {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pt-eco__area::after {
  content: '';
  width: 20px;
  height: 1px;
  background: color-mix(in srgb, var(--accent) 60%, transparent);
}
.pt-eco__title {
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.014em;
  color: var(--text);
  margin-bottom: 14px;
  text-wrap: balance;
}
.pt-eco__text {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 38ch;
  flex-grow: 1;
}
.pt-eco__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap .3s cubic-bezier(.22,.61,.36,1), border-bottom-color .3s ease;
}
.pt-eco__card:hover .pt-eco__link {
  gap: 16px;
  border-bottom-color: var(--rule-accent);
}
.pt-eco__link .arrow { transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.pt-eco__card:hover .pt-eco__link .arrow { transform: translateX(3px); }

/* fechamento da seção — síntese institucional */
.pt-eco__close {
  margin: 56px auto 0;
  max-width: 56ch;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.008em;
  color: color-mix(in srgb, var(--muted) 85%, var(--text));
  text-wrap: balance;
}

/* ============================================================================
   BLOCO 8 — CTA FINAL (inversion)
   Centrado, dois CTAs lado a lado, máximo respiro
   ========================================================================== */
.pt-cta { padding-block: 144px; }
.pt-cta__inner {
  display: flex;
  justify-content: center;
}
.pt-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
}
.pt-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  justify-content: center;
}
.pt-cta__headline {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.024em;
  text-wrap: balance;
  margin-bottom: 26px;
}
.pt-cta__support {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 48px;
}
.pt-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: center;
}
.pt-cta__btn { font-size: 16px; padding: 20px 40px; }
.pt-cta__secondary {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--muted) 90%, transparent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s ease, border-bottom-color .3s ease;
}
.pt-cta__secondary:hover {
  color: var(--text);
  border-bottom-color: var(--rule-accent);
}

/* ============================================================================
   RESPONSIVIDADE
   ========================================================================== */

/* --- Tablet (≤960px) --- */
@media (max-width: 960px) {
  .pt-hero__inner {
    grid-template-columns: 1fr;
    gap: 6vh;
    padding-top: calc(var(--nav-h) + 7vh);
    padding-bottom: 8vh;
  }
  .pt-hero__right { max-height: 38vh; justify-content: flex-start; }
  .pt-hero__svg { max-width: 320px; }
  .pt-hero__headline { max-width: 22ch; }

  .pt-sintomas, .pt-metodo, .pt-impacto, .pt-dif { padding-block: 96px; }
  .pt-jogo { padding-block: 104px; }
  .pt-cta { padding-block: 112px; }

  .pt-head { margin-bottom: 56px; }

  .pt-steps { grid-template-columns: 1fr; }
  .pt-step {
    padding: 44px 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--rule);
  }
  .pt-step:last-child { border-bottom: none; }

  .pt-eixo {
    grid-template-columns: 60px 1fr;
    gap: 12px 22px;
  }
  .pt-eixo__label { grid-column: 2; }
  .pt-eixo__text { grid-column: 2; }

  .pt-pontos { grid-template-columns: 1fr; }
  .pt-pontos::before { display: none; }
  .pt-pontos::after { display: none; }
  .pt-ponto {
    padding: 36px 0 !important;
    border-bottom: 1px solid var(--rule);
  }
  .pt-ponto:last-child { border-bottom: none; }

  .pt-dif__grid { grid-template-columns: 1fr; gap: 48px; }
  .pt-dif__header { position: static; }
  .pt-dif__header .pt-head__title { max-width: 100%; }

  .pt-eco { padding-block: 88px; }
  .pt-eco__head { margin-bottom: 48px; }
  .pt-eco__grid { grid-template-columns: 1fr; gap: 16px; }
  .pt-eco__card { padding: 32px 28px 30px; }
  .pt-eco__card:hover { transform: none; }
  .pt-eco__close { margin-top: 44px; }
}

/* --- Mobile largo (≤640px) --- */
@media (max-width: 640px) {
  .pt-list__item {
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 30px 0 32px;
  }
  .pt-list__item:hover { padding-left: 0; }

  .pt-principle:hover { padding-left: 0; }
}

/* --- Mobile (≤540px) --- */
@media (max-width: 540px) {
  .pt-hero__right { display: none; }
  .pt-hero__headline {
    font-size: clamp(26px, 7.5vw, 36px);
    margin-bottom: 28px;
    max-width: 100%;
  }
  .pt-hero__eyebrow { margin-bottom: 32px; }
  .pt-hero__sub { margin-bottom: 40px; }

  .pt-hero__ctas .cta-primary { width: 100%; justify-content: center; }
  .pt-hero__ctas .cta-primary::after { display: none; }

  .pt-sintomas, .pt-metodo, .pt-impacto, .pt-dif { padding-block: 76px; }
  .pt-jogo { padding-block: 84px; }
  .pt-eco { padding-block: 72px; }
  .pt-eco__close { margin-top: 36px; font-size: 14px; }
  .pt-cta { padding-block: 96px; }
  .pt-head { margin-bottom: 44px; }

  /* Sintomas: idx em linha separada acima do texto */
  .pt-list__item { grid-template-columns: 1fr; gap: 10px; }
  .pt-list__idx { padding-top: 0; }

  /* Eixos: idx + label inline, texto abaixo */
  .pt-eixo { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .pt-eixo__label { grid-column: 1; }
  .pt-eixo__text { grid-column: 1; }

  /* Pontos: padding lateral menor */
  .pt-ponto__idx { margin-bottom: 16px; }

  /* CTA: botão full-width */
  .pt-cta__btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 15px; }
  .pt-cta__btn::after { display: none; }
  .pt-cta__actions { flex-direction: column; gap: 22px; width: 100%; }

  /* Principle: padding ajustado */
  .pt-principle {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 26px 0;
  }
  .pt-principle__idx { font-size: 10px; padding-top: 3px; }
}

/* --- Mobile estreito (≤420px) --- */
@media (max-width: 420px) {
  .pt-hero__inner { gap: 5vh; }
  .pt-head__title { font-size: clamp(24px, 7vw, 32px); }
  .pt-jogo .pt-head__title { font-size: clamp(26px, 7.5vw, 34px); }
  .pt-list__text { font-size: 17px; }
  .pt-step__title { font-size: 19px; }
}
