/* ========================================================= PÁGINA PRIVACIDADE ========================================================= */

.privacy-page {
  width: 100%;
  min-height: 100vh;
  padding: 2.625rem 1.25rem 4rem;
  background: var(--bg-page);
}

.privacy-container {
  position: relative;
  width: 100%;
  max-width: 52.5rem;
  margin: 0 auto;
  background: var(--grad-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), var(--card-highlight);
  padding: 3.25rem 3.5rem 2.875rem;
  overflow: hidden;
}

/* Fio fino teal→dourado no topo do card de leitura */
.privacy-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-line);
}

/* ========================================================= VOLTAR ========================================================= */

.privacy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  transition: color var(--ease), transform var(--ease);
}

.privacy-back-link:hover {
  color: var(--brand-teal);
  transform: translateX(-2px);
}

.privacy-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1;
}

/* ========================================================= CABEÇALHO ========================================================= */

.privacy-header {
  position: relative;
  margin-bottom: 1.875rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--border-soft);
}

/* Marcador decorativo teal→dourado acima do título (acento premium) */
.privacy-header::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  margin-bottom: 1.125rem;
  border-radius: var(--r-pill);
  background: var(--grad-line);
}

.privacy-header h1 {
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.03em;
}

/* Fio fino teal→dourado sob o título (consistente com Termos/FAQ) */
.privacy-header h1::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 0.1875rem;
  margin-top: 0.875rem;
  border-radius: var(--r-pill);
  background: var(--grad-line);
}

/* ========================================================= CONTEÚDO ========================================================= */

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.privacy-section {
  position: relative;
}

.privacy-section h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
}

/* Acento teal antes do título da seção (hierarquia premium) */
.privacy-section h2::before {
  content: "";
  flex-shrink: 0;
  width: 0.25rem;
  height: 1.125rem;
  border-radius: var(--r-pill);
  background: var(--grad-teal);
}

.privacy-section p {
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 47.5rem;
}

/* ========================================================= RODAPÉ ========================================================= */

.privacy-footer {
  margin-top: 2.375rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
}

.privacy-footer p {
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-muted);
}

/* ========================================================= RESPONSIVO ========================================================= */

@media (max-width: 768px) {
  .privacy-page {
    padding: 1.75rem 1rem 3rem;
  }

  .privacy-container {
    max-width: 100%;
    padding: 2rem 1.75rem 1.875rem;
  }

  .privacy-back-link {
    font-size: 0.875rem;
    margin-bottom: 1.375rem;
  }

  .privacy-header {
    margin-bottom: 1.5rem;
  }

  .privacy-header h1 {
    font-size: 1.5rem;
  }

  .privacy-content {
    gap: 1.375rem;
  }

  .privacy-section h2 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
  }

  .privacy-section p {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .privacy-footer {
    margin-top: 1.875rem;
  }

  .privacy-footer p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .privacy-page {
    padding: 1.5rem 0.875rem 2.5rem;
  }

  .privacy-container {
    padding: 1.625rem 1.25rem 1.5rem;
  }

  .privacy-back-link {
    font-size: 0.8125rem;
    gap: 0.375rem;
  }

  .privacy-back-icon {
    font-size: 1rem;
  }

  .privacy-header h1 {
    font-size: 1.375rem;
  }

  .privacy-section h2 {
    font-size: 1rem;
  }

  .privacy-section p {
    font-size: 0.8125rem;
    line-height: 1.65;
  }
}
