/* ============================================================
   FIGMETA — SISTEMA VISUAL  ·  v2, identidade 1.0 (set/2026)

   O que mudou em relação à v1:
   - A paleta é a MEDIDA no arquivo do designer, não a aproximada.
   - A fonte é Figtree, que tem 87,3% de coincidência com as letras
     do logo (medida contra 20 famílias).
   - Saiu a grade quadriculada que perseguia o cursor.
   - Saiu o halo e o horizonte que brilhavam sob o mouse.
   - Saiu a borda cônica que girava nos cards.
   - Saíram as sombras douradas grandes.

   Os NOMES das variáveis foram mantidos de propósito: o HTML das 9
   páginas usa var(--dourado) e var(--texto-2) em estilo inline. Só os
   VALORES mudaram — por isso nenhuma página precisou ser reescrita.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* --- as cores da marca, medidas no arquivo do designer --- */
  --roxo-noite: #1E1A2B;   /* tinta   — o fundo da página */
  --roxo:       #28223B;   /* roxo    — cards e blocos */
  --roxo-2:     #352D52;   /* casca   — elevação e hover */
  --dourado:    #F9B533;   /* amarelo — A cor da marca */
  --dourado-2:  #D6B66A;   /* coroa   — filetes e apoio */
  --verde:      #9CC072;   /* folha, clareada para ler sobre o roxo */

  --branco:  #FFFFFF;
  --texto-2: rgba(238,235,245,.74);
  --texto-3: rgba(238,235,245,.50);
  --linha:   rgba(249,181,51,.22);
  --linha-2: rgba(255,255,255,.075);

  /* sombra neutra e discreta: profundidade sem brilho colorido */
  --sombra:    0 1px 2px rgba(0,0,0,.28), 0 8px 24px -16px rgba(0,0,0,.5);
  --sombra-hi: 0 1px 3px rgba(0,0,0,.34), 0 14px 32px -18px rgba(0,0,0,.6);

  --texto-fonte: "Figtree", "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "Cascadia Mono", Consolas, ui-monospace, monospace;
  --e: cubic-bezier(.22,.72,.3,1);

  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  min-height: 100dvh; position: relative;
  background: var(--roxo-noite); color: var(--branco);
  font-family: var(--texto-fonte); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--dourado); outline-offset: 3px; border-radius: 4px;
}

/* ---------- FUNDO ----------
   Era uma grade que acendia sob o cursor. Agora é um único clarão
   parado no topo, fraco, só para o cabeçalho não flutuar no vazio.
   Não se move, não segue o mouse, não pisca. */
.fm-rig { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.fm-rig .base {
  position: absolute; inset: 0;
  background: radial-gradient(120% 62% at 50% -12%, rgba(53,45,82,.75), transparent 62%);
}
.fm-rig .live,
.fm-rig .spot,
.fm-rig .aurora,
.fm-rig .horizonte { display: none; }

/* ---------- ESQUELETO ---------- */
.fm-wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.fm-sec { position: relative; z-index: 2; padding: 104px 0; }
.fm-sec.tight { padding: 68px 0; }
.fm-sec.alt { background: rgba(40,34,59,.58); border-block: 1px solid var(--linha-2); }
@media (max-width: 620px) { .fm-sec { padding: 68px 0; } }

/* ---------- TIPOGRAFIA ---------- */
.fm-eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px;
  font-family: var(--texto-fonte); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--dourado);
}
/* o ponto perde o brilho: vira um traço curto, que marca a seção */
.fm-eyebrow i {
  width: 18px; height: 2px; border-radius: 2px; flex: none;
  background: var(--dourado);
}
.fm-h1 {
  font-weight: 800; font-size: clamp(33px, 4.8vw, 60px); line-height: 1.05;
  letter-spacing: -.025em; margin-bottom: 20px; text-wrap: balance;
}
.fm-h2 {
  font-weight: 800; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.14;
  letter-spacing: -.02em; margin-bottom: 16px; text-wrap: balance;
}
.fm-h3 { font-weight: 700; font-size: 19px; line-height: 1.32; margin-bottom: 8px; }
.fm-h1 em, .fm-h2 em { font-style: normal; color: var(--dourado); }
.fm-lead { font-size: clamp(16px, 1.8vw, 19.5px); color: var(--texto-2); max-width: 62ch; }
.fm-num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ---------- BOTÕES ----------
   Chapado, sem gradiente e sem sombra colorida. O amarelo da marca
   sobre o roxo escuro dá 8,45:1 — passa em AAA com folga. */
.fm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border: 1px solid var(--dourado); border-radius: 8px; cursor: pointer;
  background: var(--dourado); color: #1E1A2B;
  font-family: var(--texto-fonte); font-weight: 700; font-size: 16px;
  letter-spacing: .01em; text-decoration: none; text-align: center;
  transition: background .18s var(--e), border-color .18s var(--e);
}
.fm-btn:hover { background: #FFC55A; border-color: #FFC55A; }
.fm-btn-2 {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 8px; text-decoration: none;
  border: 1px solid var(--linha-2); background: transparent;
  color: var(--branco); font-weight: 600; font-size: 16px;
  transition: border-color .18s var(--e), background .18s var(--e);
}
.fm-btn-2:hover { border-color: var(--dourado); background: rgba(249,181,51,.08); }
.fm-btn svg, .fm-btn-2 svg { width: 19px; height: 19px; stroke-width: 1.7; flex: none; }

/* ---------- CARD ----------
   Era uma borda cônica que girava no hover. Agora a borda só muda
   de cor. Nada gira, nada levanta, nada acende. */
.fm-card {
  position: relative; border-radius: 10px; padding: 26px;
  background: var(--roxo); border: 1px solid var(--linha-2);
  transition: border-color .2s var(--e), background .2s var(--e);
}
@media (hover: hover) {
  .fm-card:hover { border-color: var(--linha); background: var(--roxo-2); }
}

/* ---------- CABEÇALHO ---------- */
.fm-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(30,26,43,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linha-2);
}
.fm-nav .fm-wrap { display: flex; align-items: center; gap: 20px; height: 76px; }
.fm-nav .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.fm-nav .logo img { height: 30px; width: auto; }
.fm-nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.fm-nav-links a {
  display: block; padding: 9px 13px; border-radius: 6px; text-decoration: none;
  color: var(--texto-2); font-size: 14.5px; font-weight: 500;
  transition: color .16s, background .16s;
}
.fm-nav-links a:hover { color: var(--branco); background: rgba(255,255,255,.055); }
.fm-nav-links a[aria-current="page"] { color: var(--dourado); font-weight: 600; }
.fm-nav .fm-btn { padding: 11px 20px; font-size: 14px; }
.fm-burger {
  display: none; width: 44px; height: 44px; border-radius: 8px; flex: none;
  border: 1px solid var(--linha-2); background: transparent; color: var(--branco);
  align-items: center; justify-content: center; cursor: pointer;
}
.fm-burger svg { width: 20px; height: 20px; stroke-width: 1.7; }

@media (max-width: 940px) {
  .fm-burger { display: flex; }
  .fm-nav .fm-btn { display: none; }
  .fm-nav-links {
    position: fixed; inset: 76px 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--roxo-noite); border-bottom: 1px solid var(--linha-2);
    padding: 12px 24px 24px; display: none;
  }
  .fm-nav-links[data-open] { display: flex; }
  .fm-nav-links a { padding: 15px 8px; font-size: 17px; border-bottom: 1px solid var(--linha-2); }
}

/* ---------- FAIXA DE CONFIANÇA ---------- */
.fm-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center;
  padding: 20px 0 0; margin-top: 34px; border-top: 1px solid var(--linha-2);
}
.fm-trust span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--texto-2);
}
.fm-trust svg { width: 17px; height: 17px; stroke-width: 1.7; color: var(--verde); flex: none; }

/* ---------- GRIDS ---------- */
.fm-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fm-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 940px) { .fm-grid-3, .fm-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .fm-grid-2, .fm-grid-3, .fm-grid-4 { grid-template-columns: 1fr; } }

/* número grande de resultado */
.fm-stat .v {
  font-family: var(--mono); font-weight: 700; font-size: clamp(29px, 3.4vw, 40px);
  line-height: 1; color: var(--dourado); letter-spacing: -.03em; margin-bottom: 8px;
}
.fm-stat .k { font-size: 14.5px; color: var(--texto-2); line-height: 1.45; }

/* ---------- KITS ---------- */
.fm-kit { display: flex; flex-direction: column; gap: 14px; text-align: center; }
.fm-kit .selo {
  align-self: center; font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--linha); color: var(--dourado);
}
.fm-kit .de { font-size: 14px; color: var(--texto-3); text-decoration: line-through; }
.fm-kit .parcela {
  font-family: var(--mono); font-weight: 700; font-size: clamp(26px, 3vw, 33px);
  color: var(--dourado); line-height: 1.1;
}
.fm-kit .avista { font-size: 15px; color: var(--texto-2); }
.fm-kit .avista b { font-family: var(--mono); color: var(--branco); }
.fm-kit ul { list-style: none; display: flex; flex-direction: column; gap: 7px; font-size: 14px; color: var(--texto-2); }
.fm-kit ul li { display: flex; align-items: center; justify-content: center; gap: 8px; }
.fm-kit ul svg { width: 15px; height: 15px; stroke-width: 1.8; color: var(--verde); flex: none; }
.fm-kit .fm-btn { width: 100%; }
/* o destaque agora é a borda amarela sólida, sem halo em volta */
.fm-kit-destaque { border-color: var(--dourado); background: var(--roxo-2); }
.fm-kit-destaque .selo { background: var(--dourado); color: #1E1A2B; border-color: var(--dourado); font-weight: 700; }

/* ---------- DEPOIMENTOS ---------- */
.fm-stars { display: inline-flex; gap: 3px; color: var(--dourado); }
.fm-stars svg { width: 16px; height: 16px; }
.fm-dep { display: flex; flex-direction: column; gap: 12px; }
.fm-dep .quem { display: flex; align-items: center; gap: 12px; }
.fm-dep .quem img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.fm-dep .quem b { display: block; font-size: 15px; }
.fm-dep .quem span { font-size: 12.5px; color: var(--texto-3); }
.fm-dep p { font-size: 15px; color: var(--texto-2); line-height: 1.6; }
.fm-dep .ok {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-size: 12px; color: var(--verde);
}
.fm-dep .ok svg { width: 14px; height: 14px; stroke-width: 2; }

/* ---------- ACORDEÃO (FAQ) ---------- */
.fm-acc { border-top: 1px solid var(--linha-2); }
.fm-acc details { border-bottom: 1px solid var(--linha-2); }
.fm-acc summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-weight: 600; font-size: 17.5px;
}
.fm-acc summary::-webkit-details-marker { display: none; }
.fm-acc summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--dourado); border-bottom: 2px solid var(--dourado);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s var(--e);
}
.fm-acc details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.fm-acc .corpo { padding: 0 0 22px; color: var(--texto-2); font-size: 16px; }

/* ---------- BARRA FIXA NO CELULAR ---------- */
.fm-barra {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none;
  gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(30,26,43,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--linha-2);
  transform: translateY(110%); transition: transform .26s var(--e);
}
.fm-barra[data-on] { transform: none; }
.fm-barra .fm-btn, .fm-barra .fm-btn-2 { flex: 1; padding: 14px 12px; font-size: 15px; }
@media (max-width: 940px) { .fm-barra { display: flex; } body { padding-bottom: 0; } }

/* ---------- RODAPÉ ---------- */
.fm-foot {
  position: relative; z-index: 2;
  border-top: 1px solid var(--linha-2); padding: 64px 0 34px;
  background: rgba(40,34,59,.5);
}
.fm-foot .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .fm-foot .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fm-foot .cols { grid-template-columns: 1fr; } }
.fm-foot h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dourado); margin-bottom: 16px;
}
.fm-foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fm-foot a { color: var(--texto-2); text-decoration: none; font-size: 14.5px; }
.fm-foot a:hover { color: var(--dourado); }
.fm-foot .dados { font-size: 14px; color: var(--texto-2); line-height: 1.7; }
.fm-foot .dados .fm-num { color: var(--texto-3); }
.fm-foot .base {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--linha-2);
  font-size: 13px; color: var(--texto-3); line-height: 1.7;
}

/* ---------- ENTRADA DAS SEÇÕES ----------
   Movimento menor que na v1 (era 26px), e some por completo para quem
   pediu menos animação no sistema. */
.fm-reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--e), transform .5s var(--e);
}
.fm-reveal.fm-visivel { opacity: 1; transform: none; }

/* rede de segurança: se o JS não rodar, nada fica invisível */
.no-js .fm-reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .fm-reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   BLOCO 2 — as classes da versão que está NO AR (V2), portadas
   para a paleta da marca. Tudo aqui existia no site publicado e
   faltou na primeira montagem, feita sobre uma base antiga.
   ============================================================ */

:root {
  --verde-bg: rgba(156,192,114,.10);
  --verde-ln: rgba(156,192,114,.30);
}

/* ---------- HERO ---------- */
.fm-hero { padding: 64px 0 44px; }
.fm-hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center;
}
@media (max-width: 940px) {
  .fm-hero-grid { grid-template-columns: 1fr; gap: 34px; }
}

/* nota 4.9 + estrelas */
.fm-rate {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--linha); background: rgba(249,181,51,.07);
}
.fm-rate b { font-family: var(--mono); font-weight: 700; font-size: 17px; color: var(--dourado); }
.fm-rate .fm-stars svg { width: 15px; height: 15px; }
.fm-rate small { font-size: 12.5px; color: var(--texto-2); }

/* ---------- A ARTE DO HERO: frascos, fígado e jabuticaba ----------
   O fígado é desenho vetorial, não foto: fica nítido em qualquer tela,
   pesa quase nada e não parece imagem de laudo médico. */
.fm-hero-arte {
  position: relative; display: grid; place-items: center; min-height: 360px; isolation: isolate;
}
/* o fígado fica ATRÁS, escurecido e dessaturado para não competir com o
   frasco nem gritar vermelho no meio da paleta roxa */
.fm-hero-arte .figado {
  position: absolute; z-index: 0; width: 78%; max-width: 400px; height: auto;
  opacity: .72; filter: saturate(.9) brightness(1.18);
  transform: translate(1%, -12%);
}
.fm-hero-arte .frascos {
  position: relative; z-index: 2; width: 84%; max-width: 380px; height: auto;
  filter: drop-shadow(0 20px 34px rgba(0,0,0,.5));
}
.fm-hero-arte .jabu {
  position: absolute; z-index: 3; width: 27%; max-width: 150px; height: auto;
  right: 4%; bottom: 4%; border-radius: 50%; aspect-ratio: 1/1; object-fit: cover;
  border: 3px solid var(--roxo-2);
}
@media (max-width: 940px) {
  .fm-hero-arte { min-height: 300px; }
  .fm-hero-arte .frascos { max-width: 290px; }
  .fm-hero-arte .figado { max-width: 300px; }
  .fm-hero-arte .jabu { width: 24%; }
}

.fm-hero-proof { display: flex; flex-direction: column; gap: 0; }
.fm-hero-proof .linha {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 4px; border-bottom: 1px solid var(--linha-2);
}
.fm-hero-proof .linha:last-child { border-bottom: 0; }
.fm-hero-proof .ic {
  width: 40px; height: 40px; border-radius: 8px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249,181,51,.10); border: 1px solid var(--linha); color: var(--dourado);
}
.fm-hero-proof .ic svg { width: 21px; height: 21px; stroke-width: 1.6; }
.fm-hero-proof .tx b { display: block; font-size: 15px; font-weight: 700; }
.fm-hero-proof .tx span { font-size: 13px; color: var(--texto-2); }
.fm-hero-proof .tx .fm-num { color: var(--dourado); }

/* em faixa: as 4 provas lado a lado, abaixo do hero, porque a coluna
   da direita passou a ser ocupada pela imagem do produto */
.fm-proof-faixa { flex-direction: row; gap: 0; }
.fm-proof-faixa .linha {
  flex: 1; border-bottom: 0; border-left: 1px solid var(--linha-2);
  padding: 16px 20px; align-items: flex-start;
}
.fm-proof-faixa .linha:first-child { border-left: 0; padding-left: 4px; }
@media (max-width: 940px) {
  .fm-proof-faixa { flex-wrap: wrap; }
  .fm-proof-faixa .linha {
    flex: 1 1 46%; border-left: 0; border-bottom: 1px solid var(--linha-2); padding-left: 4px;
  }
}
@media (max-width: 560px) { .fm-proof-faixa .linha { flex: 1 1 100%; } }

/* ---------- CREDENCIAIS: é aqui que mora o protocolo da Anvisa ---------- */
.fm-cred {
  position: relative; z-index: 2;
  background: rgba(40,34,59,.6); border-block: 1px solid var(--linha-2);
}
.fm-cred .fm-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.fm-cred .item {
  padding: 22px; border-left: 1px solid var(--linha-2);
  display: flex; flex-direction: row; align-items: flex-start; gap: 13px;
}
/* o ícone em caixa veio da faixa de provas, que saiu daqui de cima */
.fm-cred .ic {
  width: 38px; height: 38px; border-radius: 8px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249,181,51,.10); border: 1px solid var(--linha); color: var(--dourado);
}
.fm-cred .ic svg { width: 20px; height: 20px; stroke-width: 1.6; }
.fm-cred .tx { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.fm-cred .item:first-child { border-left: 0; }
.fm-cred .rot {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dourado);
}
.fm-cred .val { font-size: 15px; font-weight: 700; line-height: 1.3; }
.fm-cred .sub { font-size: 12px; color: var(--texto-3); }
.fm-cred .val .fm-num { color: var(--branco); }
@media (max-width: 860px) {
  .fm-cred .fm-wrap { grid-template-columns: repeat(2, 1fr); }
  .fm-cred .item:nth-child(3) { border-left: 0; }
  .fm-cred .item:nth-child(3), .fm-cred .item:nth-child(4) { border-top: 1px solid var(--linha-2); }
}
@media (max-width: 520px) {
  .fm-cred .fm-wrap { grid-template-columns: 1fr; }
  .fm-cred .item { border-left: 0; border-top: 1px solid var(--linha-2); }
  .fm-cred .item:first-child { border-top: 0; }
}

/* ---------- APOIO ---------- */
.fm-head { max-width: 760px; }
.fm-card--flat { padding: 20px; }
.fm-card--flat .fm-h3 { font-size: 16.5px; }

.fm-fonte {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 22px;
  padding: 14px 16px; border-radius: 8px;
  background: rgba(255,255,255,.03); border: 1px solid var(--linha-2);
  font-size: 13px; color: var(--texto-3); line-height: 1.5;
}
.fm-fonte svg { width: 16px; height: 16px; stroke-width: 1.6; color: var(--dourado); flex: none; margin-top: 2px; }

.fm-sint { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fm-sint li {
  list-style: none; display: flex; align-items: center; gap: 10px;
  padding: 13px 15px; border-radius: 8px;
  background: rgba(255,255,255,.03); border: 1px solid var(--linha-2);
  font-size: 14px; color: var(--texto-2);
}
/* o ponto não acende mais: tinha box-shadow de brilho */
.fm-sint li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: var(--dourado);
}
@media (max-width: 860px) { .fm-sint { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fm-sint { grid-template-columns: 1fr; } }

.fm-resumo { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; }
.fm-resumo .nota { text-align: center; flex: none; }
.fm-resumo .nota .n {
  font-family: var(--mono); font-size: 56px; font-weight: 700;
  color: var(--dourado); line-height: 1;
}
.fm-resumo .barras { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 8px; }
.fm-resumo .row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--texto-2); }
.fm-resumo .row .lab { width: 44px; display: inline-flex; align-items: center; gap: 3px; }
.fm-resumo .row .lab svg { width: 13px; height: 13px; color: var(--dourado); }
.fm-resumo .row .bar { flex: 1; height: 8px; background: var(--linha-2); border-radius: 999px; overflow: hidden; }
.fm-resumo .row .bar > i { display: block; height: 100%; background: var(--dourado); }

.fm-selo-verif {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  padding: 7px 13px; border-radius: 999px;
  background: var(--verde-bg); border: 1px solid var(--verde-ln);
  color: var(--verde); font-size: 12.5px; font-weight: 600;
}
.fm-selo-verif svg { width: 15px; height: 15px; stroke-width: 2; }

/* selo + texto lado a lado. O arquivo do selo tem 2000 px: sem limite
   de largura ele tomava a tela inteira. */
.fm-garantia {
  display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: center;
}
.fm-garantia > img { width: 100%; max-width: 200px; height: auto; }
.fm-garantia .txt > :last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .fm-garantia { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 20px; }
  .fm-garantia > img { max-width: 150px; }
}
.fm-passo .n { font-family: var(--mono); color: var(--dourado); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
