/* ==========================================
   ESTILO DA PÁGINA DMCA (Com Toggle de Idioma)
   ========================================== */
.dt-legal-wrapper {
  max-width: 700px !important;
  margin: 40px auto;
  padding: 0 15px;
  animation: dtFadeIn 0.5s ease;
}

/* Cabeçalho com alinhamento para o Toggle */
.dt-dmca-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dt-dmca-titles h1 {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.dt-dmca-titles span {
  font-size: 12px;
  color: #8520d2;
  font-weight: 800;
  text-transform: uppercase;
}

/* Toggle de Idioma (Inspirado no seu print) */
.dt-lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dt-lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.2s;
}

.dt-lang-btn.active {
  background: #8520d2; /* Roxo MangaLove */
  color: #fff;
}

/* Caixa de Conteúdo Justificada */
.dt-legal-content {
  background: #1c1c1f;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.8;
  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;
}

.dt-legal-content h2::before {
  content: "";
  width: 4px;
  height: 20px;
  background: #8520d2;
  border-radius: 2px;
}

.dt-legal-content ul {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 20px 20px 40px;
  border-radius: 12px;
  margin-bottom: 25px;
  text-align: left !important;
}

@keyframes dtFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .dt-dmca-top { flex-direction: column; gap: 20px; text-align: center; }
  .dt-legal-content { padding: 24px; }
}