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

:root {
  --steel-dark:  #0d0f14;
  --steel-mid:   #1a1e27;
  --steel-light: #252b38;
  --molten:      #e8621a;
  --molten-glow: #ff8c42;
  --silver:      #a8b4c4;
  --white:       #f0f2f5;
  --text-muted:  #6b7a8d;
  --border:      rgba(168,180,196,.12);
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--steel-dark);
  color: var(--white);
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(13,15,20,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--molten);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; color: #fff; letter-spacing: 1px;
}
.nav-logo-text span:first-child {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 3px; color: var(--white);
}
.nav-logo-text span:last-child {
  display: block;
  font-size: 10px; letter-spacing: 1.5px; color: var(--silver);
  text-transform: uppercase;
}
.nav-back {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--silver);
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; transition: color .2s;
}
.nav-back:hover { color: var(--molten); }
.nav-back::before { content: '←'; font-size: 16px; }

/* HERO */
.pp-hero {
  padding: 80px 5vw 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--steel-dark) 60%, rgba(232,98,26,.06));
  position: relative; overflow: hidden;
}
.pp-hero::before {
  content: 'PRIVACIDADE';
  position: absolute; bottom: -20px; right: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16vw; color: rgba(255,255,255,.02);
  white-space: nowrap; pointer-events: none; letter-spacing: 8px;
}

.pp-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--molten); margin-bottom: 16px;
}
.pp-label::before { content: ''; width: 30px; height: 2px; background: var(--molten); }

.pp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 2px; line-height: .9;
  color: var(--white); margin-bottom: 24px;
}

.pp-meta {
  display: flex; gap: 40px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.pp-meta span strong { color: var(--silver); font-weight: 600; }

/* LAYOUT */
.pp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* SIDEBAR */
.pp-sidebar {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  position: sticky; top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}
.pp-sidebar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
}
.pp-sidebar nav ul { list-style: none; }
.pp-sidebar nav ul li { margin-bottom: 4px; }
.pp-sidebar nav ul li a {
  display: block; padding: 8px 12px;
  text-decoration: none; color: var(--text-muted);
  font-size: 13px; line-height: 1.4;
  border-left: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.pp-sidebar nav ul li a:hover {
  color: var(--white); border-left-color: var(--molten);
}

/* CONTENT */
.pp-content {
  padding: 60px 5vw 100px;
  max-width: 820px;
}

.pp-section { margin-bottom: 60px; }
.pp-section-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 3px; color: var(--molten);
  margin-bottom: 8px;
}
.pp-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 1px; color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.pp-section p {
  font-size: 15px; color: var(--silver); line-height: 1.85;
  font-weight: 300; margin-bottom: 16px;
}
.pp-section p:last-child { margin-bottom: 0; }
.pp-section ul {
  margin: 16px 0 16px 0; list-style: none;
}
.pp-section ul li {
  font-size: 15px; color: var(--silver); line-height: 1.7;
  padding: 8px 0 8px 20px; position: relative;
  border-bottom: 1px solid var(--border);
}
.pp-section ul li:last-child { border-bottom: none; }
.pp-section ul li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--molten); font-size: 12px;
  top: 10px;
}

.pp-highlight {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--molten);
  background: var(--steel-mid);
  margin: 24px 0;
  font-size: 15px; color: var(--silver); line-height: 1.7;
}
.pp-highlight strong { color: var(--white); font-weight: 600; }

.pp-contact-box {
  padding: 36px;
  background: var(--steel-light);
  border: 1px solid var(--border);
  margin-top: 24px;
}
.pp-contact-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 16px; font-weight: 700;
}
.pp-contact-box p { font-size: 14px; color: var(--silver); margin-bottom: 8px; }
.pp-contact-box a { color: var(--molten); text-decoration: none; }
.pp-contact-box a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  background: #080a0d;
  border-top: 1px solid var(--border);
  padding: 32px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
footer span { font-size: 12px; color: var(--text-muted); }
footer a {
  font-size: 12px; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
footer a:hover { color: var(--molten); }

@media (max-width: 768px) {
  .pp-layout { grid-template-columns: 1fr; }
  .pp-sidebar { position: static; height: auto; border-right: none; border-bottom: 1px solid var(--border); }
}
