/* =============================================================
   POLITICA-DE-PRIVACIDADE.CSS
   Cross Creative Studio © 2026
   ============================================================= */

:root {
  --pp-bg:      #0a0a1a;
  --pp-surface: #111128;
  --pp-border:  rgba(255,255,255,0.08);
  --pp-text:    #d4d4e8;
  --pp-muted:   #8888aa;
  --pp-accent:  #4f8ef7;
  --pp-heading: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--pp-bg);
  color: var(--pp-text);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  min-height: 100vh;
}

/* ── HEADER ──────────────────────────────────────────── */
.pp-header {
  background: var(--pp-surface);
  border-bottom: 1px solid var(--pp-border);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.pp-header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pp-header a {
  color: var(--pp-muted);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.pp-header a:hover { color: var(--pp-accent); }
.pp-header-logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--pp-heading);
  text-decoration: none;
  margin-left: auto;
}

/* ── HERO ────────────────────────────────────────────── */
.pp-hero {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a1a4e 50%, #0d0d2b 100%);
  padding: 64px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--pp-border);
}
.pp-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--pp-heading);
  margin-bottom: 12px;
}
.pp-hero p { color: var(--pp-muted); font-size: 15px; }
.pp-hero .badge {
  display: inline-block;
  background: rgba(79,142,247,0.15);
  color: var(--pp-accent);
  border: 1px solid rgba(79,142,247,0.3);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 13px;
  margin-bottom: 20px;
}

/* ── CONTEÚDO ────────────────────────────────────────── */
.pp-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.pp-section { margin-bottom: 48px; }
.pp-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pp-heading);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pp-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-section h2 i { color: var(--pp-accent); font-size: 18px; }
.pp-section p { margin-bottom: 12px; color: var(--pp-text); }
.pp-section ul { padding-left: 20px; margin-bottom: 12px; }
.pp-section ul li { margin-bottom: 8px; color: var(--pp-text); }
.pp-section a { color: var(--pp-accent); text-decoration: none; }
.pp-section a:hover { text-decoration: underline; }

.pp-card {
  background: var(--pp-surface);
  border: 1px solid var(--pp-border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}
.pp-card strong { color: var(--pp-heading); }

.pp-highlight {
  background: rgba(79,142,247,0.08);
  border-left: 3px solid var(--pp-accent);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 15px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.pp-footer {
  background: var(--pp-surface);
  border-top: 1px solid var(--pp-border);
  padding: 32px 24px;
  text-align: center;
  color: var(--pp-muted);
  font-size: 14px;
}
.pp-footer a { color: var(--pp-accent); text-decoration: none; }

/* ── RESPONSIVO ──────────────────────────────────────── */
@media (max-width: 600px) {
  .pp-content { padding: 32px 16px 60px; }
  .pp-hero { padding: 40px 16px 32px; }
}
