/*!
 * FILEHUB — folha de estilo compartilhada entre as paginas.
 * Tokens de tema, layout responsivo e componentes.
 * Carregue com <link rel="stylesheet" href="./assets/css/filehub.css"> no <head>.
 */
  /* ================= TEMA (escuro por padrao) ================= */
  :root, .om-dark{
    --bg:#0e1117; --surface:#161b23; --surface-2:#1b212b;
    --hover:#222834; --hover-2:#2b323f;
    --border:#2a313c; --border-2:#262d38; --border-soft:#242a34; --divider:#232935;
    --ring:#39414f;
    --ink:#e7eaf0; --text:#c3cad6; --text-2:#aab3c0; --muted:#9aa3b2; --dim:#8b94a3;
    --link:#2fd4c4; --link-hover:#5eead4; --brand-txt:#2fd4c4; --brand-ink:#2fd4c4;
    --brand-450:#14b8a6; --brand-500:#12b3a8; --brand-600:#0d9488; --brand-700:#0f766e;
    --ink-solid:#05080d; --neon:#4ade80;
    --green:#3ddc7f; --green-solid:#16a34a; --green-dot:#22c55e; --green-700:#15803d;
    --green-ink:#3ddc7f;
    --blue:#6aa5ff; --blue-link:#6aa5ff; --blue-solid:#3b82f6; --blue-700:#2563eb;
    --amber:#fbbf24; --amber-soft:#3a2f13; --orange:#fbbf24; --orange-solid:#f97316;
    --pink:#f472b6; --pink-soft:#3a1f2c; --purple:#c084fc;
    --danger:#f87171; --danger-solid:#ef4444; --red-soft:#3a2020; --danger-ink:#fca5a5;
    --teal-soft:#123f3a; --mint-soft:#10312f; --mint-border:#1d4a45;
    --mint-500:#5eead4; --mint-600:#2dd4bf; --mint-ink:#06302c;
    --slate:#334155; --shadow:rgba(0,0,0,.45); --glow:rgba(18,179,168,.10);
    color-scheme:dark;
  }
  :root.om-light, .om-light{
    --bg:#f3f4f6; --surface:#ffffff; --surface-2:#f9fafb;
    --hover:#f3f4f6; --hover-2:#e5e7eb;
    --border:#e5e7eb; --border-2:#e9ecef; --border-soft:#eceef1; --divider:#f1f2f4;
    --ring:#cbd5e1;
    --ink:#1f2937; --text:#374151; --text-2:#4b5563; --muted:#6b7280; --dim:#9ca3af;
    --link:#0d9488; --link-hover:#0f766e; --brand-txt:#12b3a8; --brand-ink:#0f5f58;
    --brand-450:#14b8a6; --brand-500:#12b3a8; --brand-600:#0d9488; --brand-700:#0f766e;
    --ink-solid:#111827; --neon:#4ade80;
    --green:#16a34a; --green-solid:#16a34a; --green-dot:#22c55e; --green-700:#15803d;
    --green-ink:#15803d;
    --blue:#3b82f6; --blue-link:#2563eb; --blue-solid:#3b82f6; --blue-700:#2563eb;
    --amber:#f59e0b; --amber-soft:#fef3c7; --orange:#d97706; --orange-solid:#f97316;
    --pink:#db2777; --pink-soft:#fce7f3; --purple:#a855f7;
    --danger:#ef4444; --danger-solid:#ef4444; --red-soft:#fef2f2; --danger-ink:#b91c1c;
    --teal-soft:#ccfbf1; --mint-soft:#e6f7f5; --mint-border:#c9ede9;
    --mint-500:#5eead4; --mint-600:#2dd4bf; --mint-ink:#134e4a;
    --slate:#1e293b; --shadow:rgba(0,0,0,.04); --glow:rgba(18,179,168,.07);
    color-scheme:light;
  }

  html,body{margin:0;padding:0;background:var(--bg)}
  a{color:var(--link);text-decoration:none}
  a:hover{color:var(--link-hover);text-decoration:underline}
  *{box-sizing:border-box}
  ::placeholder{color:var(--dim)}
  input,button,textarea,select{color:inherit}
  ::selection{background:var(--brand-500);color:#fff}
  .fh-col-left::-webkit-scrollbar,.fh-sidebar::-webkit-scrollbar,
  .fh-rail-scroll::-webkit-scrollbar{width:10px}
  .fh-col-left::-webkit-scrollbar-thumb,.fh-sidebar::-webkit-scrollbar-thumb,
  .fh-rail-scroll::-webkit-scrollbar-thumb{
    background:var(--hover-2);border-radius:8px;border:3px solid var(--bg)}

  /* ================= RESPONSIVO ================= */
  html,body{overflow-x:hidden}
  /* Inter: fonte de interface neutra e formal. Suavizacao + ajustes opticos
     pra ficar mais firme que a Nunito que ela substituiu. */
  .fh-root{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
    font-feature-settings:'cv11','ss01','calt';letter-spacing:-.005em}
  .fh-root h1,.fh-root h2,.fh-sec-title,.fh-acc-title,.fh-auth-title,.fh-auth-card h1{letter-spacing:-.02em}
  img,video,svg{max-width:100%}
  .fh-search{min-width:0}
  .fh-search input{min-width:0;width:100%}
  .fh-burger{display:none}
  .fh-main h1,.fh-main h2,.fh-main p{overflow-wrap:anywhere}

  /* ================= Menu lateral ================= */
  /* pagina curta: o rodape desce ate o fim da janela em vez de flutuar no vazio */
  .fh-root{display:flex;flex-direction:column}
  .fh-layout{flex:1 0 auto}
  .fh-footer{flex-shrink:0}

  .fh-col-left{display:flex;flex-direction:column;gap:20px;position:sticky;top:88px}
  /* Janela baixa demais para a coluna caber: em vez de barra de rolagem interna,
     ela deixa de grudar e rola junto com a pagina. Assim nunca ha scroll aqui
     e o fim da coluna continua alcancavel. */
  @media (max-height:700px){
    .fh-col-left{position:static}
  }

  .fh-navitem{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:10px;
    cursor:pointer;color:var(--text);font-weight:700;font-size:14.5px;margin-bottom:2px;
    transition:background .12s ease,color .12s ease}
  .fh-navitem:hover{background:var(--hover)}
  .fh-navitem.is-active{background:var(--teal-soft);color:var(--link)}
  .fh-navitem.is-active:hover{background:var(--teal-soft)}
  .fh-navitem.is-child{padding-left:38px;font-size:14px;font-weight:600}
  .fh-navlabel{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  .fh-navchev{color:var(--dim);transition:transform .15s ease}
  .fh-navchev.is-open{transform:rotate(90deg)}

  /* ================= Logo ================= */
  .fh-logo{display:flex;align-items:center;cursor:pointer;flex-shrink:0}
  .fh-logo-full{height:30px;width:auto;display:block}
  .fh-logo-mark{height:34px;width:auto;display:none}
  @media (max-width:560px){
    .fh-logo-full{display:none}
    .fh-logo-mark{display:block}
  }

  /* ================= Bloco de bancos/plataformas ================= */
  .fh-cta{margin-top:32px;display:flex;flex-direction:column;align-items:flex-start;gap:24px;
    border-radius:18px;padding:32px;border:1px solid var(--border);
    background:radial-gradient(500px 200px at 100% 0%, var(--glow), transparent) var(--surface)}
  @media (min-width:900px){.fh-cta{flex-direction:row;align-items:center}}
  .fh-cta-txt{min-width:220px;flex:1}
  .fh-cta-title{margin:0;font-size:24px;font-weight:800;color:var(--ink);line-height:1.2}
  .fh-cta-sub{margin:8px 0 16px;max-width:380px;font-size:13.5px;line-height:1.6;
    color:var(--muted);font-weight:600}
  .fh-cta-btn{display:inline-flex;align-items:center;gap:8px;border-radius:11px;
    border:1px solid var(--border);padding:10px 16px;font-size:13.5px;font-weight:800;
    background:var(--hover);color:var(--ink);cursor:pointer;font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
    transition:border-color .15s ease,color .15s ease}
  .fh-cta-btn:hover{border-color:var(--link);color:var(--link)}

  /* width:100% em coluna (senao a grade encolhe a zero) e min-width:0 em linha
     (senao ela nao cede espaco e estoura o card) */
  .fh-plats{display:grid;grid-template-columns:repeat(8,minmax(0,1fr));gap:10px;
    justify-items:center;width:100%}
  @media (min-width:900px){
    .fh-plats{grid-template-columns:repeat(10,minmax(0,1fr));width:auto;min-width:0;flex-shrink:1}
  }
  .fh-plat{display:flex;align-items:center;justify-content:center;width:100%;max-width:42px;
    aspect-ratio:1;border-radius:50%;background:#fff;cursor:pointer;
    transition:transform .18s ease}
  .fh-plat:hover{transform:translateY(-4px)}
  .fh-plat img{width:57%;height:57%;object-fit:contain;display:block}
  @media (prefers-reduced-motion:reduce){
    .fh-plat{transition:none}
    .fh-plat:hover{transform:none}
  }

  /* ================= Rodape ================= */
  /* width:100% e obrigatorio: margem auto no eixo cruzado impede o flex item
     de esticar, e o rodape encolheria para a largura do texto */
  .fh-footer{width:100%;max-width:1200px;margin:48px auto 0;padding:22px 24px 36px;
    text-align:center;border-top:1px solid var(--border)}
  .fh-footer-copy{font-size:13px;color:var(--muted);font-weight:600}
  .fh-footer-links{margin-top:8px;display:flex;flex-wrap:wrap;align-items:center;
    justify-content:center;font-size:11.5px}
  .fh-footer-link{color:var(--dim);font-weight:600;cursor:pointer;transition:color .12s ease}
  .fh-footer-link:hover{color:var(--link)}
  .fh-footer-link + .fh-footer-link::before{content:"\00b7";margin:0 8px;
    color:var(--dim);cursor:default}

  /* ================= Secao / grade de arquivos ================= */
  .fh-sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;
    margin:32px 0 16px}
  .fh-sec-title{font-size:23px;font-weight:800;color:var(--ink);line-height:1.2}
  .fh-sec-sub{margin-top:2px;font-size:13px;color:var(--muted);font-weight:600}
  .fh-sec-link{display:flex;align-items:center;gap:6px;font-size:13px;font-weight:800;
    color:var(--link);white-space:nowrap;cursor:pointer;flex-shrink:0}
  .fh-sec-link:hover{color:var(--link-hover)}

  .fh-files{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
  /* fluida: 6 colunas com a coluna central cheia, cai pra 4-5 no notebook sem espremer */
  @media (min-width:640px){.fh-files{grid-template-columns:repeat(auto-fill,minmax(150px,1fr))}}

  .fh-file{background:var(--surface);border:1px solid var(--border);border-radius:13px;
    overflow:hidden;cursor:pointer;transition:transform .18s ease,border-color .18s ease}
  .fh-file:hover{transform:translateY(-4px);border-color:var(--hover-2)}
  .fh-file-thumb{position:relative;aspect-ratio:1;overflow:hidden;background:var(--surface-2)}
  .fh-file-img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .25s ease}
  .fh-file:hover .fh-file-img{transform:scale(1.05)}
  .fh-file-src{position:absolute;left:8px;top:8px;border-radius:6px;padding:2px 8px;
    font-size:10px;font-weight:800;color:#fff}
  .fh-file-ext{position:absolute;right:8px;bottom:8px;border-radius:6px;padding:2px 6px;
    font-size:9.5px;font-weight:800;text-transform:uppercase;color:#fff;background:rgba(20,18,16,.7)}
  .fh-file-dl{position:absolute;left:8px;bottom:8px;display:flex;align-items:center;gap:3px;
    border-radius:6px;padding:2px 6px;font-size:9.5px;font-weight:800;color:#fff;
    background:rgba(20,18,16,.7)}
  .fh-file-name{padding:8px 10px;font-size:12.5px;color:var(--text);font-weight:600;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  @media (prefers-reduced-motion:reduce){
    .fh-file,.fh-file-img{transition:none}
    .fh-file:hover{transform:none}
    .fh-file:hover .fh-file-img{transform:none}
  }

  /* ================= Stories ================= */
  .fh-stories{display:flex;gap:16px;padding:4px 2px 6px;overflow-x:auto;scrollbar-width:none}
  .fh-stories::-webkit-scrollbar{display:none}
  .fh-story{display:flex;flex-direction:column;align-items:center;gap:6px;cursor:pointer;flex-shrink:0;
    width:72px;background:none;border:none;padding:0;font-family:inherit}
  .fh-story-ring{width:64px;height:64px;border-radius:50%;padding:3px;
    background:linear-gradient(135deg,var(--brand-450),var(--mint-500) 55%,var(--brand-700));
    transition:transform .15s ease}
  .fh-story:hover .fh-story-ring{transform:scale(1.05)}
  .fh-story-ring.is-seen{background:var(--ring)}
  .fh-story-ring.is-add{background:none;border:2px dashed var(--brand-500);padding:0;display:flex;
    align-items:center;justify-content:center;color:var(--brand-txt);font-size:26px;font-weight:600}
  .fh-story-av{width:100%;height:100%;border-radius:50%;border:2px solid var(--surface);overflow:hidden;
    display:flex;align-items:center;justify-content:center;color:#fff;font-size:20px;font-weight:800}
  .fh-story-av img{width:100%;height:100%;object-fit:cover;display:block}
  .fh-story-name{max-width:72px;font-size:12px;font-weight:700;color:var(--text);white-space:nowrap;
    overflow:hidden;text-overflow:ellipsis}
  @media (max-width:560px){.fh-stories{gap:12px}}

  /* visualizador */
  .fh-sv{position:fixed;inset:0;z-index:90;background:rgba(0,0,0,.92);display:flex;align-items:center;
    justify-content:center;padding:16px}
  .fh-sv-box{position:relative;width:min(420px,100%);aspect-ratio:9/16;max-height:100%;border-radius:18px;
    overflow:hidden;background:#111;box-shadow:0 30px 80px rgba(0,0,0,.6)}
  .fh-sv-box img{width:100%;height:100%;object-fit:cover;display:block}
  .fh-sv-vazio{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#fff;
    font-size:48px;font-weight:800}
  .fh-sv-top{position:absolute;left:0;right:0;top:0;padding:12px 14px;
    background:linear-gradient(rgba(0,0,0,.55),transparent)}
  .fh-sv-bars{display:flex;gap:4px;margin-bottom:10px}
  .fh-sv-bar{flex:1;height:3px;border-radius:2px;background:rgba(255,255,255,.3);overflow:hidden}
  .fh-sv-bar i{display:block;height:100%;background:#fff;width:0}
  .fh-sv-bar.is-done i{width:100%}
  .fh-sv-bar.is-on i{animation:fh-sv-fill var(--dur,5s) linear forwards}
  @keyframes fh-sv-fill{from{width:0}to{width:100%}}
  .fh-sv-quem{display:flex;align-items:center;gap:10px;color:#fff;font-size:13.5px;font-weight:800}
  .fh-sv-quem .fh-story-av{width:34px;height:34px;font-size:14px;border-width:0}
  .fh-sv-x{margin-left:auto;width:32px;height:32px;border:none;border-radius:50%;background:rgba(255,255,255,.15);
    color:#fff;font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center}
  .fh-sv-nav{position:absolute;top:0;bottom:0;width:35%;border:none;background:transparent;cursor:pointer}
  .fh-sv-nav.is-prev{left:0}.fh-sv-nav.is-next{right:0}
  .fh-sv-cta{position:absolute;left:50%;bottom:18px;transform:translateX(-50%);padding:10px 18px;border-radius:999px;
    background:#fff;color:#111;font-size:13px;font-weight:800;text-decoration:none;white-space:nowrap}
  @media (prefers-reduced-motion:reduce){.fh-sv-bar.is-on i{animation:none;width:100%}}

  /* ================= Banner de capa ================= */
  .fh-cover{display:block;width:100%;max-width:64rem;margin:0 auto;max-height:20.625rem;
    border-radius:16px;overflow:hidden;background:var(--brand-500);position:relative}
  .fh-cover.is-link{cursor:pointer}
  .fh-cover img{width:100%;height:100%;object-fit:cover;display:block}

  /* ================= Card do cliente ================= */
  .fh-quick .fh-arrow{opacity:0;transform:translateX(-4px);
    transition:opacity .2s ease,transform .2s ease}
  .fh-quick:hover .fh-arrow{opacity:1;transform:translateX(0)}
  .fh-blink{animation:fh-blink 1.1s steps(1,end) infinite}
  @keyframes fh-blink{0%,50%{opacity:1}50.01%,100%{opacity:0}}
  @media (prefers-reduced-motion:reduce){
    .fh-blink{animation:none}
    .fh-quick .fh-arrow{transition:none}
  }
  @media (max-width:820px){
    .fh-hero-row{flex-direction:column!important;align-items:stretch!important;gap:18px!important}
    .fh-plan{width:100%!important}
    .fh-plan-left{flex:1!important}
  }
  @media (max-width:640px){
    .fh-quicks{grid-template-columns:minmax(0,1fr)!important}
  }
  @media (max-width:420px){
    .fh-idpill{flex-wrap:wrap!important;border-radius:14px!important}
    .fh-idpill-sep{display:none!important}
    .fh-plan{flex-direction:column!important;border-radius:14px!important}
    .fh-plan-sep{width:100%!important;height:1px!important}
    .fh-plan-right{justify-content:center!important;padding:8px 16px!important}
  }

  .fh-overlay{display:none}


  /* ================= Casca fluida (padrao Facebook) =================
     Rails coladas nas bordas da janela, coluna central com largura maxima e
     centralizada no espaco que sobra. Nada de max-width por pagina: o que
     muda entre paginas e so --fh-main. As regras usam !important porque a
     base do grid esta inline nos .html (runtime x-dc). */
  .fh-layout{
    --fh-left:280px;   /* menu + online agora */
    --fh-right:340px;  /* rail direita (so a tela de Curso usa) */
    --fh-gap:24px;
    --fh-pad:24px;
    --fh-main:1100px;  /* largura maxima da coluna central */
    display:grid!important;
    grid-template-columns:var(--fh-left) minmax(0,1fr) var(--fh-right)!important;
    gap:var(--fh-gap)!important;
    padding:var(--fh-pad)!important;
    width:100%;max-width:none!important;margin:0 auto;align-items:start}
  .fh-layout.sem-rail{grid-template-columns:var(--fh-left) minmax(0,1fr)!important}
  .fh-layout.sem-rail .fh-rail{display:none!important}
  .fh-layout.sem-menu{grid-template-columns:minmax(0,1fr)!important}
  .fh-layout.sem-menu .fh-col-left{display:none!important}
  .fh-main{width:100%;max-width:var(--fh-main);justify-self:center}
  /* paginas de catalogo (grades) aproveitam mais largura; planos precisa de 4 cartoes */
  .fh-layout.pag-downloads{--fh-main:1320px}
  .fh-layout.largo{--fh-main:1360px}
  .fh-layout.sem-menu{--fh-main:1100px}

  /* --- ate 1439px (notebook comum: 1366 / 1280): rail direita desce pra baixo
     do conteudo em colunas fluidas; a central fica com a largura toda --- */
  @media (max-width:1439px){
    .fh-layout{--fh-left:260px;--fh-gap:20px;--fh-pad:20px;
      grid-template-columns:var(--fh-left) minmax(0,1fr)!important}
    .fh-rail{grid-column:1/-1!important;display:grid!important;
      grid-template-columns:repeat(auto-fit,minmax(258px,1fr))!important;gap:16px!important;align-items:start!important}
    .fh-rail-panel{position:static!important;max-height:none!important}
    .fh-rail-scroll{max-height:320px!important}
  }

  /* --- ate 1279px: menu vira so icones (como o Facebook) e devolve ~190px
     pra coluna central. Online Agora e sub-itens somem; o burger nao entra
     ainda, so em 1023. --- */
  @media (max-width:1279px) and (min-width:1024px){
    .fh-layout{--fh-left:72px}
    .fh-sidebar{padding:12px 8px!important}
    .fh-navitem{justify-content:center;padding:11px 0!important;gap:0}
    .fh-navlabel,.fh-navchev,.fh-navitem.is-child{display:none!important}
    .fh-col-left > :not(.fh-sidebar){display:none!important}
  }

  /* --- ate 1023px: sidebar vira gaveta --- */
  @media (max-width:1023px){
    /* as tres variantes juntas: .fh-layout.sem-rail (0,2,0) venceria .fh-layout (0,1,0) */
    .fh-layout,.fh-layout.sem-rail,.fh-layout.sem-menu{grid-template-columns:minmax(0,1fr)!important;gap:18px!important;padding:16px!important}
    .fh-burger{display:flex!important}
    .fh-sidebar{position:fixed!important;left:0!important;top:64px!important;bottom:0!important;
      width:min(300px,86vw)!important;max-height:none!important;height:auto!important;
      border-radius:0 16px 16px 0!important;z-index:70;overflow-y:auto!important;
      transform:translateX(-105%);transition:transform .25s ease;box-shadow:0 10px 40px rgba(0,0,0,.18)}
    .fh-sidebar.fh-nav-open{transform:translateX(0)}
    .fh-col-left{position:static!important;max-height:none!important;overflow:visible!important;order:2}
    .fh-main{order:1}
    .fh-overlay.fh-nav-open{display:block;position:fixed;left:0;right:0;top:64px;bottom:0;
      background:rgba(15,23,42,.45);z-index:65}
    .fh-2col{grid-template-columns:minmax(0,1fr)!important;gap:20px!important}
    .fh-gallery{grid-template-columns:repeat(auto-fill,minmax(76px,1fr))!important}
    .fh-curso-body{padding:20px 20px 28px!important}
  }

  /* --- ate 900px --- */
  @media (max-width:900px){
    .fh-topbar{gap:12px!important;padding:0 16px!important}
    .fh-topbtn{display:none!important}
    .fh-banner{height:auto!important;aspect-ratio:16/9}
    .fh-hero{height:auto!important;aspect-ratio:16/9;min-height:180px}
    .fh-hero-title{font-size:clamp(17px,4.6vw,32px)!important}
    .fh-hero-cap{padding:40px 18px 16px!important}
  }

  /* --- ate 768px --- */
  @media (max-width:768px){
    .fh-layout{padding:14px!important;gap:16px!important}
    .fh-main{gap:18px!important}
    .fh-kv{grid-template-columns:112px minmax(0,1fr)!important}
    .fh-actions{flex-wrap:wrap!important}
    .fh-wrap{flex-wrap:wrap!important}
    .fh-dl-links{flex-direction:column!important}
    .fh-comm-head{flex-wrap:wrap!important}
    .fh-lesson-head{flex-wrap:wrap!important;align-items:flex-start!important}
    .fh-lesson-head>div:last-child{margin-left:auto}
  }

  /* --- ate 560px --- */
  @media (max-width:560px){
    .fh-topbar{gap:8px!important;padding:0 10px!important}
    .fh-wordmark{display:none!important}
    .fh-search{height:38px!important;padding:0 12px!important}
    .fh-layout{padding:10px!important;gap:14px!important}
    .fh-stories{gap:12px!important}
    .fh-post-body{padding-left:14px!important;padding-right:14px!important}
    .fh-post-actions{padding-left:14px!important;padding-right:14px!important}
    .fh-kv{grid-template-columns:minmax(0,1fr)!important;row-gap:2px!important}
    .fh-kv>div:nth-child(odd):not(:first-child){margin-top:10px}
    .fh-rate{display:flex!important;flex-direction:column!important;align-items:flex-start!important;gap:4px!important}
    .fh-rate>div{padding-left:0!important}
    .fh-curso-body{padding:16px 14px 24px!important}
    .fh-fab{right:16px!important;bottom:16px!important;width:50px!important;height:50px!important}
  }

  /* ================= Pagina de Downloads (Acesso aos Sites) ================= */
  .fh-acc-hero{position:relative;overflow:hidden;border-radius:24px;border:1px solid var(--border);
    background:linear-gradient(135deg,var(--glow),transparent 55%) var(--surface);
    padding:24px;margin-bottom:24px}
  @media (min-width:1024px){.fh-acc-hero{padding:32px}}
  .fh-acc-glow{position:absolute;top:-80px;right:-80px;width:256px;height:256px;border-radius:50%;
    background:var(--glow);filter:blur(64px);pointer-events:none}
  .fh-acc-hero-row{position:relative;display:flex;flex-direction:column;gap:24px}
  @media (min-width:1024px){
    .fh-acc-hero-row{flex-direction:row;align-items:flex-end;justify-content:space-between}
  }
  .fh-acc-eyebrow{display:flex;align-items:center;gap:8px;margin-bottom:12px}
  .fh-acc-chip{width:36px;height:36px;border-radius:12px;background:var(--teal-soft);
    display:flex;align-items:center;justify-content:center;color:var(--link);flex-shrink:0}
  .fh-acc-eyebrow span{font-size:12px;text-transform:uppercase;letter-spacing:.08em;
    font-weight:800;color:var(--link)}
  .fh-acc-title{margin:0;font-size:30px;font-weight:800;letter-spacing:-.02em;color:var(--ink);line-height:1.15}
  @media (min-width:1024px){.fh-acc-title{font-size:36px}}
  .fh-acc-sub{margin:8px 0 0;max-width:42rem;font-size:14px;line-height:1.6;
    color:var(--muted);font-weight:600}
  @media (min-width:1024px){.fh-acc-sub{font-size:15px}}

  .fh-acc-stats{display:flex;gap:12px;flex-shrink:0;flex-wrap:wrap}
  .fh-acc-stat{border-radius:16px;border:1px solid var(--border);background:var(--surface-2);
    padding:12px 16px;min-width:96px}
  .fh-acc-stat.is-brand{border-color:var(--link);background:var(--teal-soft)}
  .fh-acc-stat-lbl{font-size:10px;text-transform:uppercase;letter-spacing:.08em;
    font-weight:700;color:var(--muted)}
  .fh-acc-stat.is-brand .fh-acc-stat-lbl{color:var(--link)}
  .fh-acc-stat-val{font-size:24px;font-weight:800;color:var(--ink);line-height:1.2}
  .fh-acc-stat.is-brand .fh-acc-stat-val{color:var(--link)}
  @media (max-width:560px){.fh-acc-stat.is-optional{display:none}}

  .fh-acc-search{position:relative;width:100%;margin-bottom:14px}
  .fh-acc-search .fh-acc-lupa{position:absolute;left:16px;top:50%;transform:translateY(-50%);
    color:var(--muted);pointer-events:none}
  .fh-acc-search input{width:100%;height:48px;padding:0 108px 0 46px;border-radius:14px;
    border:1px solid var(--border);background:var(--surface-2);color:var(--ink);
    font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:15px;font-weight:600;outline:none;
    transition:border-color .15s ease,background .15s ease}
  .fh-acc-search input:focus{border-color:var(--link);background:var(--surface)}
  .fh-acc-right{position:absolute;right:10px;top:50%;transform:translateY(-50%);
    display:flex;align-items:center;gap:8px}
  .fh-acc-count{font-size:12px;font-weight:700;color:var(--muted);white-space:nowrap}
  .fh-acc-clear{width:26px;height:26px;border-radius:50%;border:none;cursor:pointer;
    background:var(--hover-2);color:var(--muted);display:flex;align-items:center;
    justify-content:center;font-size:15px;line-height:1;font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
    transition:background .15s ease,color .15s ease}
  .fh-acc-clear:hover{background:var(--brand-500);color:#fff}

  .fh-acc-chips{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:24px}
  .fh-chip{display:flex;align-items:center;gap:6px;padding:5px 11px;border-radius:999px;
    font-size:11.5px;font-weight:700;white-space:nowrap;cursor:pointer;
    border:1px solid var(--border);background:var(--surface-2);color:var(--muted);
    transition:background .15s ease,color .15s ease,border-color .15s ease}
  .fh-chip:hover{color:var(--ink);background:var(--hover)}
  .fh-chip.is-on{background:var(--brand-500);border-color:var(--brand-500);color:#fff}
  .fh-chip-n{font-size:9.5px;font-weight:800;padding:1px 5px;border-radius:999px;
    background:var(--hover);color:var(--muted)}
  .fh-chip.is-on .fh-chip-n{background:rgba(255,255,255,.25);color:#fff}

  .fh-acc-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:16px}
  @media (min-width:820px){.fh-acc-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
  @media (min-width:1320px){.fh-acc-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}

  .fh-acc-card{position:relative;height:100%;padding:20px;border-radius:12px;
    border:1px solid var(--border);background:var(--surface);cursor:pointer;
    display:flex;flex-direction:column;
    transition:transform .2s ease,border-color .2s ease,background .2s ease}
  .fh-acc-card:hover{transform:translateY(-2px);border-color:var(--link);background:var(--surface-2)}
  .fh-acc-card.is-locked{opacity:.75}
  .fh-acc-bar{position:absolute;left:0;top:20px;bottom:20px;width:2px;
    border-radius:0 999px 999px 0;opacity:.7}
  .fh-acc-top{display:flex;align-items:flex-start;gap:16px}
  .fh-acc-ico{width:56px;height:56px;border-radius:16px;background:#fff;flex-shrink:0;
    border:1px solid var(--border);display:flex;align-items:center;justify-content:center;
    transition:transform .2s ease}
  .fh-acc-card:hover .fh-acc-ico{transform:scale(1.05)}
  .fh-acc-ico img{width:36px;height:36px;object-fit:contain;display:block}
  .fh-acc-body{flex:1;min-width:0}
  .fh-acc-head{display:flex;align-items:flex-start;justify-content:space-between;gap:8px}
  .fh-acc-name{margin:0;font-size:16px;font-weight:800;color:var(--ink);
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:color .15s ease}
  .fh-acc-card:hover .fh-acc-name{color:var(--link)}
  .fh-acc-cat{display:flex;align-items:center;gap:8px;margin-top:2px}
  .fh-acc-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0}
  .fh-acc-cat span{font-size:11px;color:var(--muted);font-weight:600}
  .fh-acc-new{display:inline-flex;align-items:center;gap:4px;flex-shrink:0;height:20px;
    padding:0 8px;border-radius:999px;font-size:9px;font-weight:800;
    background:var(--teal-soft);color:var(--link);border:1px solid var(--link)}
  .fh-acc-desc{margin:8px 0 0;font-size:12px;line-height:1.6;color:var(--muted);font-weight:600;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
  .fh-acc-foot{margin-top:auto;padding-top:12px;border-top:1px solid var(--divider);
    display:flex;align-items:center;justify-content:space-between;gap:8px}
  .fh-acc-quota{display:flex;align-items:center;gap:8px;min-width:0}
  .fh-acc-quota b{font-size:14px;font-weight:800;color:var(--ink)}
  .fh-acc-quota i{font-style:normal;font-size:10px;color:var(--dim)}
  .fh-acc-quota span{font-size:10px;color:var(--muted);font-weight:600}
  .fh-acc-lock{display:flex;align-items:center;gap:6px;color:var(--muted)}
  .fh-acc-lock span{font-size:10px;font-weight:600}
  .fh-acc-go{display:flex;align-items:center;gap:4px;font-size:11px;font-weight:700;
    color:var(--link);opacity:0;transition:opacity .2s ease;flex-shrink:0}
  .fh-acc-card:hover .fh-acc-go{opacity:1}
  .fh-acc-empty{padding:48px 24px;text-align:center;border-radius:16px;
    border:1px dashed var(--border);color:var(--muted);font-weight:700;font-size:14px}
  @media (prefers-reduced-motion:reduce){
    .fh-acc-card,.fh-acc-ico,.fh-acc-go{transition:none}
    .fh-acc-card:hover{transform:none}
    .fh-acc-card:hover .fh-acc-ico{transform:none}
  }
  /* a mais larga precisa da coluna inteira: sem trilho a direita */

  /* ================= Pagina de uma plataforma ================= */
  .fh-pl-head{display:flex;align-items:center;justify-content:space-between;
    flex-wrap:wrap;gap:16px;margin-bottom:24px}
  .fh-pl-id{display:flex;align-items:center;gap:16px;min-width:0}
  .fh-pl-ico{width:48px;height:48px;border-radius:12px;background:#fff;flex-shrink:0;
    border:1px solid var(--border);display:flex;align-items:center;justify-content:center}
  .fh-pl-ico img{width:32px;height:32px;object-fit:contain;display:block}
  .fh-pl-name{margin:0;font-size:30px;font-weight:800;color:var(--ink);line-height:1.15}
  .fh-pl-tag{margin:2px 0 0;font-size:14px;color:var(--muted);font-weight:600}
  .fh-pl-badges{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
  .fh-pl-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 12px;
    border-radius:999px;border:1px solid var(--border);font-size:12px;font-weight:600;
    color:var(--text);white-space:nowrap}
  .fh-pl-badge b{font-weight:800;color:var(--ink)}
  .fh-pl-badge.is-warn{color:var(--amber);border-color:var(--amber)}
  .fh-pl-badge.is-warn b{color:var(--amber)}

  .fh-card{background:var(--surface);border:1px solid var(--border);border-radius:12px;
    padding:24px;margin-bottom:24px}
  .fh-card-title{margin:0 0 16px;font-size:20px;font-weight:800;color:var(--ink)}
  .fh-order{display:flex;gap:12px;flex-wrap:wrap}
  .fh-order-field{position:relative;flex:1;min-width:220px}
  .fh-order-field svg{position:absolute;left:16px;top:50%;transform:translateY(-50%);
    color:var(--muted);pointer-events:none}
  .fh-order-field input{width:100%;height:48px;padding:0 16px 0 44px;border-radius:12px;
    border:1px solid var(--border);background:var(--surface-2);color:var(--ink);
    font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:14px;font-weight:600;outline:none;
    transition:border-color .15s ease}
  .fh-order-field input:focus{border-color:var(--link)}
  .fh-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;height:48px;
    padding:0 24px;border-radius:12px;border:none;background:var(--brand-500);color:#fff;
    font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:14px;font-weight:800;cursor:pointer;
    transition:background .15s ease;flex-shrink:0}
  .fh-btn:hover{background:var(--brand-600)}

  .fh-steps{display:grid;grid-template-columns:minmax(0,1fr);gap:24px;padding:32px 0}
  @media (min-width:640px){.fh-steps{grid-template-columns:repeat(3,minmax(0,1fr))}}
  .fh-step{text-align:center}
  .fh-step-ico{width:48px;height:48px;margin:0 auto 8px;border-radius:50%;
    background:var(--hover);display:flex;align-items:center;justify-content:center;
    color:var(--muted)}
  .fh-step h3{margin:0;font-size:15px;font-weight:800;color:var(--ink)}
  .fh-step p{margin:4px 0 0;font-size:13px;line-height:1.6;color:var(--muted);font-weight:600}

  .fh-hint{padding:48px 24px;text-align:center;color:var(--muted)}
  .fh-hint svg{margin:0 auto 16px;display:block;opacity:.5;color:var(--muted)}
  .fh-hint p{margin:0}
  .fh-hint .fh-hint-1{font-size:17px;color:var(--text);font-weight:700}
  .fh-hint .fh-hint-2{font-size:13px;margin-top:4px;font-weight:600}
  .fh-hint code{background:var(--hover);padding:2px 6px;border-radius:4px;
    font-size:12.5px;color:var(--ink)}

  .fh-dl-head{display:flex;align-items:center;justify-content:space-between;gap:12px;
    margin-bottom:16px;flex-wrap:wrap}
  .fh-dl-head h3{margin:0;font-size:18px;font-weight:800;color:var(--ink)}
  .fh-dl-head p{margin:0;font-size:12px;color:var(--muted);font-weight:600}
  .fh-ghost{display:inline-flex;align-items:center;gap:6px;height:32px;padding:0 12px;
    border-radius:8px;border:none;background:transparent;color:var(--text);cursor:pointer;
    font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:12px;font-weight:700;
    transition:background .15s ease}
  .fh-ghost:hover{background:var(--hover)}

  .fh-tabs{display:inline-flex;align-items:center;gap:2px;padding:3px;border-radius:10px;
    background:var(--hover);margin-bottom:16px;flex-wrap:wrap}
  .fh-tab{display:inline-flex;align-items:center;gap:6px;height:28px;padding:0 10px;
    border-radius:6px;border:1px solid transparent;background:transparent;
    color:var(--muted);cursor:pointer;font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
    font-size:12px;font-weight:700;white-space:nowrap;transition:background .15s ease}
  .fh-tab:hover{color:var(--ink)}
  .fh-tab.is-on{background:var(--surface);border-color:var(--border);color:var(--ink)}

  .fh-arqs{display:grid;grid-template-columns:minmax(0,1fr);gap:12px}
  @media (min-width:640px){.fh-arqs{grid-template-columns:repeat(2,minmax(0,1fr))}}
  @media (min-width:1024px){.fh-arqs{grid-template-columns:repeat(3,minmax(0,1fr))}}
  @media (min-width:1400px){.fh-arqs{grid-template-columns:repeat(4,minmax(0,1fr))}}
  .fh-arq{border:1px solid var(--border);border-radius:10px;overflow:hidden;
    background:var(--surface);transition:border-color .18s ease}
  .fh-arq:hover{border-color:var(--link)}
  .fh-arq-img{position:relative;aspect-ratio:16/10;overflow:hidden;background:var(--surface-2)}
  .fh-arq-img img{width:100%;height:100%;object-fit:cover;display:block}
  .fh-arq-ok{position:absolute;top:8px;right:8px;width:20px;height:20px;border-radius:50%;
    background:var(--brand-500);color:#fff;display:flex;align-items:center;justify-content:center}
  .fh-arq-body{padding:10px}
  .fh-arq-title{margin:0;font-size:13.5px;font-weight:700;color:var(--ink);
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .fh-arq-date{margin:2px 0 0;font-size:12px;color:var(--muted);font-weight:600}
  .fh-arq-acts{display:flex;gap:6px;margin-top:10px}
  .fh-arq-acts .fh-btn{flex:1;height:28px;padding:0 12px;font-size:12px;border-radius:6px}
  .fh-icon-btn{width:28px;height:28px;flex-shrink:0;border-radius:6px;
    border:1px solid var(--border);background:var(--surface-2);color:var(--text);
    display:flex;align-items:center;justify-content:center;cursor:pointer;
    transition:background .15s ease}
  .fh-icon-btn:hover{background:var(--hover)}
  @media (prefers-reduced-motion:reduce){
    .fh-btn,.fh-arq,.fh-tab,.fh-ghost,.fh-icon-btn{transition:none}
  }

  /* banner no topo de uma pagina: ocupa a coluna inteira e mantem a proporcao
     (o teto de altura do banner da home cortaria o corte aqui) */
  .fh-cover-page{max-width:none;max-height:none;margin-bottom:20px}
  .fh-acc-stats-row{margin-bottom:20px}

  /* ================= Pagina Assets (storage completo) ================= */
  .fh-as-head{display:flex;align-items:center;justify-content:space-between;gap:16px;
    flex-wrap:wrap;margin-bottom:24px}
  .fh-as-title{margin:0;display:flex;align-items:center;gap:10px;font-size:30px;
    font-weight:800;color:var(--ink);line-height:1.15}
  .fh-as-title svg{color:var(--link);flex-shrink:0}
  .fh-as-sub{margin:2px 0 0;font-size:14px;color:var(--muted);font-weight:600}

  .fh-as-stats{display:grid;grid-template-columns:minmax(0,1fr);gap:16px;margin-bottom:24px}
  @media (min-width:768px){.fh-as-stats{grid-template-columns:repeat(3,minmax(0,1fr))}}
  .fh-as-stat{background:var(--surface);border:1px solid var(--border);border-radius:12px;
    padding:20px 24px}
  .fh-as-stat-top{display:flex;align-items:center;justify-content:space-between;
    gap:8px;margin-bottom:6px}
  .fh-as-stat-top span{font-size:14px;font-weight:700;color:var(--ink)}
  .fh-as-stat-top svg{color:var(--muted);flex-shrink:0}
  .fh-as-stat.is-brand .fh-as-stat-top svg{color:var(--link)}
  .fh-as-stat-val{font-size:24px;font-weight:800;color:var(--ink);line-height:1.2}
  .fh-as-stat-hint{margin:2px 0 0;font-size:12px;color:var(--muted);font-weight:600}

  .fh-as-filtros{display:flex;flex-wrap:wrap;gap:16px;align-items:center}
  .fh-as-busca{position:relative;flex:1;min-width:200px}
  .fh-as-busca svg{position:absolute;left:12px;top:50%;transform:translateY(-50%);
    color:var(--muted);pointer-events:none}
  .fh-as-busca input{width:100%;height:38px;padding:0 12px 0 38px;border-radius:8px;
    border:1px solid var(--border);background:transparent;color:var(--ink);
    font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:14px;font-weight:600;outline:none;
    transition:border-color .15s ease}
  .fh-as-busca input:focus{border-color:var(--link)}
  /* fundo explicito no select E no option: o popup nativo nao herda o tema,
     e com fundo transparente o texto claro ficava ilegivel no escuro */
  .fh-as-select{height:38px;padding:0 12px;border-radius:8px;border:1px solid var(--border);
    background:var(--surface-2);color:var(--ink);font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
    font-size:14px;font-weight:600;cursor:pointer;outline:none}
  .fh-as-select:focus{border-color:var(--link)}
  .fh-as-select option{background:var(--surface);color:var(--ink);font-weight:600}
  .fh-as-select option:checked{background:var(--hover-2);color:var(--ink)}

  .fh-as-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:16px}
  @media (min-width:768px){.fh-as-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
  @media (min-width:1200px){.fh-as-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
  .fh-as-card{display:flex;flex-direction:column;height:100%;background:var(--surface);
    border:1px solid var(--border);border-radius:12px;overflow:hidden;cursor:pointer;
    transition:border-color .18s ease,transform .18s ease}
  .fh-as-card:hover{border-color:var(--link);transform:translateY(-2px)}
  .fh-as-img{position:relative;height:128px;overflow:hidden;background:var(--surface-2)}
  .fh-as-img img{width:100%;height:100%;object-fit:cover;display:block;
    transition:transform .25s ease}
  .fh-as-card:hover .fh-as-img img{transform:scale(1.05)}
  .fh-as-ok{position:absolute;top:8px;right:8px;display:inline-flex;align-items:center;gap:4px;
    padding:2px 8px;border-radius:999px;font-size:11px;font-weight:700;color:var(--link);
    background:var(--teal-soft);border:1px solid var(--link)}
  .fh-as-src{position:absolute;top:8px;left:8px;padding:2px 8px;border-radius:999px;
    font-size:11px;font-weight:700;color:#fff}
  .fh-as-body{padding:16px;display:flex;flex-direction:column;gap:12px;flex:1}
  .fh-as-name{margin:0;font-size:14px;font-weight:700;color:var(--ink);
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .fh-as-meta{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--muted);
    font-weight:600;margin-top:2px}
  .fh-as-meta .up{text-transform:uppercase}
  .fh-as-who{display:flex;align-items:center;justify-content:space-between;gap:8px}
  .fh-as-user{display:flex;align-items:center;gap:8px;min-width:0}
  .fh-as-av{width:24px;height:24px;border-radius:50%;background:var(--hover);flex-shrink:0;
    display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:800;
    color:var(--text)}
  .fh-as-user span{font-size:12px;color:var(--muted);font-weight:600;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .fh-as-when{font-size:12px;color:var(--muted);font-weight:600;white-space:nowrap;flex-shrink:0}
  .fh-as-acts{display:flex;gap:8px;margin-top:auto}
  .fh-as-acts .fh-btn{flex:1;height:32px;padding:0 12px;font-size:12px;border-radius:8px}
  .fh-as-pag{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:24px}
  .fh-as-pag span{font-size:14px;color:var(--muted);font-weight:600;padding:0 12px}
  .fh-btn-out{display:inline-flex;align-items:center;justify-content:center;gap:6px;height:32px;
    padding:0 12px;border-radius:8px;border:1px solid var(--border);background:var(--surface-2);
    color:var(--text);font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;font-size:13px;font-weight:700;
    cursor:pointer;transition:background .15s ease}
  .fh-btn-out:hover:not(:disabled){background:var(--hover)}
  .fh-btn-out:disabled{opacity:.5;cursor:not-allowed}
  @media (prefers-reduced-motion:reduce){
    .fh-as-card,.fh-as-img img{transition:none}
    .fh-as-card:hover{transform:none}
    .fh-as-card:hover .fh-as-img img{transform:none}
  }

  /* ================= Menu do avatar ================= */
  .fh-av-wrap{position:relative;flex-shrink:0}
  .fh-av{width:40px;height:40px;border-radius:50%;background:var(--brand-500);
    border:2px solid var(--brand-600);color:#fff;display:flex;align-items:center;
    justify-content:center;font-weight:900;cursor:pointer;transition:filter .15s ease}
  .fh-av:hover{filter:brightness(1.08)}
  .fh-av-backdrop{position:fixed;inset:0;z-index:70}
  .fh-usermenu{position:absolute;right:0;top:calc(100% + 10px);z-index:71;min-width:200px;
    background:var(--surface);border:1px solid var(--border);border-radius:12px;
    padding:6px;box-shadow:0 12px 32px rgba(0,0,0,.28)}
  .fh-usermenu-head{padding:10px 12px 8px;border-bottom:1px solid var(--divider);margin-bottom:6px}
  .fh-usermenu-head b{display:block;font-size:13.5px;font-weight:800;color:var(--ink);
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .fh-usermenu-head span{display:block;font-size:11.5px;color:var(--muted);font-weight:600;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .fh-usermenu-item{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:8px;
    font-size:13.5px;font-weight:700;color:var(--text);cursor:pointer;
    transition:background .12s ease,color .12s ease}
  .fh-usermenu-item:hover{background:var(--hover);color:var(--ink)}
  .fh-usermenu-item.is-danger{color:var(--danger)}
  .fh-usermenu-item.is-danger:hover{background:var(--red-soft);color:var(--danger)}
  .fh-usermenu-item.is-off{opacity:.45;cursor:not-allowed}
  .fh-usermenu-item.is-off:hover{background:transparent;color:var(--text)}

  /* ================= Minha Conta ================= */
  .fh-mc{display:flex;flex-direction:column;gap:32px}
  @media (min-width:1080px){.fh-mc{flex-direction:row;align-items:flex-start}}
  .fh-mc-aside{width:100%;flex-shrink:0}
  @media (min-width:1080px){.fh-mc-aside{width:240px}}
  .fh-mc-conteudo{flex:1;min-width:0;display:flex;flex-direction:column;gap:32px}

  .fh-mc-grupo{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;
    color:var(--dim);padding:0 12px 8px}
  .fh-mc-lista{display:flex;flex-direction:column;gap:2px;margin-bottom:22px}
  .fh-mc-lista:last-child{margin-bottom:0}
  .fh-mc-grupo.tem-linha{padding-top:18px;border-top:1px solid var(--divider);margin-top:4px}
  .fh-mc-item{display:flex;align-items:center;justify-content:space-between;gap:10px;
    padding:9px 12px;border-radius:10px;font-size:14px;font-weight:700;color:var(--muted);
    cursor:pointer;transition:background .12s ease,color .12s ease}
  .fh-mc-item:hover{background:var(--hover);color:var(--ink)}
  .fh-mc-item.is-on{background:var(--hover);color:var(--ink)}
  .fh-mc-item.is-off{opacity:.5;cursor:not-allowed}
  .fh-mc-item.is-off:hover{background:transparent;color:var(--muted)}
  .fh-mc-item-esq{display:flex;align-items:center;gap:12px;min-width:0}
  .fh-mc-item-txt{min-width:0}
  .fh-mc-item-txt b{display:block;font-weight:700;white-space:nowrap;overflow:hidden;
    text-overflow:ellipsis}
  .fh-mc-item-txt span{display:block;font-size:11px;color:var(--muted);font-weight:600;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .fh-mc-item .is-green{color:#25d366}
  .fh-mc-badge{font-size:10px;font-weight:700;padding:2px 7px;border-radius:6px;
    background:var(--hover-2);color:var(--muted);font-variant-numeric:tabular-nums;flex-shrink:0}

  .fh-mc-titulo{margin:0;font-size:20px;font-weight:800;color:var(--ink);letter-spacing:-.01em}
  .fh-mc-sub{margin:4px 0 0;font-size:14px;color:var(--muted);font-weight:600}

  /* capa + avatar */
  .fh-mc-card{border:1px solid var(--border);border-radius:16px;background:var(--surface);
    overflow:hidden}
  .fh-capa{position:relative;height:140px;
    background:linear-gradient(120deg,var(--brand-600),var(--brand-500) 45%,var(--blue-solid))}
  .fh-capa img{width:100%;height:100%;object-fit:cover;display:block}
  .fh-capa-btn{position:absolute;right:12px;bottom:12px;display:inline-flex;align-items:center;
    gap:6px;height:32px;padding:0 12px;border-radius:8px;border:1px solid rgba(255,255,255,.35);
    background:rgba(0,0,0,.45);color:#fff;font-family:inherit;font-size:12px;
    font-weight:700;cursor:pointer;transition:background .15s ease}
  .fh-capa-btn:hover{background:rgba(0,0,0,.65)}
  .fh-mc-ident{display:flex;flex-direction:column;align-items:center;gap:16px;
    padding:0 24px 24px;text-align:center}
  @media (min-width:640px){
    .fh-mc-ident{flex-direction:row;align-items:flex-end;text-align:left}
  }
  .fh-av-grande{position:relative;width:96px;height:96px;border-radius:50%;flex-shrink:0;
    margin-top:-48px;border:4px solid var(--surface);overflow:hidden;background:var(--brand-500);
    display:flex;align-items:center;justify-content:center;color:#fff;font-size:32px;
    font-weight:900;cursor:pointer}
  .fh-av-grande img{width:100%;height:100%;object-fit:cover;display:block}
  .fh-av-troca{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
    background:rgba(0,0,0,.55);color:#fff;opacity:0;transition:opacity .18s ease;border:none;
    cursor:pointer}
  .fh-av-grande:hover .fh-av-troca{opacity:1}
  .fh-mc-eu{flex:1;min-width:0;padding-bottom:4px}
  .fh-mc-eu h2{margin:0;font-size:20px;font-weight:800;color:var(--ink);
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .fh-mc-eu p{margin:2px 0 0;display:flex;align-items:center;justify-content:center;gap:6px;
    font-size:13.5px;color:var(--muted);font-weight:600}
  @media (min-width:640px){.fh-mc-eu p{justify-content:flex-start}}
  .fh-mc-selo{display:inline-flex;align-items:center;gap:5px;margin-top:10px;padding:3px 10px;
    border-radius:999px;border:1px solid var(--border);background:var(--hover);
    font-size:11px;font-weight:800;color:var(--muted);text-transform:uppercase;
    letter-spacing:.04em}
  .fh-mc-selo.is-pro{border-color:var(--link);background:var(--teal-soft);color:var(--link)}
  .fh-mc-upgrade{flex-shrink:0;padding-bottom:4px}

  /* rotulo de secao */
  .fh-sec-rot{margin-bottom:12px}
  .fh-sec-rot h3{margin:0;font-size:12px;font-weight:800;text-transform:uppercase;
    letter-spacing:.08em;color:var(--muted)}
  .fh-sec-rot p{margin:2px 0 0;font-size:13.5px;color:var(--dim);font-weight:600}

  /* telefone e pais com bandeira */
  .fh-tel{display:flex;gap:8px}
  .fh-tel-pais{position:relative;flex-shrink:0}
  .fh-pf-in > .fh-tel,
  .fh-pf-in > .fh-pais-in{flex:1;min-width:0}
  .fh-pf-campo .fh-tel-pais select{width:106px;padding-left:38px}
  .fh-bandeira{position:absolute;left:12px;top:50%;transform:translateY(-50%);width:20px;
    height:14px;object-fit:cover;border-radius:2px;pointer-events:none;
    box-shadow:0 0 0 1px rgba(0,0,0,.15)}
  .fh-tel input{flex:1;min-width:0}
  .fh-pais-in{position:relative}
  .fh-pf-campo .fh-pais-in select{padding-left:40px}

  /* seguranca */
  .fh-sg{display:flex;flex-direction:column;gap:22px}
  .fh-sg-linha{display:flex;align-items:center;justify-content:space-between;gap:14px;
    flex-wrap:wrap}
  .fh-sg-esq{display:flex;align-items:center;gap:12px;min-width:0}
  .fh-sg-ico{width:38px;height:38px;border-radius:10px;background:var(--hover);flex-shrink:0;
    display:flex;align-items:center;justify-content:center;color:var(--muted)}
  .fh-sg-ico.is-danger{background:var(--red-soft);color:var(--danger)}
  .fh-sg-esq h4{margin:0;font-size:14.5px;font-weight:800;color:var(--ink)}
  .fh-sg-esq h4.is-danger{color:var(--danger-ink)}
  .fh-sg-esq p{margin:1px 0 0;font-size:13px;color:var(--muted);font-weight:600}
  .fh-sg-nota{display:flex;align-items:flex-start;gap:10px;padding:12px 14px;border-radius:10px;
    border:1px solid var(--border);background:var(--surface-2);font-size:13px;color:var(--muted);
    font-weight:600;line-height:1.6;margin-top:12px}
  .fh-sg-nota svg{flex-shrink:0;color:var(--green);margin-top:1px}
  .fh-sg-sep{height:1px;background:var(--divider)}
  .fh-sg-perigo{margin-top:12px;padding:16px;border-radius:12px;
    border:1px solid var(--danger);background:var(--red-soft)}
  .fh-sg-perigo h5{margin:0;font-size:14px;font-weight:800;color:var(--danger-ink)}
  .fh-sg-perigo p{margin:4px 0 14px;font-size:13px;color:var(--muted);font-weight:600;
    line-height:1.6}
  .fh-btn-danger{display:inline-flex;align-items:center;gap:8px;height:40px;padding:0 16px;
    border-radius:10px;border:none;background:var(--danger);color:#fff;font-family:inherit;
    font-size:13.5px;font-weight:800;cursor:pointer;transition:filter .15s ease}
  .fh-btn-danger:hover{filter:brightness(1.08)}

  /* formulario */
  .fh-pf-form{display:grid;grid-template-columns:minmax(0,1fr);gap:18px}
  @media (min-width:680px){.fh-pf-form{grid-template-columns:repeat(2,minmax(0,1fr))}}
  .fh-pf-campo{display:flex;flex-direction:column;gap:6px;min-width:0}
  .fh-pf-campo label{display:flex;align-items:center;gap:6px;font-size:12px;font-weight:800;
    color:var(--muted)}
  .fh-pf-in{position:relative;display:flex;align-items:center}
  .fh-pf-in > .fh-pf-prefixo{position:absolute;left:14px;color:var(--muted);pointer-events:none;
    font-size:14px;font-weight:700}
  .fh-pf-campo input,.fh-pf-campo select{width:100%;height:44px;padding:0 14px;border-radius:10px;
    border:1px solid var(--border);background:var(--surface-2);color:var(--ink);
    font-family:inherit;font-size:14px;font-weight:600;outline:none;
    transition:border-color .15s ease,background .15s ease}
  .fh-pf-campo select option{background:var(--surface);color:var(--ink);font-weight:600}
  .fh-pf-campo input:focus,.fh-pf-campo select:focus{border-color:var(--link);
    background:var(--surface)}
  .fh-pf-in.tem-icone input{padding-left:40px}
  .fh-pf-campo input:disabled{background:var(--hover);color:var(--muted);cursor:not-allowed}
  .fh-pf-hint{font-size:11.5px;color:var(--muted);font-weight:600;line-height:1.4}
  .fh-pf-hint.is-warn{color:var(--amber)}
  .fh-pf-hint.is-lock{display:flex;align-items:center;gap:5px}
  .fh-pf-acoes{display:flex;justify-content:flex-end;margin-top:22px;padding-top:18px;
    border-top:1px solid var(--divider)}

  /* plano */
  .fh-pf-plano{border:1px solid var(--border);border-radius:12px;padding:20px}
  .fh-pf-plano.is-on{border-color:var(--link);
    background:radial-gradient(360px 160px at 100% 0%, var(--glow), transparent) var(--surface)}
  .fh-pf-plano-top{display:flex;align-items:center;gap:8px;margin-bottom:4px}
  .fh-pf-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0;background:var(--dim)}
  .fh-pf-plano.is-on .fh-pf-dot{background:var(--green-dot)}
  .fh-pf-plano.is-off .fh-pf-dot{background:var(--danger)}
  .fh-pf-plano-top b{font-size:13px;font-weight:800;color:var(--ink)}
  .fh-pf-nome{margin:0;font-size:20px;font-weight:800;color:var(--ink);line-height:1.2}
  .fh-pf-conta{margin:8px 0 0;font-size:13.5px;color:var(--muted);font-weight:600}
  .fh-pf-conta b{color:var(--link);font-weight:800}
  .fh-pf-barra{height:6px;border-radius:999px;background:var(--hover-2);overflow:hidden;
    margin-top:14px}
  .fh-pf-barra i{display:block;height:100%;border-radius:999px;background:var(--brand-500)}
  .fh-pf-datas{margin-top:12px;display:flex;flex-direction:column;gap:6px}
  .fh-pf-data{display:flex;align-items:center;justify-content:space-between;gap:10px;
    font-size:12.5px;font-weight:600;color:var(--muted)}
  .fh-pf-data b{color:var(--ink);font-weight:700;white-space:nowrap}

  /* Pagina de conta: sem menu lateral, so o botao de voltar */
  .fh-mc-topo{display:flex;align-items:center;justify-content:space-between;gap:16px;
    flex-wrap:wrap;margin-bottom:28px}
  .fh-voltar{display:inline-flex;align-items:center;gap:8px;height:40px;padding:0 16px;
    border-radius:10px;border:1px solid var(--border);background:var(--surface);
    color:var(--ink);font-family:inherit;font-size:13.5px;font-weight:800;cursor:pointer;
    white-space:nowrap;transition:background .15s ease,border-color .15s ease,color .15s ease}
  .fh-voltar:hover{background:var(--hover);border-color:var(--link);color:var(--link)}

  /* ================= Pagina de planos ================= */
  .fh-pn-topo{text-align:center;max-width:660px;margin:0 auto 34px}
  .fh-eyebrow{display:inline-flex;align-items:center;gap:6px;padding:4px 12px;border-radius:999px;
    border:1px solid var(--border);background:var(--hover);font-size:11px;font-weight:900;
    text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:14px}
  .fh-eyebrow.is-hot{border-color:var(--link);background:var(--teal-soft);color:var(--link)}
  .fh-pn-topo h1{margin:0;font-size:30px;font-weight:900;color:var(--ink);letter-spacing:-.02em;
    line-height:1.2}
  .fh-serif{font-style:italic;font-weight:800;color:var(--brand-ink)}
  .fh-pn-topo > p{margin:10px 0 0;font-size:15px;color:var(--muted);font-weight:600;
    line-height:1.65}

  .fh-pn-grade{display:grid;gap:18px;grid-template-columns:minmax(0,1fr);align-items:stretch}
  @media (min-width:640px){.fh-pn-grade{grid-template-columns:repeat(2,minmax(0,1fr))}}
  @media (min-width:1180px){.fh-pn-grade.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}
  @media (min-width:1400px){.fh-pn-grade.cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}

  .fh-pn{position:relative;display:flex;flex-direction:column;gap:14px;padding:26px 22px;
    border:1px solid var(--border);border-radius:16px;background:var(--surface);
    transition:border-color .15s ease,transform .15s ease}
  .fh-pn:hover{border-color:var(--link);transform:translateY(-2px)}
  .fh-pn.is-top{border-color:var(--link);
    background:radial-gradient(420px 220px at 50% 0%, var(--glow), transparent) var(--surface)}
  .fh-pn.is-atual{border-color:var(--green-dot)}
  .fh-pn-selo{position:absolute;top:-11px;left:50%;transform:translateX(-50%);
    display:inline-flex;align-items:center;gap:5px;height:22px;padding:0 12px;border-radius:999px;
    background:var(--brand-700);color:#fff;font-size:10.5px;font-weight:900;
    text-transform:uppercase;letter-spacing:.06em;white-space:nowrap}
  .fh-pn.is-atual .fh-pn-selo{background:var(--green-700)}
  .fh-pn-etq{align-self:flex-start;padding:3px 9px;border-radius:6px;background:var(--hover-2);
    font-size:10.5px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;
    color:var(--muted)}

  .fh-pn-nome{margin:0;font-size:22px;font-weight:900;color:var(--ink);letter-spacing:-.02em}
  /* duas linhas reservadas: assim o preco fica na mesma altura em todos os cartoes */
  .fh-pn-tag{margin:4px 0 0;font-size:13px;color:var(--muted);font-weight:600;
    line-height:1.5;min-height:39px}

  .fh-pn-preco{display:flex;align-items:flex-start;gap:3px}
  .fh-pn-moeda{font-size:15px;font-weight:800;color:var(--muted);margin-top:7px}
  .fh-pn-int{font-size:40px;font-weight:900;color:var(--ink);line-height:1;
    letter-spacing:-.03em;font-variant-numeric:tabular-nums}
  .fh-pn-dec{font-size:19px;font-weight:900;color:var(--ink);line-height:1;margin-top:4px}
  .fh-pn-periodo{margin:-6px 0 0;font-size:12px;color:var(--dim);font-weight:700}

  .fh-pn-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;width:100%;
    height:46px;padding:0 16px;border-radius:10px;border:1px solid var(--border);
    background:var(--surface-2);color:var(--ink);font-family:inherit;font-size:14px;
    font-weight:800;cursor:pointer;text-decoration:none;
    transition:background .15s ease,border-color .15s ease,color .15s ease}
  .fh-pn-btn:hover{background:var(--hover);border-color:var(--link);color:var(--link)}
  .fh-pn-btn.is-cheio{background:var(--brand-700);border-color:var(--brand-700);color:#fff}
  .fh-pn-btn.is-cheio:hover{background:var(--brand-600);border-color:var(--brand-600);color:#fff}
  .fh-pn-btn:disabled{opacity:.7;cursor:default;background:var(--hover);
    border-color:var(--border);color:var(--muted)}
  .fh-pn-btn:disabled:hover{background:var(--hover);border-color:var(--border);color:var(--muted)}

  .fh-pn-lista{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;
    flex:1}
  .fh-pn-lista li{display:flex;align-items:flex-start;gap:9px;font-size:13.5px;
    color:var(--text);font-weight:600;line-height:1.5}
  .fh-pn-lista li.is-bold{color:var(--ink);font-weight:800}
  .fh-pn-lista svg{flex-shrink:0;color:var(--green);margin-top:2px}

  /* selos de confianca */
  .fh-trust{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:26px}
  .fh-trust span{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;
    border-radius:999px;border:1px solid var(--border);background:var(--surface);
    font-size:12.5px;font-weight:700;color:var(--muted)}
  .fh-trust svg{flex-shrink:0;color:var(--link)}

  /* tabela comparativa */
  .fh-cmp-wrap{margin-top:40px;border:1px solid var(--border);border-radius:14px;
    background:var(--surface);overflow-x:auto}
  .fh-cmp{min-width:620px}
  .fh-cmp-head{display:grid;position:sticky;top:0;z-index:2;background:var(--surface-2);
    border-bottom:1px solid var(--border)}
  .fh-cmp-hc{padding:14px 16px;text-align:center;border-left:1px solid var(--divider)}
  .fh-cmp-hc:first-child{text-align:left;border-left:none}
  .fh-cmp-hc.is-fea{background:var(--teal-soft)}
  .fh-cmp-nome{font-size:14px;font-weight:900;color:var(--ink)}
  .fh-cmp-hc.is-fea .fh-cmp-nome{color:var(--link)}
  .fh-cmp-preco{margin-top:2px;font-size:11.5px;font-weight:700;color:var(--muted);
    font-variant-numeric:tabular-nums}
  .fh-cmp-grupo{padding:11px 16px;background:var(--hover);font-size:11.5px;font-weight:900;
    text-transform:uppercase;letter-spacing:.07em;color:var(--muted);
    border-bottom:1px solid var(--divider)}
  .fh-cmp-linha{display:grid;border-bottom:1px solid var(--divider)}
  .fh-cmp-linha:last-child{border-bottom:none}
  .fh-cmp-linha:hover{background:var(--hover)}
  .fh-cmp-c{display:flex;align-items:center;justify-content:center;gap:8px;padding:11px 16px;
    font-size:13px;font-weight:700;color:var(--text);border-left:1px solid var(--divider);
    font-variant-numeric:tabular-nums;text-align:center}
  .fh-cmp-c:first-child{justify-content:flex-start;text-align:left;color:var(--ink);
    border-left:none}
  .fh-cmp-c.is-fea{background:var(--glow)}
  .fh-cmp-c img{width:18px;height:18px;border-radius:4px;flex-shrink:0;object-fit:contain}
  .fh-cmp-sim{color:var(--green-ink);font-weight:800}
  .fh-cmp-nao{color:var(--muted);font-weight:700}
  .fh-cmp-nota{margin:16px auto 0;max-width:660px;text-align:center;font-size:12px;
    color:var(--text-2);font-weight:600;line-height:1.6}

  /* garantia */
  .fh-gar{margin-top:40px;display:flex;flex-direction:column;align-items:center;gap:22px;
    padding:28px 24px;border:1px solid var(--link);border-radius:16px;text-align:center;
    background:radial-gradient(520px 220px at 0% 0%, var(--glow), transparent) var(--surface)}
  @media (min-width:820px){
    .fh-gar{flex-direction:row;align-items:center;text-align:left;gap:30px;padding:30px 32px}
  }
  .fh-gar-escudo{width:104px;height:112px;flex-shrink:0;display:flex;flex-direction:column;
    align-items:center;justify-content:center;color:#fff;background:var(--brand-700);
    clip-path:polygon(50% 0%, 100% 14%, 100% 62%, 50% 100%, 0% 62%, 0% 14%)}
  .fh-gar-num{font-size:38px;font-weight:900;line-height:1}
  .fh-gar-dias{font-size:11px;font-weight:900;letter-spacing:.14em;margin-top:2px}
  .fh-gar h3{margin:8px 0 0;font-size:21px;font-weight:900;color:var(--ink);
    letter-spacing:-.01em}
  .fh-gar > div > p{margin:8px 0 0;font-size:14px;color:var(--muted);font-weight:600;
    line-height:1.65}
  .fh-gar-pontos{display:flex;flex-wrap:wrap;gap:8px 18px;margin-top:14px;
    justify-content:center}
  @media (min-width:820px){.fh-gar-pontos{justify-content:flex-start}}
  .fh-gar-pontos span{display:inline-flex;align-items:center;gap:7px;font-size:13px;
    font-weight:700;color:var(--text)}
  .fh-gar-pontos svg{flex-shrink:0;color:var(--green)}

  /* FAQ */
  .fh-faq{margin-top:48px}
  .fh-faq-topo{text-align:center;max-width:600px;margin:0 auto 24px}
  .fh-faq-topo h2{margin:0;font-size:26px;font-weight:900;color:var(--ink);letter-spacing:-.02em}
  .fh-faq-grade{display:grid;gap:10px;grid-template-columns:minmax(0,1fr)}
  @media (min-width:900px){.fh-faq-grade{grid-template-columns:repeat(2,minmax(0,1fr));
    align-items:start}}
  .fh-faq-item{border:1px solid var(--border);border-radius:12px;background:var(--surface);
    overflow:hidden}
  .fh-faq-item.is-open{border-color:var(--link)}
  .fh-faq-q{display:flex;align-items:center;justify-content:space-between;gap:14px;width:100%;
    padding:15px 18px;border:none;background:transparent;color:var(--ink);
    font-family:inherit;font-size:14.5px;font-weight:800;text-align:left;cursor:pointer;
    line-height:1.4}
  .fh-faq-q:hover{background:var(--hover)}
  .fh-faq-mais{flex-shrink:0;width:22px;height:22px;border-radius:6px;background:var(--hover-2);
    color:var(--muted);font-size:16px;font-weight:800;line-height:1;display:flex;
    align-items:center;justify-content:center;transition:transform .18s ease}
  .fh-faq-item.is-open .fh-faq-mais{transform:rotate(45deg);background:var(--teal-soft);
    color:var(--link)}
  .fh-faq-a{padding:0 18px 16px;font-size:13.5px;color:var(--muted);font-weight:600;
    line-height:1.7}

  /* CTA final */
  .fh-final{margin-top:48px;padding:38px 26px;border-radius:18px;text-align:center;
    border:1px solid var(--border);
    background:radial-gradient(560px 240px at 50% 0%, var(--glow), transparent) var(--surface)}
  .fh-final h2{margin:0;font-size:28px;font-weight:900;color:var(--ink);letter-spacing:-.02em;
    line-height:1.2}
  .fh-final p{margin:12px auto 0;max-width:560px;font-size:14.5px;color:var(--muted);
    font-weight:600;line-height:1.65}
  .fh-final-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;
    margin-top:22px;height:52px;padding:0 28px;border-radius:12px;border:none;
    background:var(--brand-700);color:#fff;font-family:inherit;font-size:15.5px;font-weight:900;
    cursor:pointer;text-decoration:none;transition:background .15s ease}
  .fh-final-btn:hover{background:var(--brand-600)}
  .fh-final-meta{margin-top:14px;font-size:12.5px;color:var(--dim);font-weight:700}

  /* avulso */
  .fh-avulso{margin-top:22px;display:flex;flex-direction:column;gap:22px;padding:26px 24px;
    border:1px dashed var(--border);border-radius:16px;background:var(--surface)}
  @media (min-width:900px){
    .fh-avulso{flex-direction:row;align-items:center;gap:34px}
    .fh-avulso-esq{flex:1;min-width:0}
    .fh-avulso-dir{width:320px;flex-shrink:0}
  }
  .fh-avulso-cab{display:flex;align-items:center;gap:14px;margin-bottom:14px}
  .fh-avulso-cab h2{margin:0;font-size:19px;font-weight:900;color:var(--ink)}
  .fh-avulso-cab p{margin:2px 0 0;font-size:13.5px;color:var(--muted);font-weight:600;
    line-height:1.5}
  .fh-avulso-ico{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;
    justify-content:center;background:var(--hover);color:var(--muted);flex-shrink:0}
  .fh-avulso-preco{display:flex;align-items:baseline;gap:6px;margin-bottom:16px}
  .fh-avulso-preco b{font-size:30px;font-weight:900;color:var(--ink);letter-spacing:-.02em}
  .fh-avulso-preco span{font-size:13.5px;color:var(--muted);font-weight:700}
  .fh-avulso .fh-pn-lista{gap:8px}
  .fh-packs{display:flex;flex-direction:column;gap:8px;margin-bottom:14px}
  .fh-pack{display:flex;align-items:center;justify-content:space-between;gap:12px;
    padding:12px 14px;border-radius:10px;border:1px solid var(--border);
    background:var(--surface-2);cursor:pointer;text-align:left;font-family:inherit;
    transition:border-color .15s ease,background .15s ease}
  .fh-pack:hover{border-color:var(--link)}
  .fh-pack.is-on{border-color:var(--link);background:var(--teal-soft)}
  .fh-pack-esq{display:flex;align-items:center;gap:9px;font-size:13.5px;font-weight:800;
    color:var(--ink)}
  .fh-pack-off{font-size:10px;font-weight:900;padding:2px 7px;border-radius:6px;
    background:var(--green-700);color:#fff;text-transform:uppercase;letter-spacing:.04em}
  .fh-pack-preco{font-size:14px;font-weight:900;color:var(--ink);
    font-variant-numeric:tabular-nums;white-space:nowrap}
  .fh-pack-radio{width:16px;height:16px;border-radius:50%;border:2px solid var(--border);
    flex-shrink:0;display:flex;align-items:center;justify-content:center}
  .fh-pack.is-on .fh-pack-radio{border-color:var(--link)}
  .fh-pack.is-on .fh-pack-radio::after{content:'';width:8px;height:8px;border-radius:50%;
    background:var(--link)}


  /* ================= Ferramentas =================
     Card com capa ao fundo (esmaecida), icone, nome, "Mais informacoes",
     favorito, seletor de perfil e botao de abrir. Ref: ref2.png */
  .fh-tl-topo{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:20px}
  .fh-tl-chips{display:flex;gap:8px;flex-wrap:wrap;flex:1;min-width:0}
  .fh-tl-chip{display:inline-flex;align-items:center;gap:7px;height:36px;padding:0 14px;border-radius:10px;
    border:1px solid var(--border);background:var(--surface);color:var(--text);font-size:13px;font-weight:700;
    cursor:pointer;white-space:nowrap;transition:border-color .15s ease,background .15s ease,color .15s ease}
  .fh-tl-chip:hover{background:var(--hover)}
  .fh-tl-chip.is-on{background:var(--hover-2);border-color:var(--ring);color:var(--ink)}
  .fh-tl-chip svg{color:var(--muted)}
  .fh-tl-chip.is-on svg{color:var(--brand-txt)}
  .fh-tl-chip-n{font-size:11px;color:var(--dim);font-weight:700}
  .fh-tl-busca{position:relative;display:flex;align-items:center;width:min(320px,100%)}
  .fh-tl-busca svg{position:absolute;left:14px;color:var(--dim);pointer-events:none}
  .fh-tl-busca input{width:100%;height:44px;padding:0 40px 0 40px;border-radius:12px;border:1px solid var(--border);
    background:var(--surface);color:var(--ink);font-family:inherit;font-size:14px;font-weight:600;outline:none}
  .fh-tl-busca input:focus{border-color:var(--link);box-shadow:0 0 0 3px var(--teal-soft)}
  .fh-tl-busca .fh-acc-clear{position:absolute;right:9px}
  .fh-tl-count{font-size:12.5px;color:var(--muted);font-weight:700;white-space:nowrap}
  /* ate 900px: busca em cima, largura toda; chips rolam na horizontal */
  @media (max-width:900px){
    .fh-tl-topo{flex-direction:column;align-items:stretch;gap:10px}
    .fh-tl-busca{order:-1;width:100%}
    .fh-tl-chips{flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px;scrollbar-width:none}
    .fh-tl-chips::-webkit-scrollbar{display:none}
    .fh-tl-count{order:1}
  }

  .fh-tl-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:20px}
  @media (min-width:640px){.fh-tl-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
  @media (min-width:1100px){.fh-tl-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
  @media (min-width:1500px){.fh-tl-grid{grid-template-columns:repeat(4,minmax(0,1fr))}}

  .fh-tl-card{position:relative;overflow:hidden;border-radius:14px;border:1px solid var(--border);
    background:var(--surface);display:flex;flex-direction:column;min-height:150px;
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
  .fh-tl-card:hover{transform:translateY(-2px);border-color:var(--ring);box-shadow:0 12px 30px var(--shadow)}
  /* capa: screenshot da ferramenta esmaecido no topo; sem imagem, gradiente da cor */
  .fh-tl-capa{position:absolute;left:0;right:0;top:0;height:78px;pointer-events:none;overflow:hidden}
  .fh-tl-capa img{width:100%;height:100%;object-fit:cover;object-position:top;opacity:.28;display:block;
    filter:saturate(.8)}
  .fh-tl-capa::after{content:'';position:absolute;inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,0) 0%,var(--surface) 100%)}
  .fh-tl-capa.is-grad{background:radial-gradient(420px 120px at 20% 0%,var(--tl-cor,#12b3a8),transparent 70%);
    opacity:.22}
  .fh-tl-capa.is-grad::after{display:none}
  .fh-tl-top{position:relative;display:flex;align-items:flex-start;gap:14px;padding:16px 16px 0}
  .fh-tl-ico{width:44px;height:44px;border-radius:12px;background:#fff;border:1px solid var(--border);
    flex-shrink:0;display:flex;align-items:center;justify-content:center;overflow:hidden}
  .fh-tl-ico img{width:28px;height:28px;object-fit:contain;display:block}
  .fh-tl-body{flex:1;min-width:0}
  .fh-tl-name{margin:0;font-size:16px;font-weight:800;color:var(--ink);line-height:1.2;
    white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:flex;align-items:center;gap:8px}
  .fh-tl-mais{display:inline-flex;align-items:center;gap:6px;margin-top:8px;height:26px;padding:0 10px;white-space:nowrap;
    border-radius:999px;border:1px solid var(--border);background:var(--surface-2);color:var(--text);
    font-family:inherit;font-size:11.5px;font-weight:700;cursor:pointer;transition:border-color .15s ease}
  .fh-tl-mais:hover{border-color:var(--link);color:var(--link)}
  .fh-tl-fav{width:34px;height:34px;border:none;background:transparent;color:var(--muted);cursor:pointer;
    border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;
    transition:color .15s ease,transform .15s ease}
  .fh-tl-fav:hover{color:var(--ink);background:var(--hover)}
  .fh-tl-fav.is-on{color:#f43f5e}
  .fh-tl-fav.is-on svg{fill:#f43f5e}
  .fh-tl-fav:active{transform:scale(.9)}
  .fh-tl-foot{position:relative;display:flex;align-items:center;justify-content:space-between;gap:10px;
    padding:14px 16px 16px;margin-top:auto}
  .fh-tl-perfil{position:relative;display:inline-flex;align-items:center;gap:6px;height:32px;padding:0 12px;
    border-radius:999px;border:1px solid var(--border);background:var(--surface-2);color:var(--text);
    font-size:12.5px;font-weight:700;font-family:inherit}
  .fh-tl-perfil.is-sel{cursor:pointer;padding-right:30px;color:var(--ink)}
  .fh-tl-perfil.is-sel select{position:absolute;inset:0;opacity:0;width:100%;cursor:pointer;font-family:inherit}
  .fh-tl-perfil.is-sel svg{position:absolute;right:10px;color:var(--muted);pointer-events:none}
  .fh-tl-perfil.is-off{color:var(--dim)}
  .fh-tl-abrir{width:38px;height:38px;border-radius:50%;border:1px solid var(--border);background:var(--surface-2);
    color:var(--ink);cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;
    transition:background .15s ease,border-color .15s ease,color .15s ease}
  .fh-tl-abrir:hover{background:var(--brand-700);border-color:var(--brand-700);color:#fff}
  .fh-tl-abrir:disabled{opacity:.4;cursor:not-allowed}
  .fh-tl-new{display:inline-flex;align-items:center;gap:4px;padding:2px 8px;border-radius:999px;
    background:var(--brand-700);color:#fff;font-size:10px;font-weight:800;text-transform:uppercase;
    letter-spacing:.04em;flex-shrink:0}
  .fh-tl-empty{padding:48px 16px;text-align:center;color:var(--muted);font-weight:600}

  /* modal "Mais informacoes" */
  .fh-tl-modal{position:fixed;inset:0;z-index:90;background:rgba(0,0,0,.6);display:flex;align-items:center;
    justify-content:center;padding:16px}
  .fh-tl-dlg{width:min(520px,100%);background:var(--surface);border:1px solid var(--border-2);border-radius:18px;
    padding:24px;box-shadow:0 30px 80px rgba(0,0,0,.5);animation:fh-depo-in .25s ease}
  .fh-tl-dlg-top{display:flex;align-items:center;gap:14px}
  .fh-tl-dlg-top .fh-tl-ico{width:52px;height:52px}
  .fh-tl-dlg-top .fh-tl-ico img{width:34px;height:34px}
  .fh-tl-dlg h3{margin:0;font-size:20px;font-weight:800;color:var(--ink)}
  .fh-tl-dlg-cat{font-size:12.5px;color:var(--muted);font-weight:700;display:flex;align-items:center;gap:6px;margin-top:2px}
  .fh-tl-dlg p{margin:16px 0 0;font-size:14px;line-height:1.65;color:var(--text);font-weight:600}
  .fh-tl-dlg-perfis{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
  .fh-tl-dlg-perfis a{display:inline-flex;align-items:center;gap:6px;height:34px;padding:0 14px;border-radius:999px;
    border:1px solid var(--border);background:var(--surface-2);color:var(--ink);font-size:13px;font-weight:700;
    text-decoration:none}
  .fh-tl-dlg-perfis a:hover{border-color:var(--link);color:var(--link)}
  .fh-tl-dlg-acoes{display:flex;justify-content:flex-end;gap:10px;margin-top:22px;padding-top:16px;
    border-top:1px solid var(--divider)}
  .fh-tl-dlg-acoes a,.fh-tl-dlg-acoes button{display:inline-flex;align-items:center;gap:6px;height:38px;padding:0 16px;
    border-radius:10px;font-family:inherit;font-size:13.5px;font-weight:800;cursor:pointer;text-decoration:none}
  .fh-tl-dlg-acoes button{border:1px solid var(--border);background:var(--surface);color:var(--text)}
  .fh-tl-dlg-acoes a{border:none;background:var(--brand-700);color:#fff}

  /* ================= Bloco Aplicativo (coluna esquerda) ================= */
  .fh-promo{position:relative;overflow:hidden;padding:18px;border-radius:16px;
    border:1px solid var(--border-2);background:var(--surface);display:flex;flex-direction:column;gap:6px}
  .fh-promo-glow{position:absolute;right:-50px;top:-50px;width:150px;height:150px;border-radius:50%;
    background:radial-gradient(circle,rgba(251,191,36,.28),transparent 70%);pointer-events:none}
  .fh-promo-ico{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;justify-content:center;
    background:var(--amber-soft);color:var(--amber);margin-bottom:6px}
  .fh-promo-eyebrow{font-size:10.5px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--amber)}
  .fh-promo-title{margin:0;font-size:15.5px;font-weight:800;color:var(--ink);line-height:1.25}
  .fh-promo-text{margin:0;font-size:12.5px;line-height:1.55;color:var(--muted);font-weight:600}
  .fh-promo-btn{display:flex;align-items:center;justify-content:center;gap:8px;height:42px;margin-top:10px;
    border-radius:11px;background:#fbbf24;color:#1c1400;font-size:13.5px;font-weight:800;text-decoration:none;
    box-shadow:0 6px 18px rgba(251,191,36,.28);transition:filter .15s ease,transform .1s ease}
  .fh-promo-btn:hover,.fh-promo-btn:focus,.fh-promo-btn:visited{filter:brightness(1.06);color:#1c1400;text-decoration:none}
  .fh-promo-btn:active{transform:translateY(1px)}
  /* menu em icones (1024-1279): o bloco vira so o botao */
  @media (max-width:1279px) and (min-width:1024px){
    .fh-col-left > .fh-promo{display:flex!important;padding:8px}
    .fh-promo-ico,.fh-promo-eyebrow,.fh-promo-title,.fh-promo-text,.fh-promo-glow{display:none}
    .fh-promo-btn{margin:0;height:44px;padding:0;font-size:0}
    .fh-promo-btn svg{width:18px;height:18px}
  }

  /* ================= Aplicativo (extensoes e apps da casa) ================= */
  .fh-ap-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:20px}
  @media (min-width:900px){.fh-ap-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
  .fh-ap-card{position:relative;overflow:hidden;display:flex;flex-direction:column;gap:16px;padding:22px;
    border-radius:16px;border:1px solid var(--border);background:var(--surface);
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
  .fh-ap-card:hover{transform:translateY(-2px);border-color:var(--ring);box-shadow:0 12px 30px var(--shadow)}
  .fh-ap-card::before{content:'';position:absolute;left:0;right:0;top:0;height:3px;background:var(--ap-cor)}
  .fh-ap-top{display:flex;align-items:flex-start;gap:14px}
  .fh-ap-ico{width:56px;height:56px;border-radius:14px;flex-shrink:0;display:flex;align-items:center;
    justify-content:center;background:var(--ink-solid);border:1px solid var(--border);overflow:hidden}
  .fh-ap-ico img{width:34px;height:34px;object-fit:contain;display:block}
  .fh-ap-body{flex:1;min-width:0}
  .fh-ap-name{margin:0;font-size:17px;font-weight:800;color:var(--ink);display:flex;align-items:center;gap:8px;flex-wrap:wrap}
  .fh-ap-plat{display:inline-flex;align-items:center;gap:6px;margin-top:4px;font-size:12.5px;font-weight:700;color:var(--muted)}
  .fh-ap-plat svg{color:var(--ap-cor)}
  .fh-ap-badge{display:inline-flex;align-items:center;padding:2px 8px;border-radius:999px;font-size:10px;font-weight:800;
    text-transform:uppercase;letter-spacing:.04em;background:var(--brand-700);color:#fff}
  .fh-ap-badge.is-beta{background:var(--amber-soft);color:var(--amber)}
  .fh-ap-desc{margin:0;font-size:14px;line-height:1.6;color:var(--text);font-weight:600}
  .fh-ap-feats{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}
  .fh-ap-feats li{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--text)}
  .fh-ap-feats svg{color:var(--green-ink);flex-shrink:0}
  .fh-ap-meta{display:flex;flex-wrap:wrap;gap:14px;font-size:12px;color:var(--muted);font-weight:700}
  .fh-ap-meta b{color:var(--ink);font-weight:800}
  .fh-ap-foot{display:flex;align-items:center;gap:10px;margin-top:auto;padding-top:14px;border-top:1px solid var(--divider)}
  .fh-ap-btn{display:inline-flex;align-items:center;gap:8px;height:42px;padding:0 18px;border-radius:11px;border:none;
    background:var(--brand-700);color:#fff;font-family:inherit;font-size:14px;font-weight:800;cursor:pointer;
    text-decoration:none;transition:filter .15s ease}
  .fh-ap-btn:hover{filter:brightness(1.12)}
  .fh-ap-btn.is-off{background:var(--hover);color:var(--muted);cursor:not-allowed}
  .fh-ap-guia{display:inline-flex;align-items:center;gap:6px;height:42px;padding:0 14px;border-radius:11px;
    border:1px solid var(--border);background:var(--surface);color:var(--text);font-size:13.5px;font-weight:700;
    text-decoration:none}
  .fh-ap-guia:hover{border-color:var(--link);color:var(--link)}
  .fh-ap-empty{padding:48px 16px;text-align:center;color:var(--muted);font-weight:600}

  /* ================= Login / Registro =================
     Tela dividida: painel da marca a esquerda, cartao do formulario a direita.
     Abaixo de 900px o painel encolhe e vai pra cima. Sem menu, sem topbar. */
  .fh-auth{min-height:100vh;display:grid;grid-template-columns:minmax(0,1fr);background:var(--bg)}
  @media (min-width:900px){.fh-auth{grid-template-columns:minmax(0,5fr) minmax(0,6fr)}}
  @media (min-width:1280px){.fh-auth{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}}

  .fh-auth-panel{position:relative;overflow:hidden;display:flex;flex-direction:column;
    justify-content:space-between;gap:32px;padding:28px 24px;color:#e7eaf0;
    align-items:stretch;
    background:radial-gradient(900px 520px at -10% -10%, rgba(18,179,168,.35), transparent 60%),
      radial-gradient(700px 500px at 110% 110%, rgba(45,212,191,.18), transparent 60%),
      linear-gradient(160deg,#0b1220 0%,#0e1a22 60%,#0a1512 100%)}
  @media (min-width:900px){.fh-auth-panel{padding:40px 48px;min-height:100vh;position:sticky;top:0}}
  @media (min-width:1280px){.fh-auth-panel{padding:48px 64px}}
  /* conteudo do painel nao estica alem de 600px em monitor grande */
  .fh-auth-panel > *{max-width:600px;width:100%}
  .fh-auth-panel::after{content:'';position:absolute;inset:0;pointer-events:none;
    background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
      linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size:44px 44px;mask-image:radial-gradient(circle at 30% 30%,#000 30%,transparent 75%)}
  .fh-auth-panel > *{position:relative;z-index:1}
  .fh-auth-logo img{height:34px;width:auto;display:block}
  .fh-auth-eyebrow{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;
    border:1px solid rgba(94,234,212,.35);background:rgba(18,179,168,.12);color:#5eead4;
    font-size:11.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
  .fh-auth-title{margin:0;font-size:clamp(26px,3vw,44px);line-height:1.15;font-weight:900;
    letter-spacing:-.01em;max-width:16ch}
  .fh-auth-sub{margin:14px 0 0;max-width:46ch;font-size:15px;line-height:1.65;color:#aab3c0;font-weight:600}
  .fh-auth-title .fh-auth-hl{background:linear-gradient(90deg,#2dd4bf,#5eead4);
    -webkit-background-clip:text;background-clip:text;color:transparent}
  /* selo de avaliacao */
  .fh-auth-rating{display:flex;align-items:center;gap:10px;margin-top:28px;flex-wrap:wrap}
  .fh-auth-rating-brand{display:flex;align-items:center;gap:4px;color:#fff;font-size:13.5px;font-weight:800}
  .fh-auth-stars{display:flex;gap:2px;color:#00b67a}
  .fh-auth-stars svg{display:block}
  .fh-auth-rating b{color:#fff;font-size:13.5px;font-weight:800}
  .fh-auth-rating span.is-dim{color:#8b94a3;font-size:13.5px;font-weight:600}
  /* depoimentos */
  .fh-auth-bottom{display:flex;flex-direction:column;gap:20px}
  .fh-auth-depo{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:16px;
    padding:22px 24px;backdrop-filter:blur(4px);animation:fh-depo-in .5s ease}
  @keyframes fh-depo-in{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
  .fh-auth-depo .fh-auth-stars{margin-bottom:12px}
  .fh-auth-depo p{margin:0;font-size:14px;line-height:1.65;color:#c3cad6;font-style:italic;font-weight:600}
  .fh-auth-depo-quem{display:flex;align-items:center;gap:12px;margin-top:16px}
  .fh-auth-depo-av{width:36px;height:36px;border-radius:50%;flex-shrink:0;display:flex;align-items:center;
    justify-content:center;color:#fff;font-size:14px;font-weight:800;
    background:linear-gradient(135deg,var(--brand-500),var(--brand-700))}
  .fh-auth-depo-quem b{display:block;font-size:13.5px;color:#fff;font-weight:700}
  .fh-auth-depo-quem span{display:block;font-size:12px;color:#8b94a3;font-weight:600}
  .fh-auth-dots{display:flex;gap:6px;justify-content:center}
  .fh-auth-dot{width:6px;height:6px;border-radius:999px;border:none;padding:0;cursor:pointer;
    background:rgba(255,255,255,.2);transition:width .3s ease,background .3s ease}
  .fh-auth-dot.is-on{width:24px;background:var(--brand-500)}
  /* prova social */
  .fh-auth-social{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
  .fh-auth-avs{display:flex}
  .fh-auth-avs img{width:32px;height:32px;border-radius:50%;object-fit:cover;border:2px solid #0b1220;
    background:#1b212b}
  .fh-auth-avs img + img{margin-left:-8px}
  .fh-auth-social p{margin:0;font-size:13.5px;color:#aab3c0;font-weight:600}
  .fh-auth-social p b{color:#fff;font-weight:800}
  /* no mobile o painel vira so um cabecalho compacto */
  @media (max-width:899px){
    .fh-auth-bottom,.fh-auth-rating,.fh-auth-sub{display:none}
    .fh-auth-panel{gap:16px;padding:20px 20px 24px}
    .fh-auth .fh-auth-side{padding-top:76px}  /* espaco pro botao de tema (a base vem depois no arquivo) */
    .fh-auth-title{font-size:22px;margin-top:12px}
  }

  .fh-auth-side{display:flex;flex-direction:column;align-items:center;justify-content:center;
    padding:32px 20px 40px;position:relative;
    background:radial-gradient(640px 420px at 50% 42%, var(--glow), transparent 70%) var(--bg)}
  @media (min-width:900px){.fh-auth-side{padding:48px 40px}}
  .fh-auth-theme{position:absolute;right:20px;top:20px;width:40px;height:40px;border:1px solid var(--border);
    border-radius:12px;background:var(--surface);cursor:pointer;display:flex;align-items:center;
    justify-content:center;font-size:17px;color:var(--text)}
  .fh-auth-card{width:100%;max-width:470px;background:var(--surface);border:1px solid var(--border-2);
    border-radius:22px;padding:28px 24px;box-shadow:0 24px 70px var(--shadow);position:relative}
  /* fio de luz no topo do cartao */
  .fh-auth-card::before{content:'';position:absolute;left:24px;right:24px;top:-1px;height:1px;
    background:linear-gradient(90deg,transparent,var(--brand-450),transparent);opacity:.8}
  @media (min-width:640px){.fh-auth-card{padding:40px 40px 34px}}
  .fh-auth-kicker{display:inline-flex;align-items:center;gap:6px;margin-bottom:14px;padding:5px 10px;
    border-radius:999px;background:var(--teal-soft);color:var(--brand-ink);font-size:11px;font-weight:800;
    letter-spacing:.06em;text-transform:uppercase}
  .fh-auth-card h1{margin:0;font-size:28px;font-weight:800;color:var(--ink);letter-spacing:-.02em}
  .fh-auth-card > p{margin:6px 0 0;font-size:14px;color:var(--muted);font-weight:600}
  .fh-auth-form{display:flex;flex-direction:column;gap:16px;margin-top:26px}
  .fh-auth-form .fh-pf-campo input,.fh-auth-form .fh-pf-campo select{height:48px;border-radius:12px}
  .fh-auth-form .fh-pf-campo input:focus,.fh-auth-form .fh-pf-campo select:focus{
    box-shadow:0 0 0 3px var(--teal-soft)}
  .fh-auth-form .fh-pf-campo input.is-erro{border-color:var(--danger)}
  .fh-auth-form .fh-pf-in.tem-icone > svg{position:absolute;left:14px;color:var(--dim);pointer-events:none}
  .fh-auth-form .fh-pf-in.tem-olho input{padding-right:44px}
  .fh-auth-olho{position:absolute;right:6px;width:34px;height:34px;border:none;background:transparent;
    color:var(--dim);cursor:pointer;border-radius:8px;display:flex;align-items:center;justify-content:center}
  .fh-auth-olho:hover{color:var(--ink);background:var(--hover)}
  .fh-auth-erro{font-size:11.5px;color:var(--danger-ink);font-weight:700}
  .fh-auth-linha{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
    font-size:13px;font-weight:700;color:var(--text)}
  .fh-auth-check{display:flex;align-items:flex-start;gap:9px;cursor:pointer;line-height:1.45}
  .fh-auth-check input{width:17px;height:17px;margin:1px 0 0;accent-color:var(--brand-500);flex-shrink:0;cursor:pointer}
  .fh-auth-link{color:var(--brand-ink);font-weight:800;cursor:pointer;text-decoration:none}
  .fh-auth-link:hover{text-decoration:underline}
  .fh-auth-link.is-off{color:var(--dim);cursor:default;text-decoration:none}
  .fh-auth-btn{width:100%;height:52px;border-radius:12px;border:none;color:#fff;margin-top:4px;
    background:linear-gradient(180deg,var(--brand-600),var(--brand-700));
    box-shadow:0 8px 24px rgba(13,148,136,.28);
    font-family:inherit;font-size:15px;font-weight:900;cursor:pointer;display:flex;align-items:center;
    justify-content:center;gap:8px;transition:filter .15s ease,transform .1s ease}
  .fh-auth-btn:hover{filter:brightness(1.12)}
  .fh-auth-btn:active{transform:translateY(1px)}
  .fh-auth-btn:disabled{opacity:.7;cursor:progress;transform:none}
  .fh-auth-spin{width:16px;height:16px;border-radius:50%;border:2px solid rgba(255,255,255,.35);
    border-top-color:#fff;animation:fh-spin .7s linear infinite}
  @keyframes fh-spin{to{transform:rotate(360deg)}}
  .fh-auth-alerta{display:flex;align-items:flex-start;gap:10px;padding:12px 14px;border-radius:10px;
    border:1px solid var(--danger);background:var(--red-soft);color:var(--danger-ink);
    font-size:13px;font-weight:700;line-height:1.5}
  .fh-auth-alerta svg{flex-shrink:0;margin-top:1px}
  .fh-auth-seguro{display:flex;align-items:center;justify-content:center;gap:6px;margin-top:14px;
    font-size:12px;color:var(--dim);font-weight:600}
  .fh-auth-troca{margin-top:20px;padding-top:18px;border-top:1px solid var(--divider);text-align:center;
    font-size:13.5px;color:var(--muted);font-weight:600}
  .fh-auth-legal{margin-top:18px;text-align:center;font-size:12px;color:var(--dim);font-weight:600;line-height:1.6}
  /* login por código */
  .fh-auth-code input{text-align:center;font-size:26px!important;letter-spacing:.5em;font-weight:800;
    font-variant-numeric:tabular-nums;padding-left:.5em!important}
  .fh-auth-sent{display:flex;align-items:flex-start;gap:10px;padding:12px 14px;border-radius:10px;
    border:1px solid var(--mint-border);background:var(--mint-soft);color:var(--text);font-size:13px;
    font-weight:600;line-height:1.5}
  .fh-auth-sent svg{flex-shrink:0;color:var(--brand-ink);margin-top:2px}
  .fh-auth-sent b{color:var(--ink);font-weight:800}
  .fh-auth-acoes{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;font-size:13px;font-weight:700}
  .fh-auth-acoes button{border:none;background:none;padding:0;font:inherit;color:var(--brand-ink);cursor:pointer;font-weight:800}
  .fh-auth-acoes button:disabled{color:var(--dim);cursor:default}
  .fh-auth-acoes button:hover:not(:disabled){text-decoration:underline}
  .fh-auth-ou{display:flex;align-items:center;gap:12px;color:var(--dim);font-size:12px;font-weight:700;
    text-transform:uppercase;letter-spacing:.06em}
  .fh-auth-ou::before,.fh-auth-ou::after{content:'';flex:1;height:1px;background:var(--divider)}
  .fh-auth-google{display:flex;align-items:center;justify-content:center;gap:10px;height:48px;border-radius:12px;
    border:1px solid var(--border);background:var(--surface);color:var(--ink);font-size:14px;font-weight:800;
    text-decoration:none;cursor:pointer;font-family:inherit;transition:background .15s ease,border-color .15s ease}
  .fh-auth-google:hover{background:var(--hover);border-color:var(--ring);color:var(--ink);text-decoration:none}
  .fh-auth-google.is-off{opacity:.55;cursor:not-allowed}
  .fh-auth-google svg{flex-shrink:0}
  .fh-auth-alt{text-align:center;font-size:13px;font-weight:700}
  .fh-auth-alt button{border:none;background:none;padding:0;font:inherit;color:var(--brand-ink);cursor:pointer;font-weight:800}
  .fh-auth-alt button:hover{text-decoration:underline}
  .fh-auth-hint{font-size:11.5px;color:var(--muted);font-weight:600;line-height:1.4}
  .fh-auth-2col{display:grid;grid-template-columns:minmax(0,1fr);gap:16px}
  @media (min-width:560px){.fh-auth-2col{grid-template-columns:repeat(2,minmax(0,1fr))}}
  @media (prefers-reduced-motion:reduce){.fh-auth-spin{animation:none}}
