
      :root {
        /* paleta — base carvão/preto + osso, acento verde da marca (capa do livro) */
        --ink:        #0e0e11;   /* fundo base, quase preto frio */
        --ink-2:      #15151a;   /* fundo de seções */
        --surface:    #1b1b21;   /* cards */
        --surface-2:  #23232b;   /* cards hover / inputs */
        --line:       #33333d;   /* bordas */
        --line-soft:  #2a2a32;
        --bone:       #f4f1e9;   /* texto primário (off-white quente) */
        --bone-dim:   #c9c5ba;
        --muted:      #8d887d;   /* texto secundário */
        --muted-2:    #6c6860;
        --accent:     #33b14b;   /* verde da marca (capa: "CRIAR" / "50") */
        --accent-2:   #46c95f;   /* hover/realce, verde mais claro */
        --accent-soft:#33b14b22;
        --forest:     #16431f;   /* verde-floresta escuro (capa) */
        --good:       #33b14b;
        --warn:       #d9a441;

        --maxw: 1180px;
        --r-lg: 20px;
        --r-md: 14px;
        --r-sm: 10px;
        --font-display: 'Anton', Impact, sans-serif;
        --font-head: 'Archivo', system-ui, sans-serif;
        --font-body: 'Inter Tight', system-ui, sans-serif;
        --font-serif: 'Newsreader', Georgia, serif;
      }

      * { box-sizing: border-box; margin: 0; padding: 0; }
      html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
      body {
        background: var(--ink);
        color: var(--bone);
        font-family: var(--font-body);
        font-weight: 400;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
      }
      ::selection { background: var(--accent); color: #fff; }
      img { max-width: 100%; display: block; }
      a { color: inherit; text-decoration: none; }
      button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
      input { font-family: inherit; }

      .wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

      /* ====== type helpers ====== */
      .display {
        font-family: var(--font-display);
        font-weight: 400;
        line-height: 0.92;
        letter-spacing: 0.005em;
        text-transform: uppercase;
      }
      .eyebrow {
        font-family: var(--font-head);
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--muted);
      }
      .accent { color: var(--accent); }
      .serif-q { font-family: var(--font-serif); font-style: italic; }

      /* ====== top bar ====== */
      header.topbar {
        position: static;            /* nao fixada: rola junto com a pagina */
        background: var(--ink);
        border-bottom: 1px solid var(--line-soft);
      }
      .topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
      .brand { display: flex; align-items: baseline; gap: 10px; }
      .brand .mark {
        font-family: var(--font-head); font-weight: 900; letter-spacing: 0.04em;
        font-size: 18px; text-transform: uppercase;
      }
      .brand .mark b { color: var(--accent); }
      .brand .sub {
        font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
        color: var(--muted-2); font-weight: 600;
      }
      .topbar .nav-cta {
        font-family: var(--font-head); font-weight: 700; font-size: 13px;
        letter-spacing: 0.04em; padding: 9px 16px; border-radius: 999px;
        border: 1px solid var(--line); color: var(--bone-dim);
        transition: all .2s ease;
      }
      .topbar .nav-cta:hover { border-color: var(--accent); color: var(--bone); }
      @media (max-width: 640px) { .brand .sub, .topbar .nav-cta { display: none; } }

      /* ====== buttons ====== */
      .btn {
        display: inline-flex; align-items: center; justify-content: center; gap: 10px;
        font-family: var(--font-head); font-weight: 800; letter-spacing: 0.02em;
        font-size: 16px; padding: 17px 30px; border-radius: 999px;
        background: var(--accent); color: #fff;
        box-shadow: 0 14px 38px -12px var(--accent);
        transition: transform .18s ease, background .2s ease, box-shadow .2s ease;
        text-align: center;
      }
      .btn:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 20px 46px -12px var(--accent); }
      .btn:active { transform: translateY(0) scale(.99); }
      .btn .arr { font-size: 18px; line-height: 1; transition: transform .2s ease; }
      .btn:hover .arr { transform: translateX(4px); }
      .btn.ghost {
        background: transparent; color: var(--bone);
        border: 1px solid var(--line); box-shadow: none;
      }
      .btn.ghost:hover { border-color: var(--accent); background: var(--accent-soft); transform: none; }
      .btn.block { width: 100%; }
      .btn.lg { font-size: 17px; padding: 19px 34px; }

      /* ====== hero ====== */
      .hero { position: relative; padding: 72px 0 60px; overflow: hidden; }
      .hero::before {
        content: ''; position: absolute; inset: 0; z-index: 0;
        background:
          radial-gradient(900px 520px at 80% -8%, #33b14b1f, transparent 60%),
          radial-gradient(700px 700px at -5% 110%, #ffffff08, transparent 55%);
        pointer-events: none;
      }
      .hero-50 {
        position: absolute; right: -3%; top: 50%; transform: translateY(-50%);
        font-family: var(--font-display); font-size: clamp(280px, 42vw, 640px);
        line-height: .8; color: #ffffff05; z-index: 0; pointer-events: none;
        letter-spacing: -0.02em; user-select: none;
      }
      .hero .wrap { position: relative; z-index: 2; }
      .hero-tag {
        display: inline-flex; align-items: center; gap: 9px;
        border: 1px solid var(--line); border-radius: 999px;
        padding: 8px 15px; margin-bottom: 26px;
        font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
        letter-spacing: 0.06em; text-transform: uppercase; color: var(--bone-dim);
        background: #ffffff05;
      }
      .hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
      h1.hero-h {
        font-size: clamp(40px, 7.2vw, 88px);
        max-width: 16ch; margin-bottom: 8px;
      }
      h1.hero-h .line2 { color: var(--accent); }
      .hero-sub {
        font-family: var(--font-serif); font-style: italic;
        font-size: clamp(18px, 2.2vw, 23px); color: var(--bone-dim);
        max-width: 40ch; margin: 22px 0 14px; line-height: 1.45;
      }
      .hero-lede {
        font-size: clamp(15px, 1.7vw, 17.5px); color: var(--muted);
        max-width: 52ch; margin-bottom: 34px;
      }
      .hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
      .hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
      .hero-trust .t { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--bone-dim); }
      .hero-trust .t svg { flex: 0 0 auto; }

      /* ====== generic section ====== */
      section { position: relative; }
      .sec { padding: 84px 0; }
      .sec-alt { background: var(--ink-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
      .sec-head { max-width: 60ch; margin-bottom: 46px; }
      .sec-head h2 {
        font-family: var(--font-head); font-weight: 900; letter-spacing: -0.01em;
        font-size: clamp(28px, 4.2vw, 46px); line-height: 1.05; margin: 14px 0 16px;
      }
      .sec-head p { color: var(--muted); font-size: 16.5px; max-width: 56ch; }

      /* ====== authority ====== */
      .auth-grid { display: grid; grid-template-columns: 0.92fr 1.4fr; gap: 48px; align-items: center; }
      @media (max-width: 880px) { .auth-grid { grid-template-columns: 1fr; gap: 34px; } }
      .auth-photo {
        position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg);
        background:
          linear-gradient(150deg, #26262e, #131318);
        border: 1px solid var(--line); overflow: hidden;
        display: flex; align-items: flex-end; justify-content: center;
      }
      .auth-photo .mono {
        font-family: var(--font-display); font-size: 230px; color: #ffffff09;
        position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%);
      }
      .auth-photo .ph-cap {
        position: relative; z-index: 2; width: 100%;
        padding: 18px 20px; background: linear-gradient(transparent, #0c0c0fcc 55%);
        font-size: 12.5px; color: var(--bone-dim); letter-spacing: .02em;
      }
      .auth-photo .ph-cap b { color: var(--bone); font-weight: 700; }
      .auth-photo .ph-note {
        position: absolute; top: 14px; left: 14px; z-index: 2;
        font-family: var(--font-head); font-weight: 700; font-size: 10.5px;
        letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2);
        border: 1px solid var(--line); border-radius: 6px; padding: 5px 9px;
      }
      .auth-body p { color: var(--bone-dim); font-size: 16.5px; margin-bottom: 16px; }
      .auth-body p b { color: var(--bone); font-weight: 600; }
      .auth-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
      @media (max-width: 520px){ .auth-stats { grid-template-columns: 1fr; } }
      .stat {
        border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 16px;
        background: #ffffff04;
      }
      .stat .n { font-family: var(--font-display); font-size: 38px; line-height: 1; color: var(--bone); }
      .stat .n .accent { color: var(--accent); }
      .stat .l { font-size: 12.5px; color: var(--muted); margin-top: 8px; line-height: 1.35; }

      /* ====== problem cards ====== */
      .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
      @media (max-width: 880px){ .cards { grid-template-columns: 1fr 1fr; } }
      @media (max-width: 560px){ .cards { grid-template-columns: 1fr; } }
      .card {
        border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 22px;
        background: var(--surface); transition: border-color .2s ease, transform .2s ease, background .2s ease;
      }
      .card:hover { border-color: #4a4a55; transform: translateY(-3px); background: var(--surface-2); }
      .card .ix {
        font-family: var(--font-display); font-size: 22px; color: var(--accent);
        margin-bottom: 14px; display: block;
      }
      .card h3 { font-family: var(--font-head); font-weight: 800; font-size: 18.5px; margin-bottom: 9px; letter-spacing: -.01em; }
      .card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

      /* ====== big quote / manifesto ====== */
      .manifesto { padding: 96px 0; background: var(--ink-2); border-block: 1px solid var(--line-soft); }
      .manifesto .q-mark { font-family: var(--font-display); color: var(--accent); font-size: 70px; line-height: .6; }
      .manifesto blockquote {
        font-family: var(--font-head); font-weight: 900; letter-spacing: -0.015em;
        font-size: clamp(26px, 4.6vw, 52px); line-height: 1.04; max-width: 20ch; margin: 18px 0 22px;
      }
      .manifesto blockquote .accent { color: var(--accent); }
      .manifesto cite { font-style: normal; color: var(--muted); font-size: 14.5px; letter-spacing: .04em; }

      /* ====== pillars (método) ====== */
      .pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
      @media (max-width: 980px){ .pillars { grid-template-columns: repeat(2,1fr); } }
      @media (max-width: 520px){ .pillars { grid-template-columns: 1fr; } }
      .pillar {
        border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 20px 18px;
        background: #ffffff04; position: relative; overflow: hidden;
      }
      .pillar .pn { font-family: var(--font-display); font-size: 30px; color: #ffffff12; position: absolute; right: 12px; top: 6px; }
      .pillar h4 { font-family: var(--font-head); font-weight: 800; font-size: 16px; margin-bottom: 7px; }
      .pillar p { font-size: 13px; color: var(--muted); line-height: 1.5; }
      .pillar .bar { width: 26px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 14px; }

      /* ====== transformation split ====== */
      .split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
      @media (max-width: 760px){ .split { grid-template-columns: 1fr; } }
      .split .col { padding: 34px 30px; }
      .split .a { background: #16161b; border-right: 1px solid var(--line); }
      @media (max-width: 760px){ .split .a { border-right: 0; border-bottom: 1px solid var(--line); } }
      .split .b { background: linear-gradient(160deg, #13241a, #0f1b13); }
      .split h4 { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
      .split .a h4 { color: var(--muted); }
      .split .b h4 { color: var(--accent); }
      .split li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line-soft); font-size: 15px; color: var(--bone-dim); align-items: flex-start; }
      .split li:last-child { border-bottom: 0; }
      .split li .ic { flex: 0 0 auto; margin-top: 3px; }

      /* ====== diagnostic / quiz ====== */
      .diag { padding: 92px 0; background:
        radial-gradient(700px 420px at 50% -10%, #33b14b14, transparent 65%), var(--ink); }
      .quiz-shell {
        max-width: 720px; margin: 0 auto;
        border: 1px solid var(--line); border-radius: 24px;
        background: linear-gradient(180deg, #1a1a20, #141419);
        box-shadow: 0 40px 120px -40px #000;
        overflow: hidden;
      }
      .quiz-top { padding: 22px 28px 0; }
      .quiz-progress-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
      .quiz-step-label { font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
      .quiz-step-label .accent { color: var(--accent); }
      .quiz-bar { height: 4px; border-radius: 4px; background: var(--line-soft); overflow: hidden; }
      .quiz-bar > i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 4px; transition: width .45s cubic-bezier(.4,0,.2,1); }
      .quiz-body { padding: 30px 28px 30px; }
      @media (max-width: 520px){ .quiz-body, .quiz-top { padding-left: 18px; padding-right: 18px; } }

      .q-eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
      .q-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(21px, 3.4vw, 28px); line-height: 1.18; letter-spacing: -.01em; margin-bottom: 8px; }
      .q-help { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; max-width: 52ch; }

      .opts { display: flex; flex-direction: column; gap: 11px; }
      .opt {
        display: flex; align-items: center; gap: 14px; text-align: left;
        border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px;
        background: var(--surface); transition: all .16s ease; width: 100%;
      }
      .opt:hover { border-color: #54545f; background: var(--surface-2); transform: translateX(2px); }
      .opt.sel { border-color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
      .opt .tick {
        flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
        border: 2px solid var(--line); display: flex; align-items: center; justify-content: center;
        transition: all .16s ease;
      }
      .opt.sel .tick { border-color: var(--accent); background: var(--accent); }
      .opt.sel .tick::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
      .opt .ot { flex: 1; }
      .opt .ot b { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--bone); }
      .opt .ot span { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

      .field { margin-bottom: 16px; }
      .field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .02em; color: var(--bone-dim); margin-bottom: 7px; }
      .field input {
        width: 100%; border: 1px solid var(--line); border-radius: var(--r-md);
        background: var(--surface); color: var(--bone); font-size: 15.5px; padding: 14px 16px;
        transition: border-color .16s ease;
      }
      .field input::placeholder { color: var(--muted-2); }
      .field input:focus { outline: none; border-color: var(--accent); }
      .field .hint { font-size: 12px; color: var(--muted-2); margin-top: 6px; }

      /* range slider */
      .range-wrap { margin: 8px 0 6px; }
      .range-vals { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }
      .range-big { font-family: var(--font-display); font-size: 60px; line-height: 1; color: var(--accent); text-align: center; margin-bottom: 6px; }
      input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: var(--line-soft); outline: none; }
      input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 4px solid #1a1a20; box-shadow: 0 0 0 1px var(--accent); }
      input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 4px solid #1a1a20; }

      .quiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 26px; }
      .quiz-nav .back { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--muted); padding: 10px 4px; transition: color .16s; }
      .quiz-nav .back:hover { color: var(--bone); }
      .quiz-nav .back[hidden] { visibility: hidden; }
      .err { color: var(--accent-2); font-size: 13.5px; margin-top: 14px; font-weight: 600; min-height: 1px; }

      /* result */
      .result-badge {
        display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head);
        font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
        padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
      }
      .result-badge.ok { color: var(--accent); border: 1px solid var(--accent); background: var(--accent-soft); }
      .result-badge.hold { color: var(--warn); border: 1px solid #d9a44155; background: #d9a44114; }
      .result-h { font-family: var(--font-head); font-weight: 900; font-size: clamp(24px,4vw,34px); line-height: 1.1; letter-spacing: -.01em; margin-bottom: 8px; }
      .result-h .accent { color: var(--accent); }
      .result-lede { color: var(--bone-dim); font-size: 16px; margin-bottom: 22px; }
      .leak-box {
        border: 1px solid var(--line); border-left: 3px solid var(--accent);
        border-radius: var(--r-sm); padding: 18px 20px; background: #ffffff05; margin-bottom: 22px;
      }
      .leak-box .lk { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
      .leak-box .lv { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--bone); }
      .leak-box p { font-size: 14px; color: var(--muted); margin-top: 8px; }
      .result-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
      .chip { font-size: 12px; color: var(--bone-dim); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; background: #ffffff04; }
      .chip b { color: var(--accent); font-weight: 700; }
      .result-fine { font-size: 12.5px; color: var(--muted-2); margin-top: 16px; text-align: center; }

      /* exclusions */
      .excl { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 32px; background: var(--surface); }
      .excl h3 { font-family: var(--font-head); font-weight: 800; font-size: 20px; margin-bottom: 16px; }
      .excl ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
      @media (max-width: 620px){ .excl ul { grid-template-columns: 1fr; } }
      .excl li { display: flex; gap: 11px; font-size: 14.5px; color: var(--muted); align-items: flex-start; }
      .excl li .x { color: var(--muted-2); flex: 0 0 auto; margin-top: 2px; }

      /* final cta */
      .final { padding: 90px 0; text-align: center; }
      .final h2 { font-family: var(--font-display); font-size: clamp(34px, 6vw, 72px); line-height: .98; margin-bottom: 18px; }
      .final h2 .accent { color: var(--accent); }
      .final p { color: var(--muted); font-size: 17px; max-width: 46ch; margin: 0 auto 30px; }

      /* footer */
      footer { border-top: 1px solid var(--line-soft); padding: 40px 0 60px; }
      .foot-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
      .foot-brand { font-family: var(--font-head); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: 15px; }
      .foot-brand b { color: var(--accent); }
      .foot-row .meta { font-size: 12px; color: var(--muted-2); letter-spacing: .03em; max-width: 60ch; }

      .hidden { display: none !important; }

      /* fade for quiz steps */
      .fade-in { animation: fade .35s ease both; }
      @keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

    /* ====== dedicated diagnostic page ====== */
    .dpage { min-height: calc(100vh - 62px); display: flex; align-items: center; }
    .dback { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--muted); padding: 10px 4px; transition: color .16s ease; }
    .dback:hover { color: var(--bone); }
    .dfoot-note { text-align: center; color: var(--muted-2); font-size: 12.5px; margin: 18px auto 6px; max-width: 46ch; }

    /* ====== foto real (com fallback p/ monograma) ====== */
    /* a <img> fica por cima do monograma; onerror remove a img e o monograma aparece */
    .auth-photo .auth-img {
      position: absolute; inset: 0; z-index: 1;
      width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
    }

    /* ====== card de autoridade no resultado ====== */
    .author-card {
      display: flex; align-items: center; gap: 14px;
      border: 1px solid var(--line); border-radius: 14px;
      padding: 14px 16px; background: #ffffff05; margin: 22px 0 18px;
    }
    .author-card .ph {
      position: relative; flex: 0 0 auto; width: 60px; height: 60px;
      border-radius: 50%; overflow: hidden;
      background: linear-gradient(150deg, #1d5e32, #0f2417);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 1px var(--line);
    }
    .author-card .ph img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
    .author-card .ph .mn { font-family: var(--font-display); font-size: 24px; color: #ffffff2a; }
    .author-card .meta-a { flex: 1; }
    .author-card .nm { font-family: var(--font-head); font-weight: 800; font-size: 15.5px; color: var(--bone); }
    .author-card .ro { font-size: 12.5px; color: var(--muted); margin: 1px 0 5px; }
    .author-card .st { font-size: 12px; color: var(--bone-dim); }
    .author-card .st b { color: var(--accent); font-weight: 700; }
    .reassure { font-size: 13px; color: var(--muted); margin: 0 0 18px; line-height: 1.5; }
    .reassure b { color: var(--bone-dim); font-weight: 600; }

    /* ====== resultado em formato de relatório (largo, estilo João) ====== */
    .quiz-shell.shell-result { max-width: 1040px; background: transparent; border: 0; box-shadow: none; }
    .quiz-shell.shell-result .quiz-body { padding: 6px 0 0; }

    .rep-head { text-align: center; max-width: 760px; margin: 0 auto 30px; }
    .rep-ic { width: 58px; height: 58px; border-radius: 50%; border: 1px solid var(--accent);
      background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
    .rep-eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
    .rep-h { font-family: var(--font-head); font-weight: 900; letter-spacing: -.01em; font-size: clamp(25px, 4vw, 40px); line-height: 1.08; }
    .rep-h .accent { color: var(--accent); }
    .rep-subline { color: var(--bone-dim); font-size: 16px; margin-top: 12px; }
    .rep-subline b { color: var(--bone); }

    .rep-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 16px; }
    @media (max-width: 760px) { .rep-cards { grid-template-columns: 1fr; } }
    .rep-card { border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: var(--surface); }
    .rep-card .rc-l { display: flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
    .rep-card .rc-l svg { color: var(--accent); flex: 0 0 auto; }
    .rep-card .rc-v { font-family: var(--font-head); font-weight: 800; font-size: 21px; line-height: 1.12; color: var(--bone); margin-bottom: 10px; }
    .rep-card .rc-s { font-size: 13px; color: var(--muted); line-height: 1.5; }

    .rep-panel { border: 1px solid var(--line); border-radius: 20px; padding: 30px; background: linear-gradient(180deg, #17171c, #131318); }
    @media (max-width: 560px) { .rep-panel { padding: 22px; } }
    .rep-lede { color: var(--bone-dim); font-size: 16.5px; line-height: 1.6; max-width: 70ch; margin: 0 auto 22px; text-align: center; }
    .rep-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    @media (max-width: 680px) { .rep-sub-grid { grid-template-columns: 1fr; } }
    .rep-sub2 { border: 1px solid var(--line-soft); border-radius: 14px; padding: 20px; background: #ffffff04; }
    .rep-sub2 h4 { font-family: var(--font-head); font-weight: 800; font-size: 15px; margin-bottom: 9px; color: var(--bone); }
    .rep-sub2 p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
    .rep-next { border: 1px solid var(--accent); border-radius: 14px; padding: 22px; background: var(--accent-soft); margin-bottom: 22px; }
    .rep-next h4 { font-family: var(--font-head); font-weight: 800; font-size: 15px; margin-bottom: 10px; color: var(--bone); }
    .rep-next p { font-size: 14px; color: var(--bone-dim); line-height: 1.55; }
    .rep-next p + p { margin-top: 10px; }
    .rep-next p b { color: var(--accent); font-weight: 700; }
    .rep-cta { max-width: 480px; margin: 0 auto; }
    .rep-foot { text-align: center; font-size: 12px; color: var(--muted-2); letter-spacing: .03em; margin-top: 26px; }
