/* ================= LEGAL SECTION ================= */

.legal-section {
  width: 100%;
  padding: 70px 20px;
  border-top: 1px solid var(--border);
  background: #050505; /* REMOVIDO O FUNDO AZUL */
  color: rgba(255, 255, 255, 0.45);
}

/* Container central */

.container-legal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Título */

.legal-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

/* Grid */

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Colunas */

.legal-column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Itens */

.legal-item h3 {
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.legal-item p {
  font-size: 0.75rem;
  line-height: 1.8;
  text-align: justify;
  color: rgba(255, 255, 255, 0.4);
}

/* Ênfase */

.legal-item em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
}

/* Links */

.legal-item a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  border-bottom: 1px dashed var(--border);
  transition: all 0.2s ease;
}

.legal-item a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

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

@media (max-width: 900px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .legal-title {
    font-size: 1.25rem;
  }
}
