/**
 * Páginas de produto. Herda tokens e componentes de base.css.
 * Nada aqui redefine o que já existe lá — só o que as páginas novas trazem.
 */

:root {
  --gold: #c9a84c;
}

/* ── NAV nas páginas internas ── */
.nav-links a.ativo {
  color: var(--ivory);
}
.nav-voltar {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
}
.nav-voltar:hover {
  color: var(--ivory);
}

/* ── HERO de produto ── */
.ph {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 0 7vw 84px;
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
}
.ph-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
  padding-top: 140px;
}
.ph-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 22px;
}
.ph-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.ph-rule {
  width: 48px;
  height: 1px;
  background: var(--ivory);
  opacity: 0.16;
  margin: 28px 0;
}
.ph-sub {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ash);
  max-width: 540px;
}
.ph-sub strong {
  color: var(--ivory);
  font-weight: 400;
}

/* ── Selo de status (sem vagas / vagas abertas) ── */
.selo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(85, 85, 85, 0.45);
  padding: 8px 14px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 24px;
}
.selo::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--smoke);
}
.selo.fechado {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
}
.selo.fechado::before {
  background: var(--gold);
}
.selo.aberto {
  border-color: rgba(120, 170, 120, 0.4);
  color: #8fbb8f;
}
.selo.aberto::before {
  background: #8fbb8f;
}

/* ── Blocos de texto ── */
.bloco {
  padding: 96px 7vw;
}
.bloco.escuro {
  background: var(--graphite);
}
.bloco-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 40px;
}
.bloco-head {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ivory);
  max-width: 700px;
  margin-bottom: 26px;
}
.bloco-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ash);
  max-width: 620px;
}
.bloco-body + .bloco-body {
  margin-top: 18px;
}
.bloco-body strong {
  color: var(--ivory);
  font-weight: 400;
}

/* ── Lista "pra quem é / não é" ── */
.duas-colunas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #222;
  margin-top: 48px;
}
.coluna {
  background: var(--graphite);
  padding: 40px 36px;
}
.coluna h3 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 24px;
}
.coluna.nao h3 {
  color: var(--smoke);
}
.lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.lista li {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ash);
  padding-left: 20px;
  position: relative;
}
.lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.coluna.nao .lista li {
  color: var(--smoke);
}
.coluna.nao .lista li::before {
  background: var(--smoke);
  opacity: 0.5;
}

/* ── Etapas numeradas ── */
.etapas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #222;
  margin-top: 48px;
}
.etapa {
  background: var(--black);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bloco.escuro .etapa {
  background: var(--graphite);
}
.etapa-n {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: #262626;
}
.etapa-t {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
}
.etapa-b {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--smoke);
}

/* ── Vídeo / cortes de sessão ── */
.videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.video-card {
  position: relative;
  background: #101010;
  border: 1px solid rgba(244, 242, 238, 0.07);
}
.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-legenda {
  padding: 14px 16px 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--smoke);
}
.video-nota {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--smoke);
  margin-top: 22px;
}

/* ── Oferta / preço ── */
.oferta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
}
.plano {
  background: var(--graphite);
  border: 1px solid rgba(244, 242, 238, 0.08);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}
.plano.destaque {
  border-color: rgba(201, 168, 76, 0.45);
}
.plano-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.plano-nome {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  line-height: 1.05;
  color: var(--ivory);
}
.plano-desc {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--ash);
  margin-top: 14px;
}
.plano-preco {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  color: var(--ivory);
  margin-top: 26px;
}
.plano-preco small {
  display: block;
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 10px;
}
.plano-cta {
  display: block;
  text-align: center;
  margin-top: 26px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: var(--ivory);
  /* 16px deixa o alvo em 45px de altura: acima do mínimo de 44px do iOS. */
  padding: 16px 24px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.plano-cta:hover {
  opacity: 0.85;
}
.plano-cta.contorno {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(244, 242, 238, 0.28);
}
.plano-cta.contorno:hover {
  background: rgba(244, 242, 238, 0.06);
  opacity: 1;
}
.plano-cta.indisponivel {
  background: transparent;
  color: var(--smoke);
  border: 1px solid rgba(85, 85, 85, 0.4);
  pointer-events: none;
}

/* ── Depoimentos ── */
.depoimentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
}

/* Bloco de prova da home: um corte de sessão ao lado de dois depoimentos.
   O vídeo é vertical, então ocupa uma coluna estreita e os textos ficam nas
   duas restantes. */
.prova-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) 1fr 1fr;
  gap: 12px;
  margin-top: 44px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .prova-grid {
    grid-template-columns: 1fr;
  }
}
.depo {
  background: var(--graphite);
  border: 1px solid rgba(244, 242, 238, 0.07);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 210px;
}
.depo-aspas {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 44px;
  line-height: 0.6;
  color: #2a2a2a;
}
.depo-txt {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.85;
  color: var(--ash);
  flex: 1;
}
.depo-nome {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
}
.depo.vazio .depo-txt {
  color: #3a3a3a;
  font-style: italic;
}

/* ── FAQ ── */
.faq {
  margin-top: 44px;
  max-width: 780px;
}
.faq-item {
  border-bottom: 1px solid #1e1e1e;
  padding: 24px 0;
}
.faq-q {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 12px;
}
.faq-a {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.9;
  color: var(--ash);
}

/* ── Cartões de produto na home ── */
.produtos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 44px;
}
.produto {
  background: var(--graphite);
  border: 1px solid rgba(244, 242, 238, 0.08);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  transition: border-color 0.2s;
  min-height: 220px;
}
.produto:hover {
  border-color: rgba(244, 242, 238, 0.24);
}
.produto-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
}
.produto-nome {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  line-height: 1.02;
  color: var(--ivory);
}
.produto-desc {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ash);
  flex: 1;
}
.produto-pe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.produto-preco {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.produto-preco.mudo {
  color: var(--smoke);
}
.produto-seta {
  font-size: 16px;
  color: var(--smoke);
}

/* ── WhatsApp flutuante ── */
.wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ivory);
  color: var(--black);
  text-decoration: none;
  padding: 14px 20px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
}
.wa:hover {
  opacity: 0.88;
}
body.com-consent .wa {
  bottom: 128px;
}

/* ── Navegação no rodapé ──
   O menu do topo some abaixo de 900px (regra do design original). Sem isto,
   quem chega no mobile por uma página de produto não tem como ir pras outras. */
.rodape-nav {
  background: var(--graphite);
  border-top: 1px solid #1e1e1e;
  padding: 34px 7vw 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.rodape-nav a {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
}
.rodape-nav a:hover {
  color: var(--ivory);
}
.wa svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Banner de consentimento ── */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(13, 13, 13, 0.97);
  border-top: 1px solid #222;
  padding: 18px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.consent-txt {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ash);
  max-width: 640px;
  margin: 0;
}
.consent-txt a {
  color: var(--ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-acoes {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.consent-sim,
.consent-nao {
  font-family: inherit;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  border: 1px solid rgba(244, 242, 238, 0.28);
  background: transparent;
  color: var(--ash);
}
.consent-sim {
  background: var(--ivory);
  color: var(--black);
  border-color: var(--ivory);
}
.consent-nao:hover {
  color: var(--ivory);
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .ph {
    min-height: auto;
    padding: 0 24px 64px;
  }
  .ph-inner {
    padding-top: 118px;
  }
  .bloco {
    padding: 68px 24px;
  }
  .duas-colunas,
  .etapas,
  .oferta,
  .produtos,
  .depoimentos,
  .videos {
    grid-template-columns: 1fr;
  }
  .coluna,
  .etapa,
  .plano {
    padding: 32px 24px;
  }
  .wa {
    right: 16px;
    bottom: 16px;
    padding: 13px 16px;
  }
  .consent {
    padding: 16px 24px;
  }
}
@media (max-width: 620px) {
  .videos {
    grid-template-columns: 1fr 1fr;
  }
  .consent-acoes {
    width: 100%;
  }
  .consent-sim,
  .consent-nao {
    flex: 1;
  }
}

/* ── Chat ── */
.chat-bolha {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 85;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  background: var(--ivory);
  color: var(--black);
  padding: 14px 20px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
}
.chat-bolha:hover {
  opacity: 0.88;
}
.chat-bolha svg {
  width: 15px;
  height: 15px;
}
body.com-consent .chat-bolha {
  bottom: 128px;
}

/* Com o chat no ar, o WhatsApp sai do canto e vira opção dentro do painel —
   dois botões flutuantes brigando pelo mesmo canto é ruído. */
.chat-bolha ~ .wa,
.wa.escondido {
  display: none;
}

.chat-painel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  width: 370px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 48px);
  background: var(--graphite);
  border: 1px solid rgba(244, 242, 238, 0.12);
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.chat-painel[hidden] {
  display: none;
}
.chat-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #242424;
}
.chat-titulo {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
}
.chat-sub {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--smoke);
  margin-top: 4px;
}
.chat-fechar {
  background: 0;
  border: 0;
  color: var(--smoke);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.chat-fechar:hover {
  color: var(--ivory);
}
.chat-corpo {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  font-family: "Barlow", sans-serif;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  padding: 12px 14px;
  max-width: 88%;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.chat-msg--bot {
  background: rgba(244, 242, 238, 0.06);
  color: var(--ivory);
  align-self: flex-start;
}
.chat-msg--eu {
  background: var(--ivory);
  color: var(--black);
  align-self: flex-end;
}
.chat-msg--pensando {
  color: var(--smoke);
  letter-spacing: 0.3em;
}
.chat-form {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid #242424;
}
.chat-campo {
  flex: 1;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 242, 238, 0.14);
  color: var(--ivory);
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  outline: 0;
}
.chat-campo:focus {
  border-color: var(--gold);
}
.chat-campo:disabled {
  opacity: 0.5;
}
.chat-enviar {
  border: 0;
  cursor: pointer;
  background: var(--ivory);
  color: var(--black);
  font-size: 16px;
  padding: 0 18px;
}
.chat-enviar:disabled {
  opacity: 0.45;
  cursor: default;
}
.chat-wa {
  display: block;
  text-align: center;
  padding: 12px;
  border-top: 1px solid #242424;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
}
.chat-wa:hover {
  color: var(--ivory);
}

@media (max-width: 620px) {
  .chat-painel {
    right: 0;
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border: 0;
  }
  .chat-bolha {
    right: 16px;
    bottom: 16px;
    padding: 13px 16px;
  }
  /* No celular o painel é tela cheia. Sem travar o scroll, a página corre por
     baixo dele e a pessoa perde o lugar onde estava. */
  body.chat-aberto {
    overflow: hidden;
  }
}

/* O banner de consentimento ocupa o rodapé da tela: o painel do chat sobe
   junto com a bolha, senão o campo de escrever e o link do WhatsApp ficam
   embaixo dele. */
body.com-consent .chat-painel {
  bottom: 112px;
  max-height: calc(100vh - 136px);
}
@media (max-width: 620px) {
  body.com-consent .chat-painel {
    bottom: 0;
    height: calc(100dvh - 104px);
    max-height: calc(100dvh - 104px);
  }
}

/* ── CTA do NIVA ──
   O NIVA tem marca própria (verde #2FA968). O bloco assume essa identidade de
   propósito: quem clica está saindo daqui pra lá, e o visual antecipa isso. */
.niva-cta {
  margin-top: 44px;
  background: linear-gradient(135deg, #17301f 0%, #0f1f14 100%);
  border: 1px solid rgba(47, 169, 104, 0.35);
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.niva-cta-txt {
  flex: 1;
  min-width: 260px;
}
.niva-cta img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.niva-cta h3 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 30px;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 14px;
}
.niva-cta p {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.85;
  color: #b9c9bd;
  max-width: 460px;
}
.niva-botao {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #2fa968;
  color: #0d0d0d;
  text-decoration: none;
  padding: 18px 30px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.niva-botao:hover {
  background: #7fcba0;
}
.niva-selo-loja {
  display: block;
  margin-top: 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6d8a76;
  text-align: center;
}
@media (max-width: 900px) {
  .niva-cta {
    padding: 34px 26px;
    flex-direction: column;
    align-items: flex-start;
  }
  .niva-botao {
    width: 100%;
    justify-content: center;
  }
}

/* Caminho alternativo abaixo do CTA principal: presente, sem competir com ele. */
.cta-secundario {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 242, 238, 0.18);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s;
}
.cta-secundario:hover {
  color: var(--ivory);
}
/* --smoke (#555) e token de fundo CLARO: sobre o grafite escuro da uma
   razao de 2,3:1, abaixo do minimo de 4,5:1 do WCAG AA. --ash da 7,5:1. */
.bloco-nota {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--ash);
  margin-top: 18px;
  max-width: 60ch;
}

/* ---------------------------------------------------------------------------
   Formulário de preparação (/preparacao)
   São 80 campos em 11 blocos, então a página mostra um bloco por vez: a barra
   de progresso e o "parte N de M" existem para a pessoa saber que tem fim.
   --------------------------------------------------------------------------- */

.pa-progresso {
  height: 3px;
  background: rgba(244, 242, 238, 0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.pa-progresso-barra {
  height: 100%;
  width: 0;
  background: var(--dourado, #a8894f);
  transition: width 0.3s ease;
}
.pa-passo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash, #aaa);
  margin-bottom: 26px;
}

.pa-form {
  max-width: 680px;
}
.pa-bloco {
  border: 0;
  padding: 0;
  margin: 0 0 8px;
}
.pa-legend {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 10px;
  padding: 0;
}
.pa-legend .pa-num {
  font-size: 15px;
  color: var(--dourado, #a8894f);
  font-style: italic;
}
.pa-desc {
  color: var(--ash, #aaa);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 60ch;
}

.pa-campo {
  margin-bottom: 24px;
}
.pa-label {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 7px;
}
.pa-opt {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash, #aaa);
  margin-left: 8px;
  white-space: nowrap;
}
.pa-ajuda {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ash, #aaa);
  margin: 0 0 9px;
}

.pa-input {
  width: 100%;
  background: rgba(244, 242, 238, 0.04);
  border: 1px solid rgba(244, 242, 238, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: inherit;
  font-family: inherit;
  font-size: 15.5px;
  line-height: 1.5;
}
.pa-input:focus {
  outline: 2px solid var(--dourado, #a8894f);
  outline-offset: 1px;
  border-color: transparent;
}
textarea.pa-input {
  resize: vertical;
  min-height: 88px;
}
select.pa-input {
  appearance: none;
}

.pa-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pa-radio {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(244, 242, 238, 0.16);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 15px;
}
.pa-radio:has(input:checked) {
  border-color: var(--dourado, #a8894f);
  background: rgba(168, 137, 79, 0.1);
}

.pa-consent {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: rgba(244, 242, 238, 0.04);
  border: 1px solid rgba(244, 242, 238, 0.16);
  border-left: 3px solid var(--dourado, #a8894f);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin-bottom: 14px;
  cursor: pointer;
}
.pa-consent input {
  margin-top: 4px;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  accent-color: var(--dourado, #a8894f);
}
.pa-consent span {
  font-size: 14.5px;
  line-height: 1.6;
}

/* campo que faltou: borda de aviso, sem depender só de cor */
.pa-falta .pa-input,
.pa-falta .pa-radios {
  border-color: #c9655c;
}
.pa-falta .pa-label::after {
  content: " (falta responder)";
  color: #c9655c;
  font-size: 13px;
}

.pa-erro {
  color: #c9655c;
  font-size: 14.5px;
  margin: 16px 0 0;
}

.pa-nav {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.pa-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: var(--ivory, #f4f2ee);
  color: var(--graphite, #1a1a1a);
}
.pa-btn:disabled {
  opacity: 0.55;
  cursor: default;
}
.pa-btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(244, 242, 238, 0.22);
}

.pa-sucesso {
  max-width: 560px;
}

@media (max-width: 640px) {
  .pa-legend {
    font-size: 25px;
  }
  .pa-nav {
    flex-direction: column-reverse;
  }
  .pa-btn {
    width: 100%;
  }
}
