      :root {
        --bg: #eef2f7;
        --surface: #ffffff;
        --surface-2: #f7f9fc;
        --text: #173a74;
        --muted: #667792;
        --line: #d8e0ea;
        --hero-1: #0d1f32;
        --hero-2: #07111c;
        --link: #1f5fd0;
        --family: #2f67c8;
        --realestate: #1797a6;
        --labor: #d27b2f;
        --shadow: 0 12px 30px rgba(17, 40, 77, 0.08);
        --radius-xl: 24px;
        --radius-lg: 18px;
        --radius-md: 14px;
        --article-width: 760px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        background: var(--bg);
        color: var(--text);
      }

      img,
      svg {
        display: block;
      }

      a {
        color: inherit;
      }

      .page {
        min-height: 100vh;
        font-family: "Assistant", sans-serif;
      }