/* ============================================
   LEGAL PAGES
   Páginas de políticas y términos legales
   ============================================ */

.legal-main {
  padding: var(--space-16) var(--space-8);
}

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

/* ============================================
   EYEBROW
   ============================================ */

.legal-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

/* ============================================
   HEADLINE
   ============================================ */

.legal-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
  letter-spacing: 0.05em;
}

/* ============================================
   SECTIONS
   ============================================ */

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.legal-section p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

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

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.legal-section li {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-secondary);
  padding-left: var(--space-6);
  position: relative;
}

.legal-section li::before {
  content: "•";
  position: absolute;
  left: var(--space-2);
  color: var(--color-brick);
  font-weight: 700;
}

.legal-section a {
  color: var(--color-brick);
  text-decoration: underline;
  transition: opacity var(--transition-base);
}

.legal-section a:hover {
  opacity: 0.7;
}

.legal-section strong {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ============================================
   CTA
   ============================================ */

.legal-cta {
  padding-top: var(--space-12);
  border-top: 1px solid rgba(154, 150, 144, 0.2);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.legal-eyebrow {
  animation: fadeUp 0.8s var(--ease-out-expo) 0.1s both;
}

.legal-headline {
  animation: fadeUp 0.8s var(--ease-out-expo) 0.25s both;
}

.legal-updated {
  animation: fadeUp 0.8s var(--ease-out-expo) 0.4s both;
}

.legal-sections {
  animation: fadeUp 0.8s var(--ease-out-expo) 0.55s both;
}

.legal-cta {
  animation: fadeUp 0.8s var(--ease-out-expo) 0.7s both;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .legal-main {
    padding: var(--space-12) var(--space-4);
  }

  .legal-sections {
    gap: var(--space-8);
  }

  .legal-section li {
    padding-left: var(--space-4);
  }

  .legal-section li::before {
    left: 0;
  }
}
