/* SEI Fácil — privacy page
   Shared document layout (.doc-shell, .page-head, .block, .callout, code)
   lives in styles.css. Only privacy-specific pieces are here. */

.privacy {
  padding: 4px 0 56px;
}

/* Screenshot */
.shot {
  margin: 0 0 8px;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(26, 39, 48, .16);
}

.shot figcaption {
  margin-top: 14px;
  font-size: .88rem;
  color: var(--ink-3);
  text-align: center;
}

/* LGPD divider sub-title */
.lgpd-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--seal-dark);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 6px;
  margin: 22px 0 12px;
}

/* Permissions grid */
.perm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.perm-item {
  background: var(--seal-tint);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.perm-name {
  font-family: ui-monospace, 'Cascadia Code', 'Consolas', monospace;
  font-size: .82rem;
  font-weight: 600;
  color: var(--seal-dark);
}

.perm-desc {
  font-size: .85rem;
  color: var(--ink-2);
}

@media (max-width: 540px) {
  .perm-grid {
    grid-template-columns: 1fr;
  }
}
