    :root {
      --azul:    #0047FF;
      --azul-bg: #00112b;
      --azul-2:  #00194a;
      --naranja: #FF6A00;
      --gris:    #8ba8cc;
      --white:   #f4f8ff;
    }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: #1a2540;
    }
    .navbar {
      background: rgba(0,17,43,.97);
      border-bottom: 1px solid rgba(0,71,255,.3);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .navbar-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.75rem;
      color: var(--white) !important;
    }
    .navbar-brand span { color: var(--naranja); }

    /* Hero de la página legal */
    .legal-hero {
      background: var(--azul-bg);
      padding: 4rem 0 3rem;
      border-bottom: 1px solid rgba(0,71,255,.3);
    }
    .legal-hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
    }
    .legal-hero h1 span { color: var(--naranja); }
    .legal-badge {
      display: inline-block;
      background: rgba(0,71,255,.15);
      border: 1px solid rgba(0,71,255,.4);
      color: #6fa3ff;
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .3rem .9rem;
      border-radius: 2px;
      margin-bottom: 1rem;
    }
    .last-update {
      color: var(--gris);
      font-size: .82rem;
      margin-top: .75rem;
    }

    /* Contenido legal */
    .legal-content {
      padding: 4rem 0 5rem;
    }
    .legal-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid #e2e8f0;
    }
    .legal-section:last-child {
      border-bottom: none;
    }
    .legal-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background: rgba(0,71,255,.08);
      border-radius: 6px;
      color: var(--azul);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      margin-right: .75rem;
      flex-shrink: 0;
    }
    .legal-section h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #1a2540;
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    .legal-section p {
      font-size: .95rem;
      line-height: 1.8;
      color: #3a4a60;
      margin-bottom: .75rem;
    }
    .legal-section ul {
      padding-left: 1.25rem;
      margin-bottom: .75rem;
    }
    .legal-section ul li {
      font-size: .95rem;
      line-height: 1.8;
      color: #3a4a60;
      margin-bottom: .3rem;
    }
    .highlight-box {
      background: rgba(0,71,255,.05);
      border-left: 3px solid var(--azul);
      border-radius: 0 6px 6px 0;
      padding: 1rem 1.25rem;
      margin: 1rem 0;
    }
    .highlight-box p { margin: 0; font-size: .88rem; }

    /* Sidebar */
    .legal-sidebar {
      position: sticky;
      top: 100px;
    }
    .sidebar-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 1rem;
    }
    .sidebar-card h6 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--azul);
      margin-bottom: 1rem;
    }
    .sidebar-link {
      display: block;
      font-size: .85rem;
      color: #3a4a60;
      text-decoration: none;
      padding: .4rem 0;
      border-bottom: 1px solid #f0f4ff;
      transition: color .2s;
    }
    .sidebar-link:hover { color: var(--naranja); }
    .sidebar-link:last-child { border-bottom: none; }

    /* Footer */
    footer {
      background: var(--azul-bg);
      border-top: 1px solid rgba(0,71,255,.25);
      padding: 2rem 0;
      color: var(--gris);
      font-size: .82rem;
    }
    .footer-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--white);
    }
    .footer-brand span { color: var(--naranja); }
 