/* ===== POLÍTICA DE PRIVACIDADE ===== */

.pp-nav-spacer { display: block; }

.pp-page {
  background: #ffffff;
  min-height: 100vh;
}

/* ---- Cabeçalho ---- */
.pp-header {
  background: var(--color-secondary);
  padding: 64px 32px 56px;
  text-align: center;
}

.pp-header-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.pp-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pp-title strong {
  font-weight: 700;
}

.pp-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Conteúdo ---- */
.pp-content {
  padding: 72px 0 96px;
}

.pp-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Artigo ---- */
.pp-article {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- Seção individual ---- */
.pp-section {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid #e9e9e9;
  align-items: start;
}
.pp-section:last-child { border-bottom: none; }

.pp-section-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  padding-top: 6px;
  line-height: 1;
}

.pp-section-body h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pp-section-body p {
  font-size: 0.97rem;
  color: #4b5563;
  line-height: 1.8;
}

.pp-section-body a {
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.2s;
}
.pp-section-body a:hover { color: var(--color-secondary); }

/* ---- Reveal ---- */
.pp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.pp-reveal.pp-visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVO ===== */
@media (max-width: 600px) {
  .pp-header { padding: 48px 20px 40px; }
  .pp-container { padding: 0 20px; }
  .pp-content { padding: 48px 0 64px; }
  .pp-section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0;
  }
}
