/* CSS compartilhado entre páginas legais (Privacidade, LGPD, Termos, Cookies) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy-deep: #060d1a;
  --navy: #0b1a2e;
  --navy-mid: #0f2240;
  --blue-accent: #2196F3;
  --blue-pale: #90caf9;
  --white: #f0f4f8;
  --white-soft: #c8d6e5;
  --white-muted: #8b9bb5;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--blue-pale); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(33,150,243,0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-back-link {
  font-size: 0.85rem; font-weight: 500; color: var(--white-soft);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.3s;
}
.nav-back-link:hover { color: var(--white); }

/* Conteúdo legal */
.legal-page {
  flex: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 140px clamp(20px, 4vw, 60px) 80px;
  width: 100%;
}
.legal-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-accent); margin-bottom: 16px;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2; color: var(--white); margin-bottom: 12px; font-weight: 400;
}
.legal-meta {
  font-size: 0.85rem; color: var(--white-muted); margin-bottom: 48px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--white); margin: 40px 0 16px; font-weight: 400;
}
.legal-page h3 {
  font-size: 1rem; color: var(--white); margin: 28px 0 10px; font-weight: 600;
}
.legal-page p {
  color: var(--white-soft); margin-bottom: 16px; font-weight: 300; font-size: 0.95rem;
}
.legal-page ul, .legal-page ol {
  color: var(--white-soft); margin: 0 0 16px 24px; font-weight: 300; font-size: 0.95rem;
}
.legal-page li { margin-bottom: 8px; }
.legal-page strong { color: var(--white); font-weight: 600; }

/* Bloco de aviso (revisão jurídica) */
.legal-notice {
  background: rgba(255, 152, 0, 0.06);
  border: 1px solid rgba(255, 152, 0, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.85rem;
  color: #ffb74d;
}
.legal-notice strong { color: #ffcc80; }

/* Placeholder de campo a preencher */
.placeholder {
  background: rgba(33,150,243,0.12);
  border: 1px dashed rgba(33,150,243,0.4);
  padding: 2px 8px; border-radius: 4px;
  color: var(--blue-pale); font-weight: 500;
  font-size: 0.9em;
}

/* Footer */
.footer {
  background: #030810; border-top: 1px solid rgba(33,150,243,0.06);
  padding: 32px 0; margin-top: auto;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-inner p { font-size: 0.78rem; color: var(--white-muted); font-weight: 300; }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.78rem; color: var(--white-muted);
  text-decoration: none; font-weight: 300; transition: color 0.3s;
}
.footer-legal a:hover { color: var(--white-soft); }

@media (max-width: 600px) {
  .footer-legal { gap: 14px; }
}
