/* ============================================
   UAI PARTIU - Design System
   Carnaval de Belo Horizonte
   ============================================ */

:root {
  /* Brand - Carnaval BH */
  --purple-900: #2d1b4e;
  --purple-700: #4a2c7a;
  --purple-500: #6b3fa0;
  --purple-300: #9d6ed4;
  --purple-100: #e8dcf4;
  --red: #e63946;
  --orange: #f77f00;
  --yellow: #fcbf49;
  --green: #2a9d8f;
  --blue: #457b9d;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #e9ecef;
  --gray-200: #dee2e6;
  --gray-400: #adb5bd;
  --gray-600: #495057;
  --gray-800: #212529;
  --black: #0d0d0d;

  /* Semantic */
  --color-primary: var(--purple-500);
  --color-primary-dark: var(--purple-700);
  --color-accent: var(--orange);
  --color-bg: var(--white);
  --color-bg-alt: var(--gray-50);
  --color-text: var(--gray-800);
  --color-text-muted: var(--gray-600);

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.5s;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 27, 78, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 27, 78, 0.1);
  --shadow-lg: 0 12px 40px rgba(45, 27, 78, 0.12);
  --shadow-xl: 0 24px 56px rgba(45, 27, 78, 0.16);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--purple-700);
  border-radius: var(--radius-full);
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-fast);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out);
  overflow-y: auto;
}

.nav.is-open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .nav {
    position: static;
    padding: 0;
    background: none;
    transform: none;
    overflow: visible;
  }
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-top: var(--space-2xl);
}

@media (min-width: 1024px) {
  .nav-list {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    gap: var(--space-xl);
  }
}

.nav-list a {
  font-weight: 500;
  color: var(--gray-800);
  font-size: 1.125rem;
}

@media (min-width: 1024px) {
  .nav-list a {
    font-size: 0.9375rem;
  }
}

.nav-list a:hover {
  color: var(--color-primary);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast), background var(--duration-fast), color var(--duration-fast);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(107, 63, 160, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  box-shadow: 0 6px 20px rgba(107, 63, 160, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-700);
  border-color: var(--purple-300);
}

.btn-outline:hover {
  background: var(--purple-100);
  border-color: var(--purple-500);
  color: var(--purple-700);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1rem;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-100) 0%, var(--white) 40%, var(--yellow) 100%);
  opacity: 0.5;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}

.shape-1 { width: 400px; height: 400px; background: var(--purple-300); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--orange); bottom: 20%; left: -80px; }
.shape-3 { width: 200px; height: 200px; background: var(--yellow); top: 40%; right: 10%; }
.shape-4 { width: 150px; height: 150px; background: var(--green); bottom: 10%; right: 20%; }

.hero-inner {
  position: relative;
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    text-align: left;
  }
}

.hero-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-700);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.1;
  color: var(--gray-800);
  margin-bottom: var(--space-sm);
}

.hero-title-line.accent {
  background: linear-gradient(135deg, var(--purple-500), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-700);
  margin-bottom: var(--space-md);
}

.hero-desc {
  color: var(--color-text-muted);
  max-width: 420px;
  margin: 0 auto var(--space-xl);
}

@media (min-width: 1024px) {
  .hero-desc {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 380px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--gray-400);
}

.scroll-indicator {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--purple-500);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
}

/* ========== Sections ========== */
.section {
  padding: var(--space-4xl) 0;
}

.section--light {
  background: var(--color-bg-alt);
}

.section--purple {
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  color: var(--white);
}

.section--gradient {
  background: linear-gradient(135deg, var(--purple-500), var(--orange));
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.section-header--light .section-badge,
.section-header--light .section-title,
.section-header--light .section-lead {
  color: var(--white);
}

.section-header--light .section-lead {
  opacity: 0.9;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-600);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: var(--purple-100);
  border-radius: var(--radius-full);
}

.section--purple .section-badge,
.section--gradient .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section-cta-text {
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-2xl);
}

.section-footer {
  text-align: center;
  margin-top: var(--space-2xl);
  font-size: 1rem;
  color: var(--color-text-muted);
}

.section-footer--light {
  color: rgba(255, 255, 255, 0.9);
}

/* Goals (Sobre) */
.goals {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .goals {
    grid-template-columns: repeat(3, 1fr);
  }
}

.goal-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal);
}

.goal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.goal-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.goal-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--gray-800);
}

.goal-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Split layout */
.split {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .split--reverse .split-content {
    order: 2;
  }

  .split--reverse .split-visual {
    order: 1;
  }
}

.split-content .section-badge {
  margin-bottom: var(--space-md);
}

.split-content .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.split-content .section-lead {
  margin-bottom: var(--space-lg);
}

.split-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.feature-list {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.feature-list li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.feature-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Benefits grid */
.benefits {
  margin-top: var(--space-3xl);
  padding-top: var(--space-3xl);
  border-top: 1px solid var(--gray-200);
}

.benefits-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--gray-800);
}

.benefits-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  padding: var(--space-lg);
  background: var(--purple-100);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--purple-900);
}

.benefit-item span::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}

/* Values (Segurança) */
.values-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform var(--duration-normal) var(--ease-out), background var(--duration-normal);
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.value-card p {
  font-size: 0.9375rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Culture */
.culture-features {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .culture-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .culture-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.culture-item {
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--purple-100), var(--white));
  border-radius: var(--radius-lg);
  border: 1px solid var(--purple-100);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.culture-item:hover {
  transform: scale(1.02);
}

.culture-label {
  font-weight: 600;
  color: var(--purple-900);
}

.culture-benefits {
  max-width: 560px;
  margin: 0 auto;
}

.culture-benefits p {
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--gray-800);
}

.culture-benefits ul {
  padding-left: var(--space-lg);
}

.culture-benefits li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
  position: relative;
  padding-left: var(--space-md);
}

.culture-benefits li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--purple-500);
  font-weight: 700;
}

/* Sponsors */
.sponsor-benefits {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .sponsor-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sponsor-card {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  font-weight: 500;
  transition: transform var(--duration-normal) var(--ease-out), background var(--duration-normal);
}

.sponsor-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Impact */
.impact-grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .impact-card--wide {
    grid-column: span 2;
  }
}

.impact-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal);
}

.impact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.impact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.impact-card p {
  font-weight: 500;
  color: var(--gray-800);
}

/* CTA Section */
.cta-section {
  padding: var(--space-4xl) 0;
  background: var(--color-bg-alt);
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-3xl);
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.cta-logo {
  width: 120px;
  height: auto;
  margin: 0 auto var(--space-lg);
  opacity: 0.9;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.cta-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

.cta-text {
  margin-bottom: var(--space-xl);
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

/* Footer */
.footer {
  padding: var(--space-2xl) 0;
  background: var(--gray-800);
  color: var(--gray-400);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.9375rem;
  max-width: 400px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--duration-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ========== Animations (scroll) ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fix purple-600 if not defined */
.section-badge {
  color: var(--purple-700);
}

.section--purple .section-badge {
  color: var(--white);
}

/* ========== Páginas jurídicas (Termos e Política de Privacidade) ========== */
.legal-page .legal-main {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  background: var(--color-bg-alt);
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: var(--space-xl);
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: var(--space-2xl) 0;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-700);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.35;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin: var(--space-md) 0 var(--space-lg);
  padding-left: var(--space-xl);
  list-style: disc;
}

.legal-content li {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.legal-closing {
  margin-top: var(--space-2xl);
  font-weight: 500;
  color: var(--gray-800);
}
