/* ============================================================
   STUDIUM — Legal Pages (Privacidade, Termos, Cookies)
   ============================================================ */

.legal-page {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.legal-header {
  text-align: center;
  margin-bottom: 56px;
}
.legal-header h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.legal-date {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(10,21,16,.75);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 48px 48px 56px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.legal-content section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-content section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.legal-content h2 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin: 20px 0 10px;
}
.legal-content p {
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
}
.legal-content ul li strong {
  color: rgba(255,255,255,.85);
}
.legal-content a {
  color: #6EE7B7;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: #A7F3D0;
}

.legal-contact {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 12px;
}
.legal-contact p {
  margin-bottom: 4px;
}

/* Cookie tables */
.cookie-table {
  overflow-x: auto;
  margin: 12px 0 20px;
}
.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cookie-table thead tr {
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.cookie-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.cookie-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
}
.cookie-table tbody tr:hover {
  background: rgba(255,255,255,.03);
}
.cookie-table td:first-child {
  color: #6EE7B7;
  font-weight: 600;
  font-family: 'Inter', monospace;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-content {
    padding: 28px 20px 36px;
    border-radius: 16px;
  }
  .legal-header h1 {
    font-size: 1.8rem;
  }
}
