/* ==========================================================================
   para-quem.css — Seção "Para quem é esse diagnóstico"
   ========================================================================== */

.pq__head {
  text-align: center;
  margin-bottom: 64px;
}

.pq__eyebrow {
  margin-bottom: 16px;
}

.pq__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(24px, 5vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin: 0 0 14px;
}

.pq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.pq-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
}

.pq-card--red {
  background: var(--red-card-bg);
  border-color: var(--red-line);
}

.pq-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 24px;
}

.pq-card__title--red {
  color: var(--red-heading);
}

.pq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pq-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pq-icon--red {
  background: var(--red-bg);
}

.pq-icon__main {
  font-size: 16px;
  color: var(--green);
}

.pq-icon__main--red {
  color: var(--red);
}

.pq-icon__badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pq-icon__badge--red {
  background: var(--red);
}

.pq-icon__badge-icon {
  font-size: 10px;
  color: #fff;
}

.pq-item__text {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.pq-item__text--red {
  color: var(--red-dark);
}

.pq-strong--green {
  color: var(--green);
  font-weight: 700;
}

.pq-strong--red {
  color: var(--red);
  font-weight: 700;
}
