  :root {
    --bg-primary: #faf8f4;
    --bg-secondary: #f0ebe2;
    --bg-dark: #1e2a1f;
    --text-primary: #1a1814;
    --text-secondary: #6b6358;
    --text-light: #f0ebe2;
    --accent: #5c7a4a;
    --accent-hover: #4a6b3a;
    --border: #ddd5c8;
    --surface: #ffffff;
    --font-display: 'Cormorant', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-primary);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .icon {
    width: 24px; height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  /* ── NAV ────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4vw;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    font-size: 0.88rem; font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-lang {
    display: flex; gap: 0.5rem;
    margin-left: 1.5rem; padding-left: 1.5rem;
    border-left: 1px solid var(--border);
  }
  .nav-lang a { font-size: 0.78rem !important; padding: 0.25rem 0.5rem; border-radius: 4px; }
  .nav-lang a.active { background: var(--accent); color: var(--surface) !important; }
  .nav-cta {
    background: var(--accent) !important; color: var(--surface) !important;
    padding: 0.6rem 1.4rem; border-radius: 6px; transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--accent-hover) !important; }

  /* ── PAGE HEADER ─────────────────────────── */
  .page-header {
    padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 6rem);
    padding-top: calc(clamp(4rem, 8vw, 7rem) + 80px);
    background: var(--bg-secondary);
    text-align: center;
  }
  .page-header .section-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1rem;
    justify-content: center;
  }
  .page-header .section-tag::before { content: ''; width: 20px; height: 2px; background: var(--accent); }
  .page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500; line-height: 1.2;
    color: var(--text-primary); margin-bottom: 1rem;
  }
  .page-header p {
    font-size: 1.05rem; color: var(--text-secondary);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
  }

  /* ── CONTENIDO LEGAL ─────────────────────── */
  .legal-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 6rem);
    max-width: 820px;
    margin: 0 auto;
  }
  .legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 500;
    color: var(--text-primary);
    margin-top: 2.5rem; margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
  }
  .legal-section h3 {
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem; margin-bottom: 0.5rem;
  }
  .legal-section p {
    font-size: 0.95rem; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 0.8rem;
  }
  .legal-section ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem; line-height: 1.8;
  }
  .legal-section li { margin-bottom: 0.3rem; }
  .legal-section a {
    color: var(--accent); text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  .legal-section a:hover { border-bottom-color: var(--accent); }
  .legal-updated {
    margin-top: 3rem; padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem; color: var(--text-secondary); opacity: 0.7;
  }
  .legal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
  .legal-card p { margin-bottom: 0.3rem; }
  .legal-card p:last-child { margin-bottom: 0; }

  /* ── FOOTER ──────────────────────────────── */
  footer {
    padding: 3rem clamp(2rem, 5vw, 6rem);
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-left { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
  .footer-left span { color: var(--accent); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.82rem; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-primary); }

  /* ── RESPONSIVE ──────────────────────────── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    footer { flex-direction: column; text-align: center; }
  }

  @media (prefers-reduced-motion: no-preference) {
    .fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.7s ease forwards; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  }
