/* reset e tipografia base — copiados de layout.php */
    /* ── Scrollbar oculta ────────────────────────────────────────── */
    ::-webkit-scrollbar { display: none; }
    * { -ms-overflow-style: none; scrollbar-width: none; }

    /* ── Reset ───────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: var(--qs-bg);
        color: #1a1a2e;
        min-height: 100vh;
        overflow-x: hidden;
    }
    a { color: var(--qs-primary); text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { max-width: 100%; }
