    :root {
      --c-midnight:   #090D10;
      --c-onyx:       #0D0D0D;
      --c-charcoal:   #1C1D20;
      --c-gold:       #D49F4C;
      --c-gold-warm:  #D99A4E;
      --c-muted:      #888890;
      --c-silver:     #E5E5E5;
      --c-ivory:      #F5F3EE;
      --c-white:      #FFFFFF;
      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: var(--font-body);
      color: var(--c-onyx);
      background: var(--c-ivory);
      line-height: 1.7;
    }

    a { text-decoration: none; color: inherit; }

    *::-webkit-scrollbar { width: 7px; }
    *::-webkit-scrollbar-track { background-color: #1a1a1a; }
    *::-webkit-scrollbar-thumb { background: linear-gradient(180deg,#f5d76e,#9c6b30); border-radius: 12px; border: 2px solid #1a1a1a; }

    /* ── NAV SIMPLIFICADO ── */
    .pp-nav {
      background: #000000;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .pp-nav__logo img {
      height: 56px;
      width: auto;
      display: block;
    }

    .pp-nav__back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.7);
      font-size: 0.875rem;
      font-family: var(--font-body);
      font-weight: 500;
      transition: color 0.2s;
    }

    .pp-nav__back:hover { color: var(--c-gold); }

    .pp-nav__back svg {
      width: 16px;
      height: 16px;
    }

    /* ── HERO ── */
    .pp-hero {
      background: var(--c-charcoal);
      padding: 4rem 1.5rem 3rem;
      text-align: center;
    }

    .pp-hero__eyebrow {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--c-gold);
      margin-bottom: 1rem;
    }

    .pp-hero__title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.75rem);
      color: var(--c-white);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .pp-hero__meta {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.5);
    }

    /* ── CONTAINER ── */
    .pp-container {
      max-width: 820px;
      margin: 0 auto;
      padding: 3rem 1.5rem 5rem;
    }

    /* ── SEÇÕES ── */
    .pp-section {
      background: var(--c-white);
      border-radius: 12px;
      padding: 2rem 2.25rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    }

    .pp-section__num {
      display: inline-block;
      background: var(--c-gold);
      color: var(--c-midnight);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      margin-bottom: 0.75rem;
    }

    .pp-section__title {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--c-onyx);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .pp-section p {
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 0.75rem;
      line-height: 1.75;
    }

    .pp-section p:last-child { margin-bottom: 0; }

    .pp-section ul {
      list-style: none;
      margin: 0.5rem 0 0.75rem;
      padding: 0;
    }

    .pp-section ul li {
      font-size: 0.95rem;
      color: #444;
      padding: 0.3rem 0 0.3rem 1.25rem;
      position: relative;
      line-height: 1.6;
    }

    .pp-section ul li::before {
      content: '✦';
      position: absolute;
      left: 0;
      color: var(--c-gold);
      font-size: 0.6rem;
      top: 0.55rem;
    }

    .pp-section a {
      color: var(--c-gold);
      text-decoration: underline;
      transition: opacity 0.2s;
    }

    .pp-section a:hover { opacity: 0.75; }

    /* ── HIGHLIGHT BOX ── */
    .pp-highlight {
      background: rgba(212,159,76,0.08);
      border-left: 3px solid var(--c-gold);
      border-radius: 0 8px 8px 0;
      padding: 1rem 1.25rem;
      margin: 0.75rem 0;
    }

    .pp-highlight p {
      margin: 0;
      font-size: 0.9rem;
      color: #555;
    }

    /* ── FOOTER SIMPLIFICADO ── */
    .pp-footer {
      background: var(--c-onyx);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .pp-footer__text {
      font-size: 0.825rem;
      color: rgba(255,255,255,0.35);
      margin-bottom: 0.75rem;
    }

    .pp-footer__link {
      color: var(--c-gold);
      font-size: 0.875rem;
      font-weight: 600;
      transition: opacity 0.2s;
    }

    .pp-footer__link:hover { opacity: 0.75; }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      .pp-section { padding: 1.5rem 1.25rem; }
      .pp-hero { padding: 3rem 1.25rem 2rem; }
    }
