/* ==========================================================================
   ESTILO DA PÁGINA DE COOKIES (700px / Justificado)
   ========================================================================== */
.dt-legal-wrapper {
  max-width: 700px !important; /* Trava no tamanho padrão de 700px */
  margin: 40px auto;
  padding: 0 15px;
  animation: dtFadeIn 0.5s ease;
}

.dt-legal-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dt-legal-header h1 {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.dt-legal-header span {
  font-size: 12px;
  color: #8520d2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Caixa de Conteúdo (Fundo 30% mais claro que o fundo do site) */
.dt-legal-content {
  background: #1c1c1f; 
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.8;
  
  /* Justificação do texto em todos os dispositivos */
  text-align: justify !important;
  text-justify: inter-word;
}

.dt-legal-content h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 40px 0 15px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left !important;
}

/* Detalhe Roxo lateral */
.dt-legal-content h2::before {
  content: "";
  width: 4px;
  height: 20px;
  background: #8520d2;
  border-radius: 2px;
}

.dt-legal-content p { margin-bottom: 20px; }

.dt-legal-content ul {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 20px 20px 40px;
  border-radius: 12px;
  margin-bottom: 25px;
  list-style-type: square;
  border: 1px solid rgba(255, 255, 255, 0.02);
  text-align: left !important;
}

.dt-legal-content a {
  color: #8520d2;
  font-weight: 700;
}

@keyframes dtFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .dt-legal-content { 
    padding: 24px;
    text-align: justify !important; 
  }
}