/* ── PRIVACIDADE PAGE — estilos específicos ── */
/* Carregado após style.css; sobrescreve apenas o necessário */

/* Nav: sticky em vez de fixed (página de documento, não SPA) */
nav {
  position: sticky;
  height: 64px;
  gap: 1rem;
  box-shadow: none;
}

/* Botão de voltar ao site */
.nav-back {
  margin-left: auto;
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

.nav-back:hover { color: var(--orange); }

/* Conteúdo principal */
main {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 6% 100px;
}

/* Tag de seção (LGPD · LEI 13.709/2018) */
.page-tag {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .9rem;
}

.page-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--orange);
  display: block;
  flex-shrink: 0;
}

/* Data de atualização */
.update-date {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* Card de cada cláusula */
.policy-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem 2.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* H2 dentro dos cards: menor e com barra laranja à esquerda */
.policy-card h2 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.policy-card h2::before {
  content: '';
  width: 3px;
  height: 1.1em;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Parágrafos e listas dentro dos cards */
.policy-card p {
  font-size: .93rem;
  color: #444;
  margin-bottom: .75rem;
}

.policy-card p:last-child { margin-bottom: 0; }

.policy-card ul {
  list-style: none;
  margin: .5rem 0 .75rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.policy-card ul li {
  font-size: .93rem;
  color: #444;
  padding-left: 1.2rem;
  position: relative;
}

.policy-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* Links gerais no corpo do documento */
main a { color: var(--orange); }

/* Footer: centralizado (diferente do footer da home) */
footer {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: .4rem;
  padding: 1.5rem 6%;
  font-size: .88rem;
}
