/* ========== LEGAL PAGES (termos-de-uso, termos-plataforma, politica-de-privacidade) ========== */

body {
  background: var(--surface);
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.legal-container {
  max-width: 860px;
  margin: 100px auto 60px auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(15,55,89,0.08);
  padding: 52px 48px;
}

.legal-badge {
  display: inline-block;
  background: linear-gradient(90deg, #F5631A, #1A6CF5);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.legal-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0F3759;
  margin-bottom: 8px;
  line-height: 1.2;
}

.legal-date {
  font-size: 0.95rem;
  color: #4297D3;
  margin-bottom: 36px;
  font-weight: 500;
}

/* Used only on politica-de-privacidade.html */
.legal-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2a3550;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: #f4f6fb;
  border-left: 4px solid #1A6CF5;
  border-radius: 0 12px 12px 0;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F3759;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F5631A;
  display: inline-block;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #2a3550;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 10px 0 10px 20px;
  padding: 0;
}

.legal-section ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: #2a3550;
  margin-bottom: 6px;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.legal-section ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #F5631A;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
}

.legal-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.legal-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4297D3;
  text-decoration: none;
  border: 1.5px solid #4297D3;
  padding: 7px 18px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.legal-nav a:hover,
.legal-nav a.active {
  background: #0F3759;
  color: #fff;
  border-color: #0F3759;
}

@media (max-width: 650px) {
  .legal-container {
    margin: 80px 12px 40px 12px;
    padding: 28px 18px;
  }
  .legal-title {
    font-size: 1.5rem;
  }
}
