/* politica.css */
.pp-body {
  background: #fafaf8;
  color: #0b0f14;
}

.pp-main {
  padding-top: 96px;
  /* por causa do header fixo */
}

.pp-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.pp-hero {
  padding: 56px 0 28px 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
}

.pp-breadcrumb {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(11, 15, 20, .55);
  display: flex;
  gap: 10px;
  align-items: center;
}

.pp-sep {
  opacity: .55;
}

.pp-current {
  opacity: .85;
}

.pp-title {
  margin-top: 14px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
  color: #0f2a47;
}

.pp-subtitle {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(11, 15, 20, .70);
  max-width: 72ch;
}

.pp-meta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(11, 15, 20, 0.10);
  background: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pp-chip-link {
  text-decoration: none;
}

.pp-chip-link:hover {
  border-color: rgba(232, 110, 45, .45);
}

.pp-section {
  padding: 34px 0 80px 0;
  background: #f3f4f6;
  /* cinza claro */
}

.pp-article {
  background: #ffffff;
  border: 1px solid rgba(11, 15, 20, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
  padding: 28px;
}

.pp-h2 {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 900;
  color: #0f2a47;
}

.pp-p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(11, 15, 20, .72);
}

.pp-list {
  margin-top: 10px;
  padding-left: 18px;
  color: rgba(11, 15, 20, .72);
}

.pp-list li {
  margin: 8px 0;
}

.pp-note {
  background: rgba(232, 110, 45, .08);
  border: 1px solid rgba(232, 110, 45, .22);
  padding: 16px;
  margin-bottom: 16px;
}

.pp-note-title {
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: #0f2a47;
}

.pp-note-text {
  margin-top: 8px;
  color: rgba(11, 15, 20, .75);
  line-height: 1.7;
  font-size: 14px;
}

.pp-link {
  color: #E86E2D;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pp-link:hover {
  opacity: .85;
}

.pp-divider {
  margin: 26px 0 14px;
  border-top: 1px solid rgba(11, 15, 20, 0.08);
}

.pp-small {
  font-size: 12px;
  opacity: .9;
}

/* Mobile */
@media (max-width: 640px) {
  .pp-title {
    font-size: 34px;
  }

  .pp-article {
    padding: 18px;
  }
}