/* Components specific to /portal-de-clientes/. Loaded after site.css. */

/* ---------- caption under the portal screenshot ---------- */
.shot-caption {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--quiet);
  font-size: 13px;
  text-align: center;
}

/* ---------- portal areas ---------- */

/* .audience-card supplies the shell; the title takes the card's accent tone. */
.area-card h3 {
  color: var(--pill-ink, var(--purple));
  font-size: 16.5px;
}

/* tone-sky exposes #0e9bd8 as its pill ink; this card wants the lighter sky
   accent that the same tone already carries as --chip. */
.area-card.is-sky-light h3 {
  color: var(--chip);
}

/* ---------- access boundary ---------- */
.boundary-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.boundary-card {
  padding: 24px;
  border: 1px solid var(--edge, var(--line));
  border-radius: 16px;
  background: var(--wash, #fff);
}

.boundary-card.is-internal {
  --edge: #e0d5f7;
  --wash: linear-gradient(160deg, #fdfcff, #f7f3fe);
}

.boundary-card.is-portal {
  --edge: #d3e7fb;
  --wash: linear-gradient(160deg, #fdfeff, #f1f8fe);
}

.boundary-label {
  margin: 0;
  color: var(--pill-ink, var(--purple));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.boundary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.boundary-tag {
  padding: 7px 12px;
  border: 1px solid var(--edge, var(--line));
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
}

.boundary-split {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}

.boundary-rule {
  height: 1.5px;
  flex: 1;
  background: repeating-linear-gradient(90deg, #c9aef4 0 8px, transparent 8px 16px);
}

.boundary-split-label {
  color: var(--quiet);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
