    :root {
      --bg: #F4F6F9;
      --bg-2: #FFFFFF;
      --ink: #0B1B2E;
      --ink-2: #1F2A3A;
      --muted: #5B6577;
      --muted-2: #8A93A3;
      --line: #E6EAF0;
      --line-2: #D8DDE6;
      --accent: #1E7AE6;
      --accent-soft: color-mix(in oklab, var(--accent) 12%, transparent);
      --accent-ink: #FFFFFF;
      --cyan: #3DC4F3;
      --ok: #0E9F6E;
      --shadow-sm: 0 1px 0 rgba(11,27,46,0.04), 0 1px 2px rgba(11,27,46,0.04);
      --shadow-md: 0 1px 0 rgba(11,27,46,0.04), 0 8px 24px -8px rgba(11,27,46,0.10);
      --radius: 14px;
      --radius-lg: 22px;
      --maxw: 1200px;
    }

    [data-theme="dark"] {
      --bg: #07101D;
      --bg-2: #0E1A2C;
      --ink: #F2F5FA;
      --ink-2: #DDE3EE;
      --muted: #95A0B5;
      --muted-2: #5E6B82;
      --line: #1A2740;
      --line-2: #243453;
      --shadow-sm: 0 1px 0 rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.4);
      --shadow-md: 0 1px 0 rgba(0,0,0,0.3), 0 12px 32px -8px rgba(0,0,0,0.6);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    [hidden] { display: none !important; }

    html {
      scroll-behavior: smooth;
    }

    html, body {
      background: var(--bg);
      color: var(--ink);
      font-family: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      font-feature-settings: "ss01", "cv11";
      line-height: 1.5;
    }

    /* Zoom 90% em desktop large — replica o que o navegador faz com Ctrl+-.
       Aplicado só >= 1280px pra não apertar tablet/mobile.
       Em 2026 zoom é suportado em Chrome/Safari/Edge/Firefox 126+. */
    @media (min-width: 1280px) {
      body { zoom: 0.9; }
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

    /* ───────── NAV ───────── */
    .nav-bar {
      position: sticky; top: 0; z-index: 50;
      background: color-mix(in oklab, var(--bg) 80%, transparent);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .nav-brand {
      display: inline-flex; align-items: center;
    }
    .nav-brand img {
      height: 36px; width: auto; display: block;
    }
    .nav-brand .logo-light { display: none; }
    [data-theme="dark"] .nav-brand .logo-dark { display: none; }
    [data-theme="dark"] .nav-brand .logo-light { display: block; }
    footer.site .nav-brand img { height: 42px; }
    .nav-links {
      display: flex; gap: 28px;
      font-size: 14px; color: var(--muted);
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-cta { display: flex; align-items: center; gap: 8px; }

    @media (max-width: 820px) {
      .nav-links { display: none; }
    }

    /* ───────── BUTTONS ───────── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 0 16px; height: 40px;
      border-radius: 10px;
      font: inherit; font-size: 14px; font-weight: 500;
      letter-spacing: -0.005em;
      cursor: pointer;
      transition: 0.18s ease;
      border: 1px solid transparent;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--ink); color: #fff;
    }
    .btn-primary:hover { background: var(--accent); }
    [data-theme="dark"] .btn-primary { background: var(--accent); }
    [data-theme="dark"] .btn-primary:hover { background: color-mix(in oklab, var(--accent) 80%, white); }

    .btn-ghost {
      background: transparent; color: var(--ink-2);
      border-color: var(--line-2);
    }
    .btn-ghost:hover { background: var(--bg-2); }

    .btn-link {
      background: transparent; color: var(--ink-2);
      padding: 0 8px;
    }
    .btn-link:hover { color: var(--accent); }

    .btn-lg { height: 48px; padding: 0 20px; font-size: 15px; border-radius: 12px; }

    /* ───────── HERO ───────── */
    .hero {
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(60% 50% at 80% 0%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%),
        radial-gradient(40% 30% at 0% 30%, color-mix(in oklab, var(--cyan) 10%, transparent), transparent 70%);
      pointer-events: none;
    }
    .hero-inner { position: relative; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 12px;
      border: 1px solid var(--line-2);
      background: var(--bg-2);
      border-radius: 999px;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 11.5px; font-weight: 500;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .eyebrow .dot {
      width: 6px; height: 6px; border-radius: 999px;
      background: var(--ok);
      box-shadow: 0 0 0 3px color-mix(in oklab, var(--ok) 20%, transparent);
    }

    .hero h1 {
      font-size: clamp(40px, 5.8vw, 68px);
      line-height: 1.02;
      letter-spacing: -0.035em;
      font-weight: 600;
      margin: 22px 0 22px;
      max-width: 18ch;
    }
    .hero h1 em {
      font-family: "Instrument Serif", serif;
      font-style: italic;
      font-weight: 400;
      color: var(--accent);
      letter-spacing: -0.01em;
    }
    .hero-sub {
      max-width: 56ch;
      font-size: 18px;
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 32px;
    }
    .hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
    .hero-meta {
      margin-top: 22px;
      font-size: 13px;
      color: var(--muted-2);
      display: flex; gap: 18px; flex-wrap: wrap;
    }
    .hero-meta span::before {
      content: "✓"; color: var(--ok); margin-right: 6px; font-weight: 600;
    }

    /* ───────── PRODUCT MOCK ───────── */
    .mock-wrap {
      margin-top: 64px;
      position: relative;
      padding: 12px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 18%, transparent), transparent 60%);
    }
    .mock {
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: 16px;
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }
    .mock-bar {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 16px;
      border-bottom: 1px solid var(--line);
      background: var(--bg);
    }
    .mock-bar .tl { display: flex; gap: 6px; }
    .mock-bar .tl i {
      width: 10px; height: 10px; border-radius: 999px; background: var(--line-2);
      display: inline-block;
    }
    .mock-bar .crumb {
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 12px; color: var(--muted);
      background: var(--bg-2);
      border: 1px solid var(--line);
      padding: 4px 10px; border-radius: 6px;
      margin-left: 8px;
    }
    .mock-img {
      width: 100%; height: auto; display: block;
      border-top: 1px solid var(--line);
    }
    .mock-carousel { display: grid; }
    .mock-slide {
      grid-area: 1 / 1;
      width: 100%; height: auto;
      border-top: 1px solid var(--line);
      opacity: 0;
      transition: opacity 0.7s ease;
    }
    .mock-slide.active { opacity: 1; }
    .carousel-nav {
      display: flex; justify-content: center; align-items: center;
      gap: 12px; margin-top: 20px;
    }
    .carousel-dots {
      display: flex; align-items: center;
      gap: 8px;
    }
    .carousel-dots .dot {
      width: 8px; height: 8px; border-radius: 999px;
      background: var(--line-2); border: none; cursor: pointer; padding: 0;
      transition: background 0.25s, width 0.25s;
    }
    .carousel-dots .dot.active { background: var(--accent); width: 24px; }
    .carousel-btn {
      width: 32px; height: 32px; border-radius: 999px;
      background: var(--bg-2); border: 1px solid var(--line-2);
      color: var(--ink-2); font-size: 18px; line-height: 1;
      cursor: pointer; display: grid; place-items: center;
      transition: 0.15s ease; flex-shrink: 0;
    }
    .carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

    .mock-grid {
      display: grid;
      grid-template-columns: 220px 1fr;
      min-height: 460px;
    }
    .mock-side {
      border-right: 1px solid var(--line);
      padding: 16px;
      font-size: 13px;
    }
    .mock-side .group { color: var(--muted-2); text-transform: uppercase; font-size: 10.5px; letter-spacing: 0.1em; font-family: "Geist Mono", monospace; margin: 14px 0 6px; }
    .mock-side a {
      display: flex; align-items: center; gap: 10px;
      padding: 7px 10px; border-radius: 8px;
      color: var(--ink-2);
    }
    .mock-side a.active { background: var(--accent-soft); color: var(--accent); font-weight: 500; }
    .mock-side .dotc { width: 6px; height: 6px; border-radius: 2px; background: currentColor; opacity: 0.6; }

    .mock-main { padding: 22px 24px; display: flex; flex-direction: column; gap: 20px; }
    .mock-h {
      display: flex; align-items: end; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    }
    .mock-h h3 { font-size: 18px; letter-spacing: -0.01em; font-weight: 600; }
    .mock-h .pill {
      font-family: "Geist Mono", monospace; font-size: 11px;
      padding: 4px 8px; border-radius: 6px;
      background: var(--bg); border: 1px solid var(--line); color: var(--muted);
    }
    .kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
    .kpi { padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); }
    .kpi .lbl { font-size: 11.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
    .kpi .val { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-top: 6px; }
    .kpi .delta { font-size: 12px; margin-top: 4px; font-family: "Geist Mono", monospace; }
    .kpi .delta.up { color: var(--ok); }
    .kpi .delta.down { color: #D14343; }

    .chart {
      border: 1px solid var(--line); border-radius: 12px; padding: 18px;
      background: var(--bg-2); flex: 1; min-height: 200px;
      display: flex; flex-direction: column; gap: 14px;
    }
    .chart-head { display: flex; justify-content: space-between; align-items: center; }
    .chart-head h4 { font-size: 13px; font-weight: 500; color: var(--ink-2); }
    .chart-head .legend { display: flex; gap: 12px; font-size: 11px; color: var(--muted); font-family: "Geist Mono", monospace; }
    .chart-head .legend span::before {
      content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 2px; vertical-align: middle; margin-right: 6px;
    }
    .chart-head .legend .a::before { background: var(--accent); }
    .chart-head .legend .b::before { background: var(--cyan); }

    .bars { display: flex; align-items: flex-end; gap: 14px; height: 140px; padding-top: 6px; }
    .bars .col { flex: 1; display: flex; flex-direction: column; gap: 2px; align-items: stretch; justify-content: end; }
    .bars .col .b1 { background: var(--accent); border-radius: 4px 4px 0 0; }
    .bars .col .b2 { background: var(--cyan); border-radius: 0 0 4px 4px; }
    .bars .lbl { font-size: 10px; color: var(--muted-2); text-align: center; font-family: "Geist Mono", monospace; margin-top: 6px; }

    @media (max-width: 820px) {
      .mock-grid { grid-template-columns: 1fr; }
      .mock-side { display: none; }
      .kpis { grid-template-columns: repeat(2,1fr); }
      .hero { padding-top: 40px; }
    }

    /* ───────── STATS STRIP ───────── */
    .strip {
      padding: 60px 0 20px;
    }
    .strip-label {
      text-align: center;
      font-family: "Geist Mono", monospace;
      font-size: 11.5px; color: var(--muted-2);
      text-transform: uppercase; letter-spacing: 0.12em;
      margin-bottom: 28px;
    }
    .strip-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 28px 0;
    }
    .strip-cell {
      text-align: center;
      padding: 0 8px;
    }
    .strip-cell .n {
      font-size: 36px; letter-spacing: -0.03em; font-weight: 600;
    }
    .strip-cell .n em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--accent); }
    .strip-cell .l { font-size: 13px; color: var(--muted); margin-top: 4px; }

    @media (max-width: 820px) {
      .strip-grid { grid-template-columns: repeat(2,1fr); gap: 28px 16px; }
    }

    /* ───────── SECTION HEADER ───────── */
    section.block { padding: 100px 0; }
    .sec-head { max-width: 720px; margin-bottom: 56px; }
    .sec-tag {
      font-family: "Geist Mono", monospace;
      font-size: 11.5px; color: var(--accent);
      text-transform: uppercase; letter-spacing: 0.12em;
      margin-bottom: 14px;
    }
    .sec-head h2 {
      font-size: clamp(30px, 3.6vw, 44px);
      letter-spacing: -0.025em;
      font-weight: 600;
      line-height: 1.08;
    }
    .sec-head h2 em {
      font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--accent);
    }
    .sec-head p {
      margin-top: 14px;
      font-size: 17px; color: var(--muted);
      max-width: 60ch;
    }

    /* ───────── FEATURES ───────── */
    .features {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .feature {
      background: var(--bg-2); padding: 22px 26px;
      display: flex; flex-direction: column; gap: 9px;
      min-height: 168px;
    }
    .feature .ico {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--accent-soft); color: var(--accent);
      display: grid; place-items: center;
      font-family: "Geist Mono", monospace; font-size: 14px; font-weight: 500;
      margin-bottom: 2px;
    }
    .feature h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
    .feature p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

    @media (max-width: 820px) {
      .features { grid-template-columns: 1fr; }
    }

    /* ───────── PLANS ───────── */
    .plans {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    }
    .plan {
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 26px 24px;
      display: flex; flex-direction: column;
      position: relative;
      transition: 0.2s ease;
    }
    .plan:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .plan.is-featured {
      border-color: var(--ink);
      background: var(--ink);
      color: #fff;
    }
    [data-theme="dark"] .plan.is-featured {
      background: var(--accent);
      border-color: var(--accent);
    }
    .plan.is-featured .muted, .plan.is-featured p, .plan.is-featured .plan-feat li { color: rgba(255,255,255,0.78); }
    .plan.is-featured .plan-tag { background: rgba(255,255,255,0.14); color: #fff; }
    .plan.is-featured .plan-cta { background: #fff; color: var(--ink); }
    .plan.is-featured .plan-cta:hover { background: var(--cyan); color: var(--ink); }

    .plan-tag {
      display: inline-flex; align-self: flex-start;
      font-family: "Geist Mono", monospace;
      font-size: 10.5px; letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 8px; border-radius: 6px;
      background: var(--accent-soft); color: var(--accent);
      margin-bottom: 14px;
    }
    .plan-name {
      font-size: 22px; letter-spacing: -0.02em; font-weight: 600;
    }
    .plan-desc {
      margin-top: 6px;
      font-size: 13.5px; color: var(--muted); line-height: 1.5;
      min-height: 44px;
    }
    .plan-price {
      margin: 22px 0 4px;
      display: flex; align-items: baseline; gap: 6px;
    }
    .plan-price .v {
      font-size: 36px; letter-spacing: -0.03em; font-weight: 600;
    }
    .plan-price .u {
      font-size: 13px; color: var(--muted);
    }
    .plan-price .pre {
      font-size: 13px; color: var(--muted); margin-right: 2px;
    }
    .plan-price-was {
      margin: 22px 0 -16px;
      font-size: 12.5px; color: var(--muted);
      letter-spacing: 0;
      display: inline-flex; align-items: baseline; gap: 4px;
    }
    .plan-price-was s {
      text-decoration: line-through;
      text-decoration-thickness: 1.25px;
      text-decoration-color: color-mix(in oklab, var(--muted) 65%, transparent);
    }
    .plan.is-featured .plan-price-was { color: rgba(255,255,255,0.55); }
    .plan.is-featured .plan-price-was s {
      text-decoration-color: rgba(255,255,255,0.4);
    }
    .plan-promo {
      display: inline-flex; align-items: center; gap: 7px;
      margin-top: 10px;
      font-family: "Geist Mono", monospace;
      font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 5px 10px; border-radius: 6px;
      background: color-mix(in oklab, #E11D48 12%, transparent);
      color: #E11D48;
      align-self: flex-start;
    }
    .plan-promo::before {
      content: ""; width: 6px; height: 6px; border-radius: 999px;
      background: #E11D48;
      box-shadow: 0 0 0 0 rgba(225,29,72,0.55);
      animation: plan-promo-pulse 1.8s ease-out infinite;
    }
    @keyframes plan-promo-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(225,29,72,0.55); }
      70%  { box-shadow: 0 0 0 8px rgba(225,29,72,0); }
      100% { box-shadow: 0 0 0 0 rgba(225,29,72,0); }
    }
    .plan.is-featured .plan-promo {
      background: rgba(255,255,255,0.14);
      color: #fff;
    }
    .plan.is-featured .plan-promo::before {
      background: #fff;
      box-shadow: 0 0 0 0 rgba(255,255,255,0.55);
      animation-name: plan-promo-pulse-light;
    }
    @keyframes plan-promo-pulse-light {
      0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
      70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }
    .plan-cta {
      margin-top: 22px;
      display: flex; align-items: center; justify-content: center;
      height: 42px; border-radius: 10px;
      background: var(--ink); color: #fff;
      font-weight: 500; font-size: 14px;
      transition: 0.2s ease;
    }
    .plan-cta:hover { background: var(--accent); }
    .plan-feat {
      margin-top: 22px;
      list-style: none;
      display: flex; flex-direction: column; gap: 9px;
      font-size: 13.5px;
      flex: 1;
    }
    .plan-feat li {
      padding-left: 22px; position: relative;
      color: var(--ink-2);
      line-height: 1.45;
    }
    .plan-feat li::before {
      content: "";
      position: absolute; left: 0; top: 7px;
      width: 12px; height: 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      background-image: linear-gradient(var(--accent), var(--accent));
      background-size: 6px 1.5px;
      background-position: center;
      background-repeat: no-repeat;
    }
    .plan-includes {
      font-family: "Geist Mono", monospace;
      font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--muted-2);
      margin-top: 22px; margin-bottom: -10px;
    }

    @media (max-width: 1080px) { .plans { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 600px) { .plans { grid-template-columns: 1fr; } }

    /* ───────── HOW IT WORKS ───────── */
    .steps {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .step {
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
    }
    .step-n {
      font-family: "Instrument Serif", serif; font-style: italic;
      font-size: 56px; line-height: 1;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .step h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
    .step p { color: var(--muted); font-size: 14.5px; }
    @media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

    /* ───────── FAQ ───────── */
    .faq-list {
      border-top: 1px solid var(--line);
    }
    details.faq-item {
      border-bottom: 1px solid var(--line);
      padding: 22px 0;
    }
    details.faq-item > summary {
      list-style: none;
      cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      gap: 18px;
      font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
    }
    details.faq-item > summary::-webkit-details-marker { display: none; }
    details.faq-item > summary::after {
      content: "+"; font-family: "Geist Mono", monospace;
      font-size: 22px; color: var(--muted); font-weight: 400;
      line-height: 1; transition: transform 0.2s;
    }
    details.faq-item[open] > summary::after { content: "−"; color: var(--accent); }
    details.faq-item .a {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px; line-height: 1.6;
      max-width: 72ch;
    }

    /* ───────── CTA ───────── */
    .cta-band {
      margin: 0 0 80px;
      background: var(--ink);
      color: #fff;
      border-radius: 24px;
      padding: 56px 48px;
      display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
      position: relative; overflow: hidden;
    }
    .cta-band::after {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(60% 80% at 110% 20%, color-mix(in oklab, var(--accent) 55%, transparent), transparent 60%);
      pointer-events: none;
    }
    .cta-band > * { position: relative; z-index: 1; }
    .cta-band h2 {
      font-size: clamp(28px, 3vw, 40px);
      letter-spacing: -0.025em; font-weight: 600; line-height: 1.1;
    }
    .cta-band h2 em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--cyan); }
    .cta-band p { color: rgba(255,255,255,0.7); margin-top: 12px; max-width: 50ch; font-size: 16px; }
    .cta-actions { display: flex; flex-direction: column; gap: 10px; }
    .cta-actions .btn { width: 100%; }
    .cta-actions .btn-primary { background: #fff; color: var(--ink); }
    .cta-actions .btn-primary:hover { background: var(--cyan); }
    .cta-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
    .cta-actions .btn-ghost:hover { background: rgba(255,255,255,0.08); }
    @media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; padding: 40px 28px; } }

    /* ───────── FOOTER ───────── */
    footer.site {
      padding: 60px 0 40px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13.5px;
    }
    footer.site .row {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
      margin-bottom: 40px;
    }
    footer.site h5 {
      font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--ink-2); font-family: "Geist Mono", monospace; font-weight: 500;
      margin-bottom: 14px;
    }
    footer.site ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    footer.site ul.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
    footer.site a:hover { color: var(--accent); }
    footer.site .brand-blurb { color: var(--muted); max-width: 36ch; font-size: 13.5px; line-height: 1.55; }
    footer.site .copy {
      border-top: 1px solid var(--line); padding-top: 24px;
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
      color: var(--muted-2); font-family: "Geist Mono", monospace; font-size: 12px;
    }
    @media (max-width: 820px) { footer.site .row { grid-template-columns: 1fr 1fr; } }

    /* ───────── NEWSLETTER ───────── */
    .newsletter {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      padding: 56px 0;
    }
    .newsletter-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    }
    .newsletter-copy h3 {
      font-size: clamp(22px, 2.6vw, 30px);
      letter-spacing: -0.02em; font-weight: 600; line-height: 1.1;
      margin-bottom: 8px;
    }
    .newsletter-copy h3 em {
      font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--accent);
    }
    .newsletter-copy p { color: var(--muted); font-size: 15px; line-height: 1.55; }
    .newsletter-form { display: flex; flex-direction: column; gap: 10px; }
    .newsletter-fields { display: flex; gap: 8px; }
    .newsletter-fields input {
      flex: 1; min-width: 0; height: 44px; padding: 0 14px;
      border: 1px solid var(--line-2); border-radius: 10px;
      background: var(--bg-2); color: var(--ink);
      font: inherit; font-size: 14px;
      transition: border-color 0.15s; outline: none;
    }
    .newsletter-fields input:focus { border-color: var(--accent); }
    .newsletter-fields input::placeholder { color: var(--muted-2); }
    .newsletter-submit {
      height: 44px; padding: 0 20px; border-radius: 10px;
      background: var(--ink); color: #fff;
      font: inherit; font-size: 14px; font-weight: 500;
      border: none; cursor: pointer; white-space: nowrap;
      transition: 0.18s ease; flex-shrink: 0;
    }
    .newsletter-submit:hover { background: var(--accent); }
    .newsletter-submit:disabled { opacity: 0.65; cursor: not-allowed; }
    .newsletter-legal { font-size: 12px; color: var(--muted-2); }
    .newsletter-legal a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
    .newsletter-feedback {
      font-size: 13px; padding: 10px 12px; border-radius: 8px;
    }
    .newsletter-feedback.ok {
      background: color-mix(in oklab, var(--ok) 10%, transparent);
      border: 1px solid color-mix(in oklab, var(--ok) 25%, transparent);
      color: var(--ok);
    }
    .newsletter-feedback.err {
      background: color-mix(in oklab, #D14343 10%, transparent);
      border: 1px solid color-mix(in oklab, #D14343 25%, transparent);
      color: #D14343;
    }
    @media (max-width: 820px) {
      .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
      .newsletter-fields { flex-direction: column; }
    }

    /* ───────── TOAST ───────── */
    .toast {
      position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
      z-index: 2000;
      background: var(--ink); color: #fff;
      padding: 13px 20px; border-radius: 12px;
      display: flex; align-items: center; gap: 14px;
      font-size: 14px;
      box-shadow: var(--shadow-md);
      max-width: 520px; width: calc(100% - 48px);
      animation: toastIn 0.3s ease;
    }
    .toast.ok { background: var(--ok); }
    .toast-msg { flex: 1; }
    .toast-x {
      background: transparent; border: none; color: inherit;
      opacity: 0.7; cursor: pointer; font-size: 18px; padding: 0 4px; line-height: 1;
    }
    .toast-x:hover { opacity: 1; }
    @keyframes toastIn {
      from { opacity: 0; transform: translateX(-50%) translateY(10px); }
      to   { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    /* ───────── MODAL ───────── */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(7,16,29,0.72);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.2s ease;
    }
    .modal-overlay.open { opacity: 1; pointer-events: auto; }
    .modal-box {
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      padding: 36px 32px;
      max-width: 480px; width: 100%;
      position: relative;
      transform: translateY(18px);
      transition: transform 0.25s ease;
    }
    .modal-overlay.open .modal-box { transform: translateY(0); }
    .modal-close {
      position: absolute; top: 14px; right: 14px;
      background: transparent; border: none;
      font-size: 20px; color: var(--muted);
      cursor: pointer; padding: 4px 8px; border-radius: 6px; line-height: 1;
    }
    .modal-close:hover { color: var(--ink); background: var(--bg); }
    .modal-header { margin-bottom: 22px; }
    .modal-plan-tag {
      display: inline-flex;
      font-family: "Geist Mono", monospace;
      font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 4px 8px; border-radius: 6px;
      background: var(--accent-soft); color: var(--accent);
      margin-bottom: 10px;
    }
    .modal-title {
      font-size: 21px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 5px;
    }
    .modal-desc { color: var(--muted); font-size: 14px; line-height: 1.5; }
    .modal-form { display: flex; flex-direction: column; gap: 14px; }
    .field-group { display: flex; flex-direction: column; gap: 5px; }
    .field-group label { font-size: 13px; font-weight: 500; color: var(--ink-2); }
    .field-group .opt { color: var(--muted); font-weight: 400; }
    .field-group input {
      height: 42px; padding: 0 12px;
      border: 1px solid var(--line-2); border-radius: 10px;
      background: var(--bg); color: var(--ink);
      font: inherit; font-size: 14px;
      transition: border-color 0.15s; outline: none;
    }
    .field-group input:focus { border-color: var(--accent); }
    .field-group input::placeholder { color: var(--muted-2); }
    .checkbox-row {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: var(--muted); cursor: pointer;
    }
    .checkbox-row input {
      width: 16px; height: 16px; margin-top: 1px; flex-shrink: 0;
      cursor: pointer; accent-color: var(--accent);
    }
    .modal-error {
      background: color-mix(in oklab, #D14343 10%, transparent);
      border: 1px solid color-mix(in oklab, #D14343 30%, transparent);
      border-radius: 8px; padding: 10px 12px;
      font-size: 13px; color: #D14343;
    }
    .modal-submit { width: 100%; }
    .modal-submit:disabled { opacity: 0.65; cursor: not-allowed; }

    /* CNES lookup */
    .cnes-input-wrap { position: relative; }
    .cnes-input-wrap input { padding-right: 36px; font-family: "Geist Mono", monospace; letter-spacing: 0.05em; }
    .cnes-spinner {
      position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
      width: 14px; height: 14px; border-radius: 50%;
      border: 2px solid var(--line-2); border-top-color: var(--accent);
      animation: cnes-spin 0.7s linear infinite;
    }
    @keyframes cnes-spin { to { transform: translateY(-50%) rotate(360deg); } }
    .cnes-info {
      font-size: 12px; line-height: 1.45; padding: 8px 10px;
      border-radius: 8px; border: 1px solid transparent;
      display: flex; align-items: flex-start; gap: 8px;
    }
    .cnes-info.ok    { background: color-mix(in oklab, var(--ok) 8%, transparent);    border-color: color-mix(in oklab, var(--ok) 25%, transparent);    color: var(--ok); }
    .cnes-info.warn  { background: color-mix(in oklab, #D14343 8%, transparent);      border-color: color-mix(in oklab, #D14343 25%, transparent);      color: #B83838; }
    .cnes-info-icon  { flex-shrink: 0; font-weight: 700; line-height: 1.45; }
    .cnes-info-body  { flex: 1; }
    .cnes-info .estab-name { font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
    .cnes-info .estab-meta { color: var(--muted); font-size: 11.5px; }
    .modal-legal { font-size: 12px; color: var(--muted-2); text-align: center; }
    .modal-legal a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
    .modal-success { text-align: center; padding: 24px 0 8px; }
    .modal-success-icon {
      width: 48px; height: 48px; border-radius: 999px;
      background: color-mix(in oklab, var(--ok) 12%, transparent);
      color: var(--ok); font-size: 22px;
      display: grid; place-items: center;
      margin: 0 auto 16px;
    }
    .modal-success h3 { font-size: 20px; letter-spacing: -0.015em; margin-bottom: 6px; }
    .modal-success p { color: var(--muted); font-size: 14px; }

    @media (max-width: 520px) { .modal-box { padding: 28px 20px; } }

    /* ═══════════════════════════════════════════════════════════════
       INSTITUCIONAL — adições (site "Conheça a plataforma")
       ═══════════════════════════════════════════════════════════════ */

    /* Sub-hero (páginas internas) */
    .subhero { padding: 64px 0 8px; position: relative; overflow: hidden; }
    .subhero::before {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(50% 60% at 85% -10%, color-mix(in oklab, var(--accent) 12%, transparent), transparent 70%);
    }
    .subhero-inner { position: relative; max-width: 760px; }
    .subhero h1 {
      font-size: clamp(34px, 4.6vw, 52px); line-height: 1.04;
      letter-spacing: -0.03em; font-weight: 600; margin: 18px 0 16px;
    }
    .subhero h1 em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--accent); }
    .subhero p { font-size: 18px; color: var(--muted); line-height: 1.55; max-width: 60ch; }

    /* Breadcrumb / voltar */
    .crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); font-family: "Geist Mono", monospace; }
    .crumbs a:hover { color: var(--accent); }
    .crumbs .sep { opacity: 0.5; }

    /* Sec-head centralizado (home — destaque dos módulos) */
    .modules-block { padding-top: 28px; }
    .sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
    .sec-head--center p { margin-left: auto; margin-right: auto; }

    /* Grid de módulos — card deck em destaque (coração da home) */
    .modgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .modcard {
      position: relative;
      background: var(--bg-2);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 26px 24px 22px;
      display: flex; flex-direction: column; gap: 10px;
      min-height: 208px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .modcard::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--accent);
      transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
    }
    .modcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--accent) 35%, var(--line)); }
    .modcard:hover::before { transform: scaleX(1); }
    .modcard .ico {
      width: 42px; height: 42px; border-radius: 11px;
      background: var(--accent-soft); color: var(--accent);
      display: grid; place-items: center; margin-bottom: 8px;
    }
    .modcard .ico svg { width: 21px; height: 21px; }
    .modcard h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
    .modcard p { color: var(--muted); font-size: 14px; line-height: 1.55; flex: 1; }
    .modcard .go { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
    .modcard:hover .go { gap: 10px; }

    /* Card "em breve" — novos módulos em desenvolvimento */
    .modcard.is-soon { border-style: dashed; background: var(--bg); box-shadow: none; cursor: default; }
    .modcard.is-soon::before { display: none; }
    .modcard.is-soon:hover { transform: none; box-shadow: none; border-color: var(--line-2); }
    .modcard.is-soon .ico { background: var(--bg-2); color: var(--muted-2); border: 1px solid var(--line-2); }
    .modcard.is-soon h3 { color: var(--ink-2); }
    .modcard .go.go--soon {
      color: var(--muted-2); font-family: "Geist Mono", monospace; font-size: 10.5px;
      text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500;
    }
    .modcard.is-soon:hover .go.go--soon { gap: 6px; }
    @media (max-width: 980px) { .modgrid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 600px) { .modgrid { grid-template-columns: 1fr; } }

    /* Linha alternada: texto + visual */
    .split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; padding: 64px 0; border-top: 1px solid var(--line); }
    .split:first-of-type { border-top: none; }
    .split.reverse .split-visual { order: -1; }
    .split-copy .tag { font-family: "Geist Mono", monospace; font-size: 11.5px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
    .split-copy h2 { font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.025em; font-weight: 600; line-height: 1.1; }
    .split-copy h2 em { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--accent); }
    .split-copy p { margin-top: 14px; color: var(--muted); font-size: 16px; line-height: 1.6; }
    @media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; } .split.reverse .split-visual { order: 0; } }

    /* Lista de bullets com check */
    .bullets { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
    .bullets li { position: relative; padding-left: 26px; color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
    .bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 700; }

    /* Moldura de screenshot (envolve um print real .shot-img ou um placeholder) */
    .shot { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); overflow: hidden; }
    .shot-bar { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--bg); }
    .shot-bar .tl { display: flex; gap: 6px; }
    .shot-bar .tl i { width: 10px; height: 10px; border-radius: 999px; background: var(--line-2); display: inline-block; }
    .shot-bar .crumb { font-family: "Geist Mono", monospace; font-size: 12px; color: var(--muted); background: var(--bg-2); border: 1px solid var(--line); padding: 4px 10px; border-radius: 6px; margin-left: 6px; }
    .shot-img { width: 100%; height: auto; display: block; }
    /* Placeholder enquanto não há print real */
    .shot-ph { aspect-ratio: 16 / 10; display: grid; place-items: center; gap: 10px; background:
        linear-gradient(135deg, color-mix(in oklab, var(--accent) 7%, transparent), transparent 60%),
        repeating-linear-gradient(45deg, var(--bg), var(--bg) 12px, var(--bg-2) 12px, var(--bg-2) 24px);
      color: var(--muted-2); text-align: center; padding: 24px; }
    .shot-ph .ph-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
    .shot-ph .ph-ico svg { width: 22px; height: 22px; }
    .shot-ph .ph-t { font-size: 13px; font-weight: 500; color: var(--muted); }
    .shot-ph .ph-s { font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }

    /* Faixa de destaques (mini-stats dentro de página de funcionalidade) */
    .hl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 8px; }
    .hl { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
    .hl .ico { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 12px; }
    .hl .ico svg { width: 18px; height: 18px; }
    .hl h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 5px; }
    .hl p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
    @media (max-width: 820px) { .hl-grid { grid-template-columns: 1fr; } }

    /* Navegação entre páginas (anterior / próximo) */
    .pagenav { display: flex; justify-content: space-between; gap: 16px; padding: 40px 0 0; border-top: 1px solid var(--line); margin-top: 24px; }
    .pagenav a { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); transition: 0.18s ease; max-width: 48%; }
    .pagenav a:hover { border-color: var(--accent); background: var(--bg); }
    .pagenav .dir { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; }
    .pagenav .ttl { font-size: 14.5px; font-weight: 500; color: var(--ink); }
    .pagenav a.next { text-align: right; margin-left: auto; }

    /* ── Páginas de módulo: sem screenshots — layout persuasivo em coluna única ── */
    .split { display: block; padding: 46px 0; }
    .split .split-visual { display: none; }
    .split .split-copy { max-width: 880px; }
    .split .split-copy .bullets {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; margin-top: 22px;
    }
    @media (max-width: 760px) { .split .split-copy .bullets { grid-template-columns: 1fr; } }

    /* ── Ajuste: sub-hero alinhado à esquerda como o resto (corrige título "centralizado") ── */
    .subhero-inner { max-width: var(--maxw); }
    .subhero h1 { max-width: 720px; }

    /* ── Home: cards de módulo só com texto, mais compactos ── */
    .modcard .ico { display: none; }
    .modcard { min-height: 0; padding: 20px 22px; gap: 8px; }

    /* ── Navegação no topo de cada módulo (incorporada, sem card) ── */
    .topnav { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
    .topnav a { font-size: 13px; font-weight: 500; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; transition: color .15s ease, gap .15s ease; }
    .topnav a:hover { color: var(--accent); }
    .topnav .nx:hover { gap: 10px; }

    /* ═══════════ PROVA SOCIAL ═══════════ */
    /* Depoimentos */
    .testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .testimonial {
      background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
      padding: 26px 24px; display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow-sm);
    }
    .testimonial blockquote { font-size: 15px; line-height: 1.6; color: var(--ink-2); flex: 1; }
    .testimonial blockquote::before {
      content: "\201C"; font-family: "Instrument Serif", serif; font-size: 44px;
      line-height: 0.1; color: var(--accent); display: block; margin-bottom: 6px;
    }
    .testimonial figcaption { display: flex; align-items: center; gap: 12px; }
    .testimonial .t-avatar {
      width: 40px; height: 40px; border-radius: 999px; background: var(--accent-soft);
      color: var(--accent); display: grid; place-items: center; font-weight: 700; flex-shrink: 0;
    }
    .testimonial .t-meta { display: flex; flex-direction: column; min-width: 0; }
    .testimonial .t-meta strong { font-size: 13.5px; color: var(--ink); }
    .testimonial .t-meta span { font-size: 12px; color: var(--muted); }
    @media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

    /* Selos de confiança */
    .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .trust { display: flex; gap: 12px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); }
    .trust .ico { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
    .trust .ico svg { width: 18px; height: 18px; }
    .trust h4 { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
    .trust p { font-size: 12px; color: var(--muted); line-height: 1.45; margin-top: 2px; }
    @media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

    /* ── Botão flutuante de WhatsApp ── */
    .wa-fab {
      position: fixed; right: 22px; bottom: 22px; z-index: 999;
      width: 56px; height: 56px; border-radius: 999px;
      background: #25D366; color: #fff;
      display: grid; place-items: center;
      box-shadow: 0 8px 24px -6px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.18);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .wa-fab svg { width: 30px; height: 30px; }
    .wa-fab:hover { transform: scale(1.07); box-shadow: 0 12px 30px -6px rgba(37,211,102,.7), 0 4px 12px rgba(0,0,0,.2); }
    @media (max-width: 600px) {
      .wa-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
      .wa-fab svg { width: 27px; height: 27px; }
    }

    /* ── Toggle de tema (sol/lua), à direita do nav ── */
    .theme-toggle {
      width: 40px; height: 40px; border-radius: 10px;
      border: 1px solid var(--line-2); background: transparent;
      color: var(--ink-2); cursor: pointer; flex-shrink: 0;
      display: inline-flex; align-items: center; justify-content: center;
      transition: background .18s ease, color .18s ease, border-color .18s ease;
    }
    .theme-toggle:hover { background: var(--bg-2); color: var(--accent); border-color: var(--accent); }
    .theme-toggle svg { width: 18px; height: 18px; }
    .theme-toggle .icon-sun { display: none; }
    [data-theme="dark"] .theme-toggle .icon-moon { display: none; }
    [data-theme="dark"] .theme-toggle .icon-sun { display: inline-block; }

    /* ── CTA band é escura por natureza: não inverter no dark mode ── */
    [data-theme="dark"] .cta-band { background: #0B1B2E; }
    [data-theme="dark"] .cta-actions .btn-primary { color: #0B1B2E; }
