/* ── Legal pages (privacidade.html / termos.html) ─────────────── */

.legal-hero {
  background: linear-gradient(135deg, #0c1e38 0%, #0d2a3a 100%);
  padding: 120px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-hero__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: .75rem;
}
.legal-hero__title {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .75rem;
  line-height: 1.2;
}
.legal-hero__meta {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
}

/* ── Body ── */
.legal-body {
  padding: 4rem 0 6rem;
  background: #f8f9fb;
}
.legal-content {
  max-width: 800px;
}

/* ── Sections ── */
.legal-section {
  margin-bottom: 3rem;
}
.legal-section h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 .9rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--c-teal);
  display: inline-block;
}
.legal-section p,
.legal-section li {
  font-size: .95rem;
  line-height: 1.85;
  color: #3a4a5c;
  margin-bottom: .65rem;
}
.legal-section ul,
.legal-section ol {
  padding-left: 1.4rem;
  margin-bottom: .65rem;
}
.legal-section li { margin-bottom: .35rem; }
.legal-section strong { color: #1a2d42; }
.legal-section a {
  color: var(--c-teal);
  text-decoration: none;
}
.legal-section a:hover { text-decoration: underline; }

/* ── Highlight box ── */
.legal-box {
  background: rgba(0,180,216,.06);
  border-left: 4px solid var(--c-teal);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  font-size: .9rem;
  line-height: 1.75;
  color: #2c3e50;
}
.legal-box strong { color: var(--c-navy); }

/* ── Table of contents ── */
.legal-toc {
  background: #fff;
  border: 1px solid #e0e8ef;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.legal-toc__title {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin: 0 0 .85rem;
}
.legal-toc ol {
  padding-left: 1.2rem;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.legal-toc li {
  font-size: .88rem;
  line-height: 1.7;
  color: #4a6080;
  margin-bottom: .2rem;
}
.legal-toc a {
  color: var(--c-teal);
  text-decoration: none;
}
.legal-toc a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .legal-hero__title { font-size: 1.75rem; }
  .legal-toc ol { columns: 1; }
  .legal-body { padding: 2.5rem 0 4rem; }
}
