    :root {
      --green: #95BB30;
      --green-lt: #CEE632;
      --green-dk: #6a8f1a;
      --green-bg: rgba(149, 187, 48, .1);
      --white: #fff;
      --black: #050505;
      --beige-light: #FBF9F4;
      --beige-card: #f5efe4;
    }

    body {
      font-family: Arial, sans-serif;
      color: #1A1A18;
      cursor: none;
      overflow-x: hidden;
      background-color: var(--beige-light);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/feTurbulence%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    }

    #navbar .nav-links a {
      font-family: 'Dosis', sans-serif !important;
      font-size: .85rem !important;
      font-weight: 600 !important;
      letter-spacing: .05em !important;
    }

    @media(max-width:768px) {
      body {
        cursor: auto;
      }

      .cursor,
      .cursor-ring {
        display: none !important;
      }
    }

    .cursor {
      position: fixed;
      width: 8px;
      height: 8px;
      background: #95BB30;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s;
    }

    .cursor-ring {
      position: fixed;
      width: 32px;
      height: 32px;
      border: 1.5px solid rgba(149, 187, 48, .45);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .35s, height .35s;
    }

    body.cursor-hover .cursor {
      width: 16px;
      height: 16px;
    }

    body.cursor-hover .cursor-ring {
      width: 48px;
      height: 48px;
      border-color: #95BB30;
    }

    /* Navbar negro visible desde el inicio */
    #navbar {
      background: rgba(26, 26, 24, 0.95);
      backdrop-filter: blur(14px);
    }

    /* CONTENIDO LEGAL */
    .legal-section {
      padding: 140px 0 100px;
      position: relative;
    }

    .legal-container {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .legal-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .legal-eyebrow {
      font-family: 'Arial Black', Arial, sans-serif; font-size: .75rem; font-weight: 900;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--green);
      display: block;
      margin-bottom: 12px;
    }

    .legal-title {
      font-family: 'Arial Black', Arial, sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
      line-height: 1.1;
      color: #1A1A18;
      margin: 0 0 16px;
    }

    .legal-title em {
      font-family: 'Dancing Script', cursive; font-style: normal;
      color: var(--green-dk); font-size: 1.25em;
    }

    .legal-meta {
      font-family: 'Dosis', sans-serif;
      font-size: .85rem;
      color: var(--soft-txt);
      font-weight: 500;
      letter-spacing: .05em;
    }

    .legal-card {
      background: #FFFFFF;
      border: 1px solid rgba(149, 187, 48, 0.15);
      border-radius: 12px;
      padding: 48px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    }

    .legal-block {
      margin-bottom: 36px;
    }

    .legal-block:last-child {
      margin-bottom: 0;
    }

    .legal-subtitle {
      font-family: 'Arial Black', Arial, sans-serif; font-size: 1.6rem; font-weight: 900;
      color: var(--green-dk);
      margin-bottom: 16px;
      border-bottom: 1px solid rgba(149, 187, 48, 0.12);
      padding-bottom: 8px;
    }

    .legal-text {
      font-size: .95rem;
      font-weight: 400;
      color: #3D3D3A;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .legal-text strong {
      color: #1A1A18;
      font-weight: 600;
    }

    .legal-list {
      margin-bottom: 16px;
      padding-left: 20px;
      list-style-type: none;
    }

    .legal-list li {
      position: relative;
      font-size: .95rem;
      font-weight: 400;
      color: #3D3D3A;
      line-height: 1.8;
      margin-bottom: 8px;
      padding-left: 16px;
    }

    .legal-list li::before {
      content: "•";
      color: var(--green);
      font-weight: bold;
      display: inline-block;
      width: 1em;
      margin-left: -1em;
      position: absolute;
    }

    .legal-link {
      color: var(--green-dk);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s;
      border-bottom: 1px solid rgba(149, 187, 48, 0.3);
    }

    .legal-link:hover {
      color: var(--green);
      border-bottom-color: var(--green);
    }

    @media (max-width: 768px) {
      .legal-card {
        padding: 30px 20px;
      }
      .legal-section {
        padding: 110px 0 60px;
      }
    }
  
