/* ============================================================
   MOTOR de Ferramentas Clínicas i5S — estilos compartilhados v2
   Paleta/typo: docs/brand.md (teal + Newsreader/Inter) — os MESMOS
   tokens do site vivo. Uma folha pra toda a família; o cartucho
   NÃO traz CSS próprio.
   ============================================================ */

:root {
  /* brand.md */
  --brand-teal:       #2F6F6A;
  --brand-teal-dark:  #1f5a56;
  --brand-teal-light: #60A0A0;
  --brand-blue:       #6090B0;
  --brand-green:      #407040;
  --brand-orange:     #C07A3A;
  --text-main:        #333333;
  --text-secondary:   #666666;
  --text-muted:       #999999;
  --bg-page:          #F8F9FA;
  --bg-card:          #FFFFFF;
  --bg-soft:          #EEF4F3;
  --border-subtle:    rgba(0, 0, 0, 0.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(47, 111, 106, 0.12);
  --shadow-lg: 0 10px 40px rgba(47, 111, 106, 0.18);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px; /* low-tech kit: base maior */
}
body.modal-aberto { overflow: hidden; }

.wrap { max-width: 780px; margin: 0 auto; padding: 28px 20px 72px; }

/* ---------- animações (respeitando reduced-motion) ---------- */
@keyframes subir { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.anima { animation: subir .5s ease both; }
.anima-1 { animation-delay: .05s; } .anima-2 { animation-delay: .15s; }
.anima-3 { animation-delay: .25s; } .anima-4 { animation-delay: .35s; }
.anima-5 { animation-delay: .45s; } .anima-6 { animation-delay: .55s; }
@media (prefers-reduced-motion: reduce) {
  .anima, .anima-1, .anima-2, .anima-3, .anima-4, .anima-5, .anima-6 { animation: none; }
}

/* ---------- topo / rodapé ---------- */
.topo { text-align: center; margin-bottom: 24px; }
.topo .logo { height: 52px; margin-bottom: 8px; }
.topo .marca { font-weight: 700; color: var(--brand-teal); letter-spacing: 1.5px; font-size: .82rem; }
.topo h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 5vw, 2.3rem); line-height: 1.2;
  margin: 10px 0 6px; color: var(--brand-teal-dark);
}
.topo .sub { color: var(--text-secondary); font-size: .97rem; max-width: 56ch; margin: 0 auto; }
.rodape { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: 32px; line-height: 1.7; }

/* ---------- cards / intro ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 26px; margin-bottom: 18px;
}
.intro-texto p { margin: 0 0 13px; }
.intro-aviso {
  background: var(--bg-soft); border: 1px solid rgba(47,111,106,.18);
  border-radius: var(--radius-md);
  padding: 13px 15px; font-size: .93rem; color: var(--brand-teal-dark);
}

/* ---------- botões ---------- */
.btn-primario, .btn-secundario {
  display: inline-block; border: none; cursor: pointer; font-size: 1rem;
  font-family: var(--font-body); font-weight: 600; text-decoration: none;
  padding: 13px 26px; border-radius: 999px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-primario { background: var(--brand-teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primario:not(:disabled):hover { background: var(--brand-teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primario:disabled { background: #b9c9c6; cursor: not-allowed; }
.btn-secundario { background: transparent; color: var(--brand-teal); border: 1.5px solid var(--brand-teal-light); }
.btn-secundario:hover { background: var(--bg-soft); }

/* ---------- progresso / blocos ---------- */
.bloco-header { margin-bottom: 16px; }
.bloco-titulo { font-weight: 700; color: var(--brand-teal); font-size: .85rem; letter-spacing: .6px; text-transform: uppercase; }
.bloco-subtitulo { font-family: var(--font-display); color: var(--text-main); font-size: 1.25rem; margin: 4px 0 12px; }
.progresso-barra { height: 7px; background: #E5EAEA; border-radius: 999px; overflow: hidden; }
.progresso-fill { height: 100%; background: linear-gradient(90deg, var(--brand-teal-light), var(--brand-teal)); transition: width .3s ease; }
.instrucao-quiz {
  background: var(--bg-soft); border-radius: var(--radius-md); padding: 13px 15px;
  font-size: .93rem; margin: 12px 0; color: var(--brand-teal-dark);
}

/* ---------- itens ---------- */
.itens-lista { list-style: none; margin: 0; padding: 0; }
.item-quiz { padding: 20px 0; border-bottom: 1px solid var(--border-subtle); }
.item-quiz:last-child { border-bottom: none; }
.item-cabeca { display: flex; gap: 12px; align-items: baseline; margin-bottom: 12px; }
.item-numero {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-soft); border: 1px solid rgba(47,111,106,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: var(--brand-teal); font-weight: 600;
}
.item-quiz.item-respondido .item-numero {
  background: var(--brand-teal); border-color: var(--brand-teal); color: #fff;
}
.item-texto { font-weight: 500; font-size: 1.02rem; }

.item-opcoes { display: grid; gap: 8px; }
.item-opcoes.opcoes-4 { grid-template-columns: repeat(4, 1fr); }
.item-opcoes.opcoes-2 { grid-template-columns: repeat(2, 1fr); }
.item-opcoes.opcoes-coluna { grid-template-columns: 1fr; }
.opt-btn {
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  border: 1.5px solid var(--border-subtle); border-radius: var(--radius-md);
  background: var(--bg-card); cursor: pointer; padding: 11px 8px; text-align: center;
  font-family: var(--font-body); font-size: .8rem; color: var(--text-main);
  transition: border-color .12s, background .12s, transform .12s;
}
.opt-btn:hover { border-color: var(--brand-teal-light); transform: translateY(-1px); }
.opt-btn .opt-num { font-weight: 800; font-size: 1.1rem; color: var(--brand-teal); }
.opt-btn .opt-label { line-height: 1.35; color: var(--text-secondary); }
.opt-btn.selecionada { background: var(--brand-teal); border-color: var(--brand-teal); box-shadow: var(--shadow-sm); }
.opt-btn.selecionada .opt-num, .opt-btn.selecionada .opt-label { color: #fff; }

.acoes-bloco, .acoes-resultado {
  display: flex; gap: 12px; justify-content: space-between; align-items: center;
  margin-top: 24px; flex-wrap: wrap;
}
.acoes-bloco .btn-primario { margin-left: auto; }

/* ---------- modais ---------- */
.modal {
  position: fixed; inset: 0; background: rgba(31, 90, 86, .45);
  display: flex; align-items: center; justify-content: center;
  padding: 18px; z-index: 50; backdrop-filter: blur(2px);
}
.modal-card {
  background: var(--bg-card); border-radius: var(--radius-lg); max-width: 560px; width: 100%;
  padding: 28px; max-height: 90vh; overflow: auto; box-shadow: var(--shadow-lg);
}
.modal-card h2 { margin-top: 0; font-family: var(--font-display); color: var(--brand-teal-dark); }
.disclaimer-check { display: flex; gap: 10px; align-items: flex-start; margin: 13px 0; font-size: .94rem; }
.disclaimer-check input { margin-top: 4px; accent-color: var(--brand-teal); width: 17px; height: 17px; }

/* gate */
.campo { display: block; margin: 13px 0; }
.campo span { display: block; font-size: .9rem; color: var(--brand-teal-dark); font-weight: 600; margin-bottom: 5px; }
.campo input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md); font-size: 1rem; font-family: var(--font-body);
}
.campo input:focus { outline: none; border-color: var(--brand-teal); }
.gate-lgpd { font-size: .8rem; color: var(--text-muted); margin: 14px 0 0; }

/* ---------- resultado ---------- */
.resultado-loading { text-align: center; padding: 36px 0; }
.spinner {
  width: 36px; height: 36px; border: 3px solid #E5EAEA; border-top-color: var(--brand-teal);
  border-radius: 50%; margin: 0 auto 14px; animation: girar .8s linear infinite;
}
@keyframes girar { to { transform: rotate(360deg); } }
.aviso-pequeno { color: var(--text-muted); font-size: .85rem; }

/* hero do resultado */
.hero-resultado {
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 28px 26px; margin-bottom: 18px; text-align: center;
}
.hero-resultado .hero-tag {
  text-transform: uppercase; letter-spacing: 2px; font-size: .72rem; opacity: .85; font-weight: 600;
}
.hero-resultado h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 4.5vw, 1.9rem); margin: 8px 0 6px; line-height: 1.25;
}
.hero-resultado .hero-sub { font-size: .95rem; opacity: .92; max-width: 52ch; margin: 0 auto; }

/* save-status */
.save-status {
  display: flex; align-items: center; gap: 8px; font-size: .92rem;
  padding: 11px 14px; border-radius: var(--radius-md); margin-bottom: 16px;
}
.save-status.ok   { background: #E9F3EC; color: var(--brand-green); }
.save-status.fail { background: #F8ECE2; color: var(--brand-orange); }
.save-dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; flex: none; }

/* anéis (gauges) */
.aneis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.anel-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 18px 12px; text-align: center;
}
.anel {
  --pct: 0; --cor: var(--brand-teal);
  width: 112px; height: 112px; border-radius: 50%; margin: 0 auto 10px;
  background:
    radial-gradient(closest-side, var(--bg-card) 78%, transparent 79% 100%),
    conic-gradient(var(--cor) calc(var(--pct) * 1%), #E5EAEA 0);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.anel .anel-num { font-size: 1.7rem; font-weight: 800; color: var(--text-main); line-height: 1; }
.anel .anel-max { font-size: .72rem; color: var(--text-muted); }
.anel-nome { font-weight: 700; color: var(--brand-teal-dark); font-size: .98rem; }
.anel-pill {
  display: inline-block; margin-top: 5px; font-size: .76rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; background: var(--cor-pill, var(--brand-teal)); color: #fff;
}

/* devolutiva */
.bloco-devolutiva {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 24px; margin-bottom: 16px;
}
.dev-abertura {
  font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4;
  color: var(--brand-teal-dark); margin-top: 0;
}
.dev-sub {
  font-weight: 700; color: var(--brand-teal); font-size: .82rem;
  letter-spacing: .8px; text-transform: uppercase; margin: 18px 0 4px;
}
.dev-convite { font-weight: 600; color: var(--brand-teal-dark); }
.flag-inespecifico {
  background: #FCF4EC; border-left: 3px solid var(--brand-orange);
  padding: 11px 13px; border-radius: var(--radius-sm); font-size: .92rem; color: #7a5530;
}

/* ---------- bloco Modelo S.E.R. ---------- */
.bloco-ser {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 24px; margin-bottom: 16px;
}
.bloco-ser h3, .bloco-e5ss h3 {
  font-family: var(--font-display); color: var(--brand-teal-dark);
  font-size: 1.3rem; margin: 0 0 6px;
}
.ser-camadas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0 6px; }
.ser-camada {
  border: 1.5px solid var(--border-subtle); border-radius: var(--radius-md);
  padding: 14px 12px; text-align: center; position: relative; background: var(--bg-card);
}
.ser-camada .ser-letra {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; line-height: 1;
  color: var(--brand-teal-light);
}
.ser-camada .ser-nome { font-weight: 700; font-size: .92rem; margin-top: 4px; color: var(--text-main); }
.ser-camada .ser-desc { font-size: .8rem; color: var(--text-secondary); margin-top: 3px; line-height: 1.45; }
.ser-camada.ser-ativa {
  border-color: var(--brand-teal); background: var(--bg-soft); box-shadow: var(--shadow-sm);
}
.ser-camada.ser-ativa .ser-letra { color: var(--brand-teal); }
.ser-voce-aqui {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--brand-teal); color: #fff; font-size: .68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; white-space: nowrap; letter-spacing: .5px;
}

/* ---------- bloco E5SS ---------- */
.bloco-e5ss {
  background: linear-gradient(160deg, var(--bg-soft) 0%, #fff 70%);
  border: 1.5px solid rgba(47,111,106,.25); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 24px; margin-bottom: 16px;
}
.pilares { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.pilar {
  background: var(--bg-card); border: 1px solid rgba(47,111,106,.25);
  color: var(--brand-teal-dark); font-weight: 600; font-size: .85rem;
  padding: 7px 13px; border-radius: 999px;
}
.e5ss-cta { margin-top: 6px; }

/* leitura complementar */
.bloco-complementar {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 6px 20px; margin-bottom: 16px;
}
.bloco-complementar summary { cursor: pointer; font-weight: 600; color: var(--brand-teal); padding: 13px 0; }
.complementar-corpo { padding-bottom: 14px; }
.complementar-aviso { font-size: .85rem; color: var(--text-muted); }
.subescala { margin: 10px 0; }
.subescala-label { font-size: .9rem; margin-bottom: 4px; }
.subescala-num { color: var(--text-muted); }
.subescala-barra { height: 8px; background: #E5EAEA; border-radius: 999px; overflow: hidden; }
.subescala-fill { height: 100%; background: var(--brand-teal); }

/* disclaimers fixos */
.dev-disclaimer {
  font-size: .9rem; background: var(--bg-soft); border-radius: var(--radius-md);
  padding: 13px 15px; color: var(--text-secondary);
}
.dev-limitacoes { font-size: .82rem; color: var(--text-muted); }

/* ---------- WIZARD (1 pergunta por tela · low-tech first) ---------- */
.wizard-progresso { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.wizard-contagem { font-weight: 700; color: var(--brand-teal-dark); font-size: .95rem; }

.wizard-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 24px 22px; margin: 16px 0; border-bottom: 1px solid var(--border-subtle);
}
.pergunta-topo { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.pergunta-texto {
  font-size: 1.22rem; font-weight: 600; line-height: 1.45;
  color: var(--text-main); margin-bottom: 18px;
}
.wizard .item-opcoes.opcoes-4 { grid-template-columns: 1fr 1fr; } /* wizard: 2×2 — alvos grandes */
.wizard .opt-btn { min-height: 64px; padding: 13px 10px; font-size: .85rem; }
.wizard .opt-btn .opt-label { font-size: .86rem; }

/* botão "ouvir" (TTS — low-tech) */
.tts-btn {
  border: 1px solid var(--border-subtle); background: var(--bg-soft);
  color: var(--brand-teal-dark); font-family: var(--font-body); font-size: .82rem;
  font-weight: 600; padding: 7px 12px; border-radius: 999px; cursor: pointer;
}
.tts-btn:hover { border-color: var(--brand-teal-light); }

/* confirmação da resposta (micro-animação antes do auto-advance) */
@keyframes confirmaPulso {
  0% { transform: scale(1); }
  45% { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(47,111,106,.18); }
  100% { transform: scale(1); }
}
.opt-btn.confirmada { animation: confirmaPulso .38s ease; }

/* transições entre perguntas */
@keyframes entraDir { from { opacity: 0; transform: translateX(36px); } to { opacity: 1; transform: none; } }
@keyframes entraEsq { from { opacity: 0; transform: translateX(-36px); } to { opacity: 1; transform: none; } }
.wizard.entra-dir { animation: entraDir .28s ease both; }
.wizard.entra-esq { animation: entraEsq .28s ease both; }
@media (prefers-reduced-motion: reduce) {
  .wizard.entra-dir, .wizard.entra-esq { animation: none; }
  .opt-btn.confirmada { animation: none; }
}

.wizard-acoes { margin-top: 10px; }
.btn-voltar {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-family: var(--font-body); font-size: .92rem; padding: 10px 6px;
}
.btn-voltar:hover { color: var(--brand-teal); }
.btn-avancar-manual { font-size: .92rem; padding: 10px 20px; }

/* relatório unificado: títulos de seção + fios */
.rel-h3 {
  font-family: var(--font-display); color: var(--brand-teal-dark);
  font-size: 1.25rem; margin: 0 0 10px;
}
.fios { margin: 0; padding-left: 22px; }
.fios li { margin: 8px 0; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--brand-teal-dark); color: #fff; padding: 11px 20px; border-radius: 999px;
  font-size: .9rem; z-index: 60; box-shadow: var(--shadow-lg); max-width: 92vw;
}
.toast-erro { background: var(--brand-orange); }

/* ---------- responsivo ---------- */
@media (max-width: 600px) {
  .wrap { padding: 20px 14px 60px; }
  .card, .bloco-devolutiva, .bloco-ser, .bloco-e5ss { padding: 18px 16px; }
  .item-opcoes.opcoes-4 { grid-template-columns: repeat(2, 1fr); }
  .aneis { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .anel { width: 84px; height: 84px; }
  .anel .anel-num { font-size: 1.3rem; }
  .anel-pill { font-size: .68rem; padding: 3px 8px; }
  .ser-camadas { grid-template-columns: 1fr; gap: 14px; }
  .acoes-resultado .btn-primario { width: 100%; text-align: center; }
  .acoes-resultado .btn-secundario { width: 100%; text-align: center; }
}

/* ===== Bloco de evidência (comparativo "com vs sem acompanhamento") ===== */
.bloco-evidencia{background:#f4f9f8;border:1px solid #d8e8e6;border-radius:16px;padding:22px 20px;margin:18px 0}
.bloco-evidencia .rel-h3{margin-top:0}
.evid-compara{display:flex;align-items:flex-end;justify-content:center;gap:20px;margin:16px 0 12px}
.evid-col{display:flex;flex-direction:column;align-items:center;justify-content:flex-end;gap:8px;width:108px}
.evid-barra{width:56px;min-height:24px;border-radius:10px 10px 0 0;display:block}
.evid-com .evid-barra{background:linear-gradient(180deg,#2F6F6A,#1f5a56)}
.evid-sem .evid-barra{background:#cdd9d7}
.evid-leg{font-size:13px;text-align:center;color:#33514e;line-height:1.3}
.evid-vs{align-self:center;padding-bottom:34px}
.evid-mult{font-family:var(--font-display,'Newsreader',serif);font-size:1.8rem;font-weight:700;color:#2F6F6A;white-space:nowrap}
.evid-frase{font-size:15px;line-height:1.5;margin:8px 0 2px;text-align:center}
.evid-fonte{font-size:12.5px;color:#5a716e;margin:8px 0 4px;text-align:center}
.evid-fonte a{color:#2F6F6A;font-weight:600;text-decoration:none}
.evid-disc{font-size:11.5px;color:#7a8c8a;font-style:italic;margin:8px 0 0;text-align:center;line-height:1.4}
@media(max-width:420px){.evid-col{width:84px}.evid-barra{width:46px}.evid-mult{font-size:1.5rem}}

/* "Leve pra sua IA" — resultado vira prompt (low-tech: botão grande, passos 1-2-3) */
.bloco-ia { background: #EEF4F3; border: 1px solid #D6E6E2; border-radius: 16px; padding: 22px 24px; margin-top: 18px; }
.bloco-ia .rel-h3 { margin-top: 0; color: var(--brand-teal-dark); }
.bloco-ia > p { font-size: 15px; color: #33514d; line-height: 1.6; margin: 6px 0 14px; }
.btn-ia { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; max-width: 360px; min-height: 54px; margin: 4px auto 6px; padding: 15px 26px; background: var(--brand-teal); color: #fff; border: none; border-radius: 999px; font-size: 17px; font-weight: 700; line-height: 1.2; cursor: pointer; transition: background .15s ease, transform .1s ease; }
.btn-ia:hover { background: var(--brand-teal-dark); }
.btn-ia:active { transform: scale(.98); }
.btn-ia.ia-copiado { background: #1d9e75; }
.ia-passos { margin: 14px 0 6px; padding-left: 24px; font-size: 15px; color: #33514d; line-height: 1.9; }
.ia-passos li { margin-bottom: 2px; }
.ia-nota { font-size: 13px; color: #5a726e; line-height: 1.5; margin: 12px 0 0; }
.ia-prompt-src { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; opacity: 0; }
@media(max-width:420px){ .bloco-ia { padding: 18px 16px; } .btn-ia { font-size: 16px; max-width: none; } }

/* E5SS — painel dos 5 pilares coloridos por faixa (camada S · jóia da coroa) */
.bloco-pilares5 { padding: 18px 20px; }
.p5-grid { display: flex; flex-direction: column; gap: 13px; }
.p5-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 5px; }
.p5-nome { font-size: 15px; font-weight: 700; color: var(--brand-teal-dark); }
.p5-nome small { font-weight: 400; font-size: 12px; color: #778; }
.p5-faixa { font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.p5-track { height: 11px; background: #EEF0EC; border-radius: 99px; overflow: hidden; }
.p5-fill { height: 100%; border-radius: 99px; transition: width .6s ease; }
.p5-sub { margin-top: 16px; padding-top: 13px; border-top: 1px solid #E3E0D8; }
.p5-sub-h { font-size: 12px; font-weight: 700; color: #667; margin-bottom: 9px; }
.p5-sub-h small { font-weight: 400; font-style: italic; }
.p5-subrow { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.p5-subnome { font-size: 12.5px; color: #556; flex: 0 0 132px; }
.p5-subtrack { flex: 1; height: 7px; background: #EEF0EC; border-radius: 99px; overflow: hidden; }
.p5-subfill { height: 100%; background: var(--brand-teal-light); border-radius: 99px; }
.p5-subval { font-size: 11.5px; font-weight: 700; color: #667; flex: none; }
.p5-leg { font-size: 11.5px; color: #778; text-align: center; line-height: 1.7; margin: 15px 0 0; }
@media(max-width:420px){ .bloco-pilares5 { padding: 16px 15px; } .p5-subnome { flex: 0 0 96px; } }
