/* ──────────────────────────────────────────────────────────────────────────
   LEGAL PAGES (privacidade, termos)
   ─────────────────────────────────────────────────────────────────────── */

.legal {
  padding-top: var(--s-48);
  padding-bottom: var(--s-80);
}
@media (min-width: 768px) {
  .legal { padding-top: var(--s-64); padding-bottom: var(--s-128); }
}

.legal__content {
  max-width: 760px;
}

.legal__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  font-size: var(--fs-13);
  color: var(--c-muted);
  margin-bottom: var(--s-32);
  flex-wrap: wrap;
}
.legal__breadcrumb a {
  color: var(--c-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-150) var(--ease-out),
              border-color var(--dur-150) var(--ease-out);
}
.legal__breadcrumb a:hover {
  color: var(--c-text);
  border-bottom-color: var(--c-text);
}
.legal__breadcrumb [aria-current] {
  color: var(--c-text);
  font-weight: var(--fw-500);
}

.legal__header {
  margin-bottom: var(--s-48);
  padding-bottom: var(--s-32);
  border-bottom: 1px solid var(--c-border);
}
.legal__header .eyebrow { margin-bottom: var(--s-16); }

.legal__title {
  font-size: var(--fs-32);
  font-weight: var(--fw-800);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-tight);
  color: var(--c-text);
  margin-bottom: var(--s-16);
}
@media (min-width: 768px) {
  .legal__title { font-size: var(--fs-40); }
}

.legal__lead {
  font-size: var(--fs-18);
  color: var(--c-text-2);
  line-height: var(--lh-base);
  margin-bottom: var(--s-16);
}

.legal__meta {
  font-size: var(--fs-13);
  color: var(--c-muted);
  margin: 0;
}

.legal__section {
  margin-bottom: var(--s-40);
}

.legal__section h2 {
  font-size: var(--fs-20);
  font-weight: var(--fw-700);
  letter-spacing: var(--tracking-snug);
  color: var(--c-text);
  margin-bottom: var(--s-16);
}
@media (min-width: 768px) {
  .legal__section h2 { font-size: var(--fs-24); }
}

.legal__section p {
  font-size: var(--fs-15);
  color: var(--c-text-2);
  line-height: var(--lh-loose);
  margin-bottom: var(--s-12);
}
@media (min-width: 768px) {
  .legal__section p { font-size: var(--fs-16); }
}

.legal__section ul,
.legal__section ol {
  margin: 0 0 var(--s-12) 0;
  padding-left: var(--s-24);
  list-style: disc;
  font-size: var(--fs-15);
  color: var(--c-text-2);
  line-height: var(--lh-loose);
}
.legal__section ol { list-style: decimal; }
.legal__section li {
  margin-bottom: var(--s-8);
}
.legal__section li::marker {
  color: var(--c-accent);
}

.legal__section a {
  color: var(--c-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--c-accent-100);
  transition: border-color var(--dur-150) var(--ease-out);
}
.legal__section a:hover { border-bottom-color: var(--c-accent); }

.legal__section strong {
  color: var(--c-text);
  font-weight: var(--fw-600);
}

.legal__back {
  margin-top: var(--s-64);
  padding-top: var(--s-32);
  border-top: 1px solid var(--c-border);
}
