/* ──────────────────────────────────────────────────────────
   PROFISSIONAL — perfil de profissional (página-folha). Portado
   dos componentes da view "profissional" da POC (poc-ranqia-hub).
   Complementa business.css (cards, rail, faq, meta) — carregado
   junto com ele.
   ────────────────────────────────────────────────────────── */

/* Avatar redondo (profissional em vez de logo quadrado) */
.biz-avatar.round {
  border-radius: 50%;
}

/* Chips de especialidade / áreas de atuação -------------------------- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 13px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 7px 13px;
  border-radius: 8px;
  font-weight: 500;
}

/* Timeline (formação e trajetória) ----------------------------------- */
.tl {
  position: relative;
  margin: 0;
  padding: 0 0 0 22px;
  list-style: none;
}

.tl::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.tl li {
  position: relative;
  padding: 0 0 18px;
}

.tl li:last-child {
  padding-bottom: 0;
}

.tl li::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--brand-soft);
}

.tl .yr {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brand-2);
  font-weight: 700;
}

.tl .role {
  font-weight: 700;
  font-size: 14.5px;
  margin-top: 2px;
  color: var(--ink);
}

.tl .org {
  font-size: 13px;
  color: var(--muted);
}

.tl p {
  margin: 5px 0 0;
  font-size: 13.5px;
  color: var(--ink-2);
}

/* Serviços descritos ------------------------------------------------- */
.prof-services {
  display: grid;
  gap: 16px;
}

.prof-svc {
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-2);
}

.prof-svc:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.prof-svc-name {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.prof-svc-desc {
  margin: 6px 0 0;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Publicações / prêmios — lista numerada ----------------------------- */
ul.refs {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: r;
}

ul.refs li {
  counter-increment: r;
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

ul.refs li:last-child {
  border-bottom: 0;
}

ul.refs li::before {
  content: counter(r);
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-family: var(--mono);
}

ul.refs .src {
  color: var(--muted);
  font-size: 12.5px;
}

/* CTA de agendamento (rail) ------------------------------------------ */
.prof-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--grad-hd);
  color: #fff;
  border-radius: 14px;
  padding: 18px 20px;
}

.prof-cta .ct-t {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.prof-cta .ct-s {
  font-size: 12.5px;
  color: #e7dcc4;
  margin-top: 3px;
}

.prof-cta a {
  background: #fff;
  color: var(--brand);
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 10px;
  white-space: nowrap;
}

.prof-cta a:hover {
  background: var(--brand-soft);
}
