/* ============================================================
   VENADOS — Legal pages stylesheet
   Loaded ONLY by privacy.html and terms-of-service.html
   Light theme: body #FAF6EF · ink #2A241A · khaki #A0895C
   ============================================================ */

.legal-page {
  background-color: #FAF6EF;
  color: #2A241A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  background-color: #FAF6EF;
  color: #2A241A;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #5C4A2E;
  text-decoration: underline;
}

a:hover {
  color: #A0895C;
}

/* ============================================================
   LEGAL HEADER
   ============================================================ */
.legal-header {
  background-color: #5C4A2E;
  border-bottom: 4px solid #A0895C;
  padding: 64px 24px 56px;
}

.legal-header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header .legal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.legal-brand-marker {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #A0895C;
}

.legal-header .legal-brand a {
  color: #FDFBF7;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  text-decoration: none;
}

.legal-header h1 {
  color: #FDFBF7;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.legal-header .legal-subtitle {
  color: #D9CBB0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
}

.legal-meta {
  margin-top: 24px;
  color: #C9BDA6;
  font-size: 14px;
}

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.legal-toc {
  background-color: #D9CBB0;
  border-bottom: 1px solid #A0895C;
  padding: 32px 24px;
}

.legal-toc .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-toc h2 {
  color: #2A241A;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.legal-toc ol {
  list-style: none;
  columns: 2;
  column-gap: 32px;
}

.legal-toc ol li {
  padding: 5px 0;
  break-inside: avoid;
}

.legal-toc ol li a {
  color: #5C4A2E;
  text-decoration: none;
  font-size: 15px;
}

.legal-toc ol li a:hover {
  color: #2A241A;
  text-decoration: underline;
}

/* ============================================================
   LEGAL CONTENT
   ============================================================ */
.legal-content {
  padding: 64px 24px;
}

.legal-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scope isolation: force transparent backgrounds on any section
   that a shared stylesheet might try to paint. */
.legal-page .legal-content section {
  background-color: transparent !important;
}

.legal-content section {
  margin-bottom: 52px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  color: #5C4A2E;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.35;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D9CBB0;
}

.legal-content h3 {
  color: #2A241A;
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
}

.legal-content p {
  color: #2A241A;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 0 0 18px 24px;
  color: #2A241A;
}

.legal-content ul li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content strong {
  color: #5C4A2E;
}

/* ============================================================
   LEGAL FOOTER
   ============================================================ */
.legal-footer {
  background-color: #3A2E1C;
  padding: 36px 24px;
  text-align: center;
}

.legal-footer .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-footer p {
  color: #D9CBB0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-footer a {
  color: #FDFBF7;
  text-decoration: underline;
}

.legal-footer a:hover {
  color: #A0895C;
}

.legal-footer .legal-footer-brand {
  color: #FDFBF7;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
  .legal-header h1 {
    font-size: 30px;
  }

  .legal-toc ol {
    columns: 1;
  }

  .legal-content {
    padding: 40px 0;
  }

  .legal-header {
    padding: 48px 0 44px;
  }
}
