﻿/* =====================================================================
   MOTOR CONSULTA, Design System (B2B)
   Arquitetura de tokens em variáveis CSS.
   Para trocar a marca: ajuste as variáveis em :root (cores e fontes).
   ===================================================================== */

/* ------------------------------ TOKENS ------------------------------ */
:root {
  /* ---- Marca Motor Consulta, azul-marinho #384368 ---- */
  --brand-900: #1b2136;
  --brand-800: #2a3450; /* navy profundo, títulos/superfícies escuras */
  --brand-700: #303b5b;
  --brand-600: #2f3a5c; /* navy p/ links e hover de botão */
  --brand-500: #384368; /* AZUL DA MARCA, ação principal */
  --brand-400: #6b7599;
  --brand-300: #aab2cb;
  --brand-100: #e6e8f1;
  --brand-50:  #f4f6fa;

  /* ---- Acento, dourado da marca #FBAC19 ---- */
  --accent-700: #97690f; /* dourado escuro p/ texto sobre branco (AA) */
  --accent-600: #b57d15;
  --accent-500: #fbac19; /* DOURADO DA MARCA */
  --accent-100: #fde7c6;

  /* ---- Neutros (slate) ---- */
  --ink-900: #0d1526;
  --ink-800: #1a2233;
  --ink-700: #2b3446;
  --ink-600: #475467;
  --ink-500: #667085;
  --ink-400: #98a2b3;
  --ink-300: #d0d5dd;
  --ink-200: #e4e7ec;
  --ink-100: #f2f4f7;
  --ink-50:  #f8fafc;
  --white:   #ffffff;

  /* ---- Semânticos ---- */
  --success: #16b364;
  --success-bg: #e9fbf1;
  --warning: #d9840a;
  --warning-bg: #fef4e6;
  --error:   #d92d20;
  --error-bg: #fef1f0;
  --info:    #1e6fe0;
  --info-bg: #eaf2fe;

  /* ---- Superfícies / semântica de UI ---- */
  --bg:          #ffffff;
  --bg-subtle:   #f6f9fc;
  --bg-inset:    #eef2f7;
  --surface:     #ffffff;
  --border:      #e4e7ec;
  --border-strong:#d0d5dd;
  --text:        var(--ink-800);
  --text-muted:  var(--ink-600);
  --text-subtle: var(--ink-500);
  --heading:     var(--brand-800);
  --link:        var(--brand-600);

  /* ---- Tipografia ---- */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Sora", var(--font-sans);

  --fs-xs: 0.78rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.6;

  /* ---- Espaçamentos ---- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* ---- Bordas / raios / sombras ---- */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(16,24,40,.06);
  --shadow-sm: 0 2px 6px rgba(16,24,40,.08);
  --shadow-md: 0 8px 24px rgba(16,24,40,.10);
  --shadow-lg: 0 20px 48px rgba(10,37,64,.16);

  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ------------------------------ RESET ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--heading); line-height: var(--lh-tight); font-weight: 700; letter-spacing: -0.02em; }

/* ---------------------------- A11Y ---------------------------------- */
:focus-visible { outline: 3px solid var(--brand-400); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand-800); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --------------------------- LAYOUT --------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-8); }
.section--subtle { background: var(--bg-subtle); }
.section--dark { background: var(--brand-800); color: #dbe6f5; }
.section--dark h2, .section--dark h3 { color: #fff; }
.grid { display: grid; gap: var(--sp-5); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-sm);
  letter-spacing: .06em; text-transform: uppercase; color: var(--accent-500);
}
.section-head { max-width: 720px; margin-bottom: var(--sp-6); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--fs-2xl); margin-top: var(--sp-2); }
.section-head p { color: var(--text-muted); font-size: var(--fs-md); margin-top: var(--sp-3); }
.lead { font-size: var(--fs-md); color: var(--text-muted); }

/* --------------------------- BOTÕES --------------------------------- */
.btn {
  --btn-bg: var(--brand-500); --btn-fg: #fff; --btn-bd: var(--brand-500);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-base);
  padding: .8rem 1.5rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  cursor: pointer; text-decoration: none; transition: transform .12s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: var(--shadow-xs); min-height: 48px; line-height: 1.1; text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn--primary:hover { background: var(--brand-600); border-color: var(--brand-600); }
.btn--accent { --btn-bg: var(--accent-500); --btn-bd: var(--accent-500); --btn-fg: var(--brand-900); }
.btn--accent:hover { background: var(--accent-600); border-color: var(--accent-600); }
.btn--whats { --btn-bg: #0e8340; --btn-bd: #0e8340; }
.btn--whats:hover { background: #0a6c34; border-color: #0a6c34; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--brand-700); --btn-bd: var(--border-strong); }
.btn--ghost:hover { --btn-bg: var(--brand-50); border-color: var(--brand-300); }
.btn--on-dark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.5); }
.btn--on-dark:hover { --btn-bg: rgba(255,255,255,.12); border-color: #fff; }
.btn--lg { font-size: var(--fs-md); padding: 1rem 1.9rem; min-height: 56px; }
.btn--block { display: flex; width: 100%; }
.btn[aria-disabled="true"], .btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn .spinner { display: none; }
.btn.is-loading { pointer-events: none; }
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .7; }
.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.45); border-top-color: #fff; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------- CARDS ---------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-5); box-shadow: var(--shadow-xs); transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
  height: 100%;
}
.card--hover:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--brand-100); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  display: grid; place-items: center; background: var(--brand-100); color: var(--brand-600); margin-bottom: var(--sp-4);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.card p { color: var(--text-muted); font-size: var(--fs-base); }

/* Card de serviço com lista */
.service-card ul { margin-top: var(--sp-3); display: grid; gap: .4rem; }
.service-card li { display: flex; gap: .5rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-muted); }
.service-card li::before { content: ""; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px;
  background: var(--accent-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316b364' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%; }

/* --------------------------- BADGES --------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: .4rem; font-size: var(--fs-xs); font-weight: 600;
  padding: .3rem .7rem; border-radius: var(--radius-pill); background: var(--brand-100); color: var(--brand-700);
}
.badge--accent { background: var(--accent-100); color: var(--accent-700); }
.badge--dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* --------------------------- STATS ---------------------------------- */
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 700; color: var(--brand-500); line-height: 1; letter-spacing: -.03em; }
.section--dark .stat__num { color: #fbac19; }
.stat__label { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--sp-2); }
.section--dark .stat__label { color: #a9bfdd; }

/* --------------------------- ALERTAS -------------------------------- */
.alert { display: flex; gap: .7rem; padding: .9rem 1.1rem; border-radius: var(--radius); font-size: var(--fs-sm); border: 1px solid transparent; }
.alert svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; }
.alert--success { background: var(--success-bg); color: #08663a; border-color: #b6ecce; }
.alert--error { background: var(--error-bg); color: #98261c; border-color: #f6c9c4; }
.alert--info { background: var(--info-bg); color: #16509c; border-color: #c3dcfb; }
.alert--warning { background: var(--warning-bg); color: #93590a; border-color: #f6dcac; }

/* --------------------------- FORMULÁRIOS ---------------------------- */
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-weight: 600; font-size: var(--fs-sm); margin-bottom: .4rem; color: var(--ink-700); }
.field .req { color: var(--error); }
.field .hint { font-size: var(--fs-xs); color: var(--text-subtle); margin-top: .3rem; }
.input, .select, .textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  background: #fff; font-size: var(--fs-base); transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  min-height: 48px;
}
.textarea { min-height: 120px; resize: vertical; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--brand-300); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 4px var(--brand-100); }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { border-color: var(--error); }
.field.has-error .input:focus, .field.has-error .textarea:focus, .field.has-error .select:focus { box-shadow: 0 0 0 4px var(--error-bg); }
.field.is-valid .input, .field.is-valid .select, .field.is-valid .textarea { border-color: var(--success); }
.field__error { display: none; color: var(--error); font-size: var(--fs-xs); margin-top: .35rem; font-weight: 500; }
.field.has-error .field__error { display: flex; gap: .35rem; align-items: center; }
.field__error::before { content: "⚠"; }
.checkbox { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--text-muted); cursor: pointer; }
.checkbox input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--brand-500); flex: 0 0 auto; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --------------------------- HEADER --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border); height: var(--header-h);
}
.site-header .container { display: flex; align-items: center; height: 100%; gap: var(--sp-2); max-width: 1280px; }
.site-header .brand__logo { height: 26px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--brand-800); flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand__logo { height: 30px; width: auto; display: block; }
.footer-brand .brand__logo { height: 30px; }
@media (max-width: 520px) { .brand__logo { height: 26px; } }
.brand small { display: block; font-family: var(--font-sans); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-500); margin-top: -3px; }
.main-nav { display: flex; align-items: center; gap: 0; margin-inline: auto; }
.main-nav a { color: var(--ink-700); font-weight: 500; font-size: var(--fs-sm); padding: .4rem .5rem; border-radius: var(--radius-sm); white-space: nowrap; }
.main-nav a:hover { background: var(--brand-50); color: var(--brand-700); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--brand-600); background: var(--brand-50); }
.main-nav .nav-login { color: var(--brand-600); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: var(--sp-2); flex: 0 0 auto; }
.header-cta .btn { padding: .55rem 1rem; min-height: 44px; white-space: nowrap; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border-strong); background: #fff; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--brand-800); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .main-nav, .header-cta .btn--ghost { display: none; }
  .site-header.nav-open .main-nav {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); padding: var(--sp-4); gap: var(--sp-1);
  }
  .site-header.nav-open .main-nav a { padding: .85rem 1rem; font-size: var(--fs-base); }
}

/* --------------------------- HERO ----------------------------------- */
.hero { position: relative; background:
    radial-gradient(1100px 500px at 82% -8%, rgba(56,67,104,.16), transparent 60%),
    radial-gradient(700px 420px at -5% 30%, rgba(209,144,28,.12), transparent 55%),
    linear-gradient(180deg, var(--brand-50), #fff 62%);
  overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--sp-7); align-items: center; padding-block: var(--sp-9); }
.hero h1 { font-size: var(--fs-4xl); letter-spacing: -.03em; }
.hero h1 .hl { color: var(--accent-500); }
.hero p.lead { margin-top: var(--sp-4); max-width: 34ch; font-size: var(--fs-lg); line-height: var(--lh-snug); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-5); margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--border); }
.hero__trust .stat { text-align: left; }
.hero__trust .stat__num { font-size: var(--fs-xl); }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: var(--sp-6); padding-block: var(--sp-7); }
  .hero h1 { font-size: var(--fs-3xl); }
  .hero p.lead { max-width: none; }
}

/* Mock de consulta (visual do hero) */
.consult-mock { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.consult-mock__bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; background: var(--brand-800); color: #cfe0f6; font-size: var(--fs-sm); }
.consult-mock__bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #35507a; }
.consult-mock__body { padding: var(--sp-5); }
.plate {
  display: flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font-display); font-weight: 700;
  letter-spacing: .18em; font-size: 1.5rem; color: var(--brand-800); background: #eef2f7; border: 2px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: .7rem 1rem; margin-bottom: var(--sp-4);
}
.plate .br { font-size: .6rem; letter-spacing: .1em; background: var(--brand-800); color: #fff; padding: .2rem .4rem; border-radius: 4px; }
.result-row { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--border); font-size: var(--fs-sm); }
.result-row:last-child { border-bottom: 0; }
.result-row .k { color: var(--text-muted); }
.result-row .v { font-weight: 600; color: var(--ink-800); display: inline-flex; align-items: center; gap: .4rem; }
.tag-ok { color: var(--accent-700); background: var(--accent-100); padding: .15rem .55rem; border-radius: var(--radius-pill); font-size: var(--fs-xs); font-weight: 700; }
.tag-alert { color: #93590a; background: var(--warning-bg); padding: .15rem .55rem; border-radius: var(--radius-pill); font-size: var(--fs-xs); font-weight: 700; }

/* --------------------------- LOGOS / TRUST BAR ---------------------- */
.trustbar { border-block: 1px solid var(--border); background: #fff; }
.trustbar .container { display: flex; align-items: center; justify-content: center; gap: var(--sp-6) var(--sp-8); flex-wrap: wrap; padding-block: var(--sp-5); }
.trustbar span { font-size: var(--fs-sm); color: var(--text-subtle); font-weight: 600; }
.trustbar .seg { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink-600); font-weight: 600; font-size: var(--fs-sm); }
.trustbar .seg svg { width: 20px; height: 20px; color: var(--brand-500); }

/* --------------------------- STEPS (como funciona) ------------------ */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step__n { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-500); color: #fff; font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; margin-bottom: var(--sp-4); }
.step h3 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.step p { color: var(--text-muted); font-size: var(--fs-sm); }

/* --------------------------- SOLUÇÕES (segmentos) ------------------- */
.seg-card { display: flex; gap: var(--sp-4); }
.seg-card .card__icon { flex: 0 0 auto; margin-bottom: 0; }

/* ----- DEPOIMENTOS (componente reservado para casos reais de clientes) ----- */
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--sp-5); box-shadow: var(--shadow-xs); height: 100%; display: flex; flex-direction: column; }
.quote__stars { color: #f5a623; letter-spacing: .1em; margin-bottom: var(--sp-3); }
.quote p { font-size: var(--fs-md); color: var(--ink-700); }
.quote__by { margin-top: auto; padding-top: var(--sp-4); display: flex; align-items: center; gap: .8rem; }
.quote__av { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-100); color: var(--brand-700); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.quote__by b { display: block; font-size: var(--fs-sm); }
.quote__by small { color: var(--text-subtle); font-size: var(--fs-xs); }

/* --------------------------- FAQ (acordeão) ------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 1.2rem 2.5rem 1.2rem 0; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-md); color: var(--heading); cursor: pointer; position: relative; }
.faq__q::after { content: ""; position: absolute; right: .25rem; top: 50%; width: 14px; height: 14px; transform: translateY(-50%) rotate(0);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e6fe0' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat; transition: transform .2s var(--ease); }
.faq__q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s var(--ease); }
.faq__a > div { padding-bottom: 1.3rem; color: var(--text-muted); }

/* --------------------------- CTA FAIXA ------------------------------ */
.cta-band { background: linear-gradient(120deg, var(--brand-700), var(--brand-500)); color: #fff; border-radius: var(--radius-lg); padding: var(--sp-8) var(--sp-6); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; font-size: var(--fs-2xl); }
.cta-band p { color: #dbe8fb; max-width: 620px; margin: var(--sp-3) auto var(--sp-6); font-size: var(--fs-md); }
.cta-band .hero__actions { justify-content: center; margin-top: 0; }

/* --------------------------- PÁGINA: header interno ----------------- */
.page-hero { background: linear-gradient(180deg, var(--brand-50), #fff); border-bottom: 1px solid var(--border); }
.page-hero .container { padding-block: var(--sp-8); }
.breadcrumb { font-size: var(--fs-sm); color: var(--text-subtle); margin-bottom: var(--sp-3); }
.breadcrumb a { color: var(--text-muted); }
.page-hero h1 { font-size: var(--fs-3xl); max-width: 18ch; }
.page-hero p { color: var(--text-muted); font-size: var(--fs-md); margin-top: var(--sp-3); max-width: 60ch; }

/* Prose (textos legais / guia) */
.prose { max-width: 780px; }
.prose h2 { font-size: var(--fs-xl); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose h3 { font-size: var(--fs-lg); margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.prose p, .prose li { color: var(--text-muted); margin-bottom: var(--sp-3); }
.prose ul { list-style: disc; padding-left: 1.3rem; }
.prose li { margin-bottom: var(--sp-2); }
.prose a { text-decoration: underline; }

/* --------------------------- RODAPÉ --------------------------------- */
.site-footer { background: var(--brand-900); color: #aebfd8; padding-block: var(--sp-8) var(--sp-6); }
.site-footer a { color: #cdd9ee; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--sp-6); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: var(--sp-3); font-size: var(--fs-sm); color: #91a4c2; max-width: 32ch; }
.footer-col h2 { color: #fff; font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: var(--sp-3); }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { font-size: var(--fs-sm); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); margin-bottom: .55rem; }
.footer-contact svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; color: var(--brand-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: var(--sp-7); padding-top: var(--sp-5); display: flex; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; font-size: var(--fs-xs); color: #7f92b2; }
.footer-bottom a { font-size: var(--fs-xs); }

/* --------------------------- WHATSAPP FLUTUANTE --------------------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #1faf52; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .15s var(--ease); }
.wa-float:hover { transform: scale(1.06); text-decoration: none; }
.wa-float svg { width: 32px; height: 32px; }
@media (max-width: 520px) { .wa-float { width: 54px; height: 54px; } }

/* --------------------------- REVEAL (scroll) ------------------------ */
/* Só esconde quando há JS (evita conteúdo invisível sem JavaScript) */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* --------------------------- UTILIDADES ----------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-4 { margin-top: var(--sp-4); } .mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; } .items-center { align-items: center; } .gap-3 { gap: var(--sp-3); } .wrap { flex-wrap: wrap; }
.divider { height: 1px; background: var(--border); border: 0; margin-block: var(--sp-6); }
.contact-cards li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: var(--sp-4); }
.contact-cards .card__icon { width: 44px; height: 44px; margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7); align-items: start; }
.two-col > * { min-width: 0; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: var(--sp-6); } }

/* --------------------------- CHIPS DE FONTES ------------------------ */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .45rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: .55rem 1.05rem; font-size: var(--fs-sm); font-weight: 600; color: var(--ink-700); box-shadow: var(--shadow-xs); }
.chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-500); flex: 0 0 auto; }
.benefit-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); margin-top: var(--sp-5); }
@media (max-width: 700px) { .benefit-chips { grid-template-columns: 1fr 1fr; } }
.benefit-chips .bchip { display: flex; align-items: center; gap: .55rem; background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius); padding: .8rem 1rem; font-weight: 600; font-size: var(--fs-sm); color: var(--ink-700); }
.benefit-chips .bchip svg { width: 20px; height: 20px; color: var(--accent-600); flex: 0 0 auto; }

/* --------------------------- COMPARAÇÃO ----------------------------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: stretch; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare__col { border-radius: var(--radius-lg); padding: var(--sp-6); border: 1px solid var(--border); }
.compare__col--bad { background: var(--bg-subtle); }
.compare__col--good { background: var(--brand-800); color: #dbe6f5; border-color: var(--brand-800); box-shadow: var(--shadow-md); }
.compare__col h3 { margin-bottom: var(--sp-4); font-size: var(--fs-lg); }
.compare__col--good h3 { color: #fff; }
.compare__col ul { display: grid; gap: .75rem; }
.compare__col li { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-base); }
.compare__col--bad li { color: var(--text-muted); }
.compare__col--bad li::before { content: "✕"; color: var(--ink-400); font-weight: 700; flex: 0 0 auto; }
.compare__col--good li::before { content: "✓"; color: #4bd88a; font-weight: 700; flex: 0 0 auto; }

/* --------------------------- CARD DE PROBLEMA ----------------------- */
.problem-card { display: flex; gap: var(--sp-4); align-items: flex-start; }
.problem-card .p-ico { width: 44px; height: 44px; flex: 0 0 auto; border-radius: var(--radius); display: grid; place-items: center; background: #fdeceb; color: var(--error); }
.problem-card .p-ico svg { width: 22px; height: 22px; }
.problem-card h3 { font-size: var(--fs-md); margin-bottom: .3rem; }
.problem-card p { color: var(--text-muted); font-size: var(--fs-sm); }

/* --------------------------- MODAL / LOGIN -------------------------- */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: var(--sp-4); }
.modal__backdrop { position: absolute; inset: 0; background: rgba(13,21,38,.55); backdrop-filter: blur(3px); animation: mc-fade .2s ease; }
.modal__dialog { position: relative; z-index: 1; width: 100%; max-width: 430px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: var(--sp-6); animation: mc-pop .22s var(--ease); max-height: calc(100vh - 2rem); overflow-y: auto; }
@keyframes mc-fade { from { opacity: 0; } }
@keyframes mc-pop { from { opacity: 0; transform: translateY(10px) scale(.98); } }
@media (prefers-reduced-motion: reduce) { .modal__backdrop, .modal__dialog { animation: none; } }
.modal__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: 0; background: none; border-radius: var(--radius-sm); cursor: pointer; color: var(--ink-500); display: grid; place-items: center; }
.modal__close:hover { background: var(--ink-100); color: var(--ink-800); }
.modal__close svg { width: 22px; height: 22px; }
.modal__brand { margin-bottom: var(--sp-4); }
.modal__brand img { height: 28px; width: auto; }
.modal__dialog h2 { font-size: var(--fs-xl); }
.modal__sub { color: var(--text-muted); font-size: var(--fs-sm); margin: .4rem 0 var(--sp-5); }
.modal__row { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); margin-bottom: var(--sp-5); font-size: var(--fs-sm); flex-wrap: wrap; }
.modal__row a { font-weight: 600; }
.modal__foot { text-align: center; margin-top: var(--sp-5); font-size: var(--fs-sm); color: var(--text-muted); }
.pass-wrap { position: relative; }
.pass-wrap .input { padding-right: 46px; }
.pass-toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border: 0; background: none; cursor: pointer; color: var(--ink-500); display: grid; place-items: center; border-radius: 6px; }
.pass-toggle:hover { color: var(--brand-600); }
.pass-toggle svg { width: 20px; height: 20px; }
body.modal-open { overflow: hidden; }

/* --------------------------- GUIA / NOTÍCIAS ------------------------ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }
.news-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xs); transition: box-shadow .2s var(--ease), transform .2s var(--ease); height: 100%; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card__thumb { height: 168px; display: grid; place-items: center; position: relative; color: #fff; background: linear-gradient(135deg, var(--brand-700), var(--brand-500)); }
.news-card__thumb--b { background: linear-gradient(135deg, #7a5712, var(--accent-500)); }
.news-card__thumb--c { background: linear-gradient(135deg, #21506e, #2f3a5c); }
.news-card__thumb svg { width: 48px; height: 48px; opacity: .95; }
.news-card__thumb .tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: var(--fs-xs); font-weight: 600; padding: .25rem .65rem; border-radius: var(--radius-pill); }
.news-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.news-card__date { font-size: var(--fs-xs); color: var(--text-subtle); font-weight: 600; margin-bottom: .5rem; }
.news-card h3 { font-size: var(--fs-md); line-height: 1.25; margin-bottom: .5rem; }
.news-card h3 a { color: var(--heading); }
.news-card h3 a:hover { color: var(--brand-600); text-decoration: none; }
.news-card p { color: var(--text-muted); font-size: var(--fs-sm); flex: 1; }
.news-card__more { margin-top: var(--sp-4); font-weight: 600; font-size: var(--fs-sm); display: inline-flex; align-items: center; gap: .35rem; }
.news-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-6); }

/* --------------------------- SELO RECLAME AQUI ---------------------- */
.ra-seal { display: inline-flex; align-items: center; gap: .6rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: .55rem .9rem; box-shadow: var(--shadow-xs); }
.ra-seal:hover { text-decoration: none; box-shadow: var(--shadow-sm); }
.ra-seal svg { width: 28px; height: 28px; flex: 0 0 auto; }
.ra-seal__t { line-height: 1.15; }
.ra-seal__t small { display: block; font-size: .6rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-500); font-weight: 700; }
.ra-seal__t b { font-family: var(--font-display); font-size: .95rem; letter-spacing: -.01em; }
.ra-seal__t b .b { color: #123a8f; }
.ra-seal__t b .g { color: #4f9e1f; }

/* Selos (Reclame Aqui + LGPD) */
.seals-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--sp-5); }
.lgpd-seal { display: inline-flex; align-items: center; gap: .55rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: .55rem .9rem; box-shadow: var(--shadow-xs); }
.lgpd-seal:hover { text-decoration: none; box-shadow: var(--shadow-sm); }
.lgpd-seal svg { width: 26px; height: 26px; flex: 0 0 auto; }
.lgpd-seal__t b { font-family: var(--font-display); font-size: .95rem; color: #0f7a3d; display: block; line-height: 1.05; }
.lgpd-seal__t small { font-size: .56rem; letter-spacing: .02em; color: var(--ink-500); font-weight: 600; text-transform: uppercase; }

/* Redes sociais */
.socials { display: flex; gap: .5rem; margin-top: var(--sp-5); }
.socials a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #cdd9ee; transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease); }
.socials a:hover { background: var(--brand-500); border-color: var(--brand-500); color: #fff; text-decoration: none; }
.socials svg { width: 19px; height: 19px; }

/* --------------------------- PAINEL DE FONTES ----------------------- */
.sources-panel { border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.sources-panel__head { padding: .9rem 1.15rem; background: var(--brand-800); color: #fff; font-weight: 600; font-size: var(--fs-sm); display: flex; align-items: center; gap: .55rem; }
.sources-panel__head svg { width: 18px; height: 18px; color: #fbac19; flex: 0 0 auto; }
.source-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.source-tiles span { background: #fff; padding: .8rem 1.05rem; font-size: var(--fs-sm); font-weight: 600; color: var(--ink-700); display: flex; align-items: center; gap: .55rem; }
.source-tiles span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-500); flex: 0 0 auto; }
.sources-panel__foot { padding: .7rem 1.15rem; font-size: var(--fs-xs); color: var(--text-subtle); border-top: 1px solid var(--border); background: var(--bg-subtle); }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.2rem; margin-top: var(--sp-5); }
@media (max-width: 520px) { .benefit-list { grid-template-columns: 1fr; } }
.benefit-list li { display: flex; align-items: center; gap: .55rem; font-size: var(--fs-sm); font-weight: 600; color: var(--ink-700); }
.benefit-list li svg { width: 18px; height: 18px; color: var(--accent-600); flex: 0 0 auto; }

/* --------------------------- COOKIES (LGPD) ------------------------- */
.cookie[hidden] { display: none; }
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 150; max-width: 470px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: var(--sp-5); animation: mc-pop .25s var(--ease); }
@media (min-width: 560px) { .cookie { left: auto; right: 20px; bottom: 20px; } }
@media (prefers-reduced-motion: reduce) { .cookie { animation: none; } }
.cookie h3 { font-size: var(--fs-md); margin-bottom: .4rem; }
.cookie p { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-4); }
.cookie p a { text-decoration: underline; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie__actions .btn { flex: 1 1 auto; min-height: 44px; padding: .5rem .9rem; font-size: var(--fs-sm); }
.cookie__link { background: none; border: 0; color: var(--brand-600); font-weight: 600; font-size: inherit; cursor: pointer; text-decoration: underline; padding: 0; font-family: inherit; }
.cookie__link:hover { color: var(--brand-700); }
/* Painel de preferências (usa .modal) */
.switch-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.switch-row:last-of-type { border-bottom: 0; }
.switch-row h4 { font-size: var(--fs-base); color: var(--heading); }
.switch-row p { font-size: var(--fs-xs); color: var(--text-subtle); margin-top: .2rem; }
.switch { position: relative; width: 46px; height: 26px; flex: 0 0 auto; margin-top: 2px; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--ink-300); border-radius: 999px; transition: background .15s var(--ease); }
.switch .track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .15s var(--ease); box-shadow: var(--shadow-xs); }
.switch input:checked + .track { background: var(--brand-500); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--accent-500); }
.switch input:focus-visible + .track { outline: 3px solid var(--brand-400); outline-offset: 2px; }

/* --------------------------- PAINEL DE FONTES ----------------------- */
.sources-panel { border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.sources-panel__head { padding: .9rem 1.15rem; background: var(--brand-800); color: #fff; font-weight: 600; font-size: var(--fs-sm); display: flex; align-items: center; gap: .55rem; }
.sources-panel__head svg { width: 18px; height: 18px; color: #fbac19; flex: 0 0 auto; }
.source-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.source-tiles span { background: #fff; padding: .8rem 1.05rem; font-size: var(--fs-sm); font-weight: 600; color: var(--ink-700); display: flex; align-items: center; gap: .55rem; }
.source-tiles span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-500); flex: 0 0 auto; }
.sources-panel__foot { padding: .7rem 1.15rem; font-size: var(--fs-xs); color: var(--text-subtle); border-top: 1px solid var(--border); background: var(--bg-subtle); }
.benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.2rem; margin-top: var(--sp-5); }
@media (max-width: 520px) { .benefit-list { grid-template-columns: 1fr; } }
.benefit-list li { display: flex; align-items: center; gap: .55rem; font-size: var(--fs-sm); font-weight: 600; color: var(--ink-700); }
.benefit-list li svg { width: 18px; height: 18px; color: var(--accent-600); flex: 0 0 auto; }

/* --------------------- SEÇÃO PROBLEMA (split) ---------------------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--sp-7); align-items: start; }
.split__intro h2 { margin-top: var(--sp-2); }
.split__intro p { margin-top: var(--sp-3); color: var(--text-muted); max-width: 42ch; }
.problem-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.problem-list li { display: flex; gap: var(--sp-4); padding: var(--sp-4) 0; border-top: 1px solid var(--border); align-items: flex-start; }
.problem-list li:first-child { border-top: 0; padding-top: 0; }
.problem-list .p-ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: var(--radius); background: var(--brand-50); color: var(--brand-700); display: flex; align-items: center; justify-content: center; }
.problem-list .p-ico svg { width: 22px; height: 22px; }
.problem-list h3 { font-size: var(--fs-md); margin: 0; }
.problem-list p { color: var(--text-muted); font-size: var(--fs-sm); margin: .2rem 0 0; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-5); }
}

/* --------------------- SEÇÃO SOLUÇÃO (painel) --------------------- */
.solution-panel { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; margin-top: var(--sp-6); }
.solution-panel__item { padding: var(--sp-6) var(--sp-5); border-left: 1px solid var(--border); }
.solution-panel__item:first-child { border-left: 0; }
.sp-ico { width: 46px; height: 46px; border-radius: var(--radius); background: var(--brand-800); color: var(--accent-500); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-3); }
.sp-ico svg { width: 24px; height: 24px; }
.solution-panel__item h3 { font-size: var(--fs-md); margin: 0; }
.solution-panel__item p { color: var(--text-muted); font-size: var(--fs-sm); margin: .4rem 0 0; }
@media (max-width: 860px) {
  .solution-panel { grid-template-columns: 1fr 1fr; }
  .solution-panel__item { border-left: 0; border-top: 1px solid var(--border); }
  .solution-panel__item:nth-child(-n+2) { border-top: 0; }
  .solution-panel__item:nth-child(even) { border-left: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .solution-panel { grid-template-columns: 1fr; }
  .solution-panel__item { border-left: 0; border-top: 1px solid var(--border); }
  .solution-panel__item:first-child { border-top: 0; }
  .solution-panel__item:nth-child(2) { border-top: 1px solid var(--border); }
}

/* --------------------- MENU MOBILE: acessar conta + cta ---------- */
.nav-login-mobile, .nav-cta-mobile { display: none; }
@media (max-width: 960px) {
  .site-header.nav-open .main-nav .nav-login-mobile { display: block; color: var(--brand-700); font-weight: 700; border-top: 1px solid var(--border); margin-top: var(--sp-2); padding-top: var(--sp-3); }
}
@media (max-width: 600px) {
  .header-cta .btn--primary { display: none; }
  .site-header.nav-open .main-nav .nav-cta-mobile { display: block; margin-top: var(--sp-3); text-align: center; color: #fff; }
}


/* ============ PRIMEIRA SEÇÃO (hero), versão aprovada ============ */
/* Cabeçalho com mais presença + logo discretamente maior no desktop */
.site-header { box-shadow: 0 1px 0 var(--border), 0 8px 24px rgba(16,24,40,.05); }
@media (min-width: 961px) { .site-header .brand__logo { height: 31px; } }
/* Quadro de consulta: cores semânticas (verde/amarelo/vermelho) */
.hero__visual { position: relative; }
.result-row.row-accent { position: relative; padding-left: .75rem; }
.result-row.row-accent::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 22px; border-radius: 3px; }
.ra-ok::before { background: #16b364; } .ra-warn::before { background: #e0930c; } .ra-bad::before { background: #e0402a; }
.pill { display: inline-flex; align-items: center; gap: .34rem; font-weight: 700; font-size: .72rem; padding: .22rem .6rem; border-radius: var(--radius-pill); line-height: 1; }
.pill svg { width: 13px; height: 13px; flex: 0 0 auto; }
.pill--ok { background: #e7f8ef; color: #0f7a43; }
.pill--warn { background: #fef4e6; color: #9a5b04; }
.pill--bad { background: #fdecea; color: #b42318; }
.result-row .v-neutral { font-weight: 700; color: var(--ink-800); }
/* Cartõezinhos flutuantes ao redor (discretos, somem no mobile) */
.float-card { position: absolute; z-index: 3; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); padding: .55rem .8rem; display: flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 600; color: var(--ink-800); white-space: nowrap; }
.float-card .fc-ico { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.float-card .fc-ico svg { width: 16px; height: 16px; }
.fc-1 { top: -34px; left: 14px; } .fc-1 .fc-ico { background: var(--brand-50); color: var(--brand-600); }
.fc-3 { bottom: -22px; right: -6px; } .fc-3 .fc-ico { background: var(--accent-100); color: var(--accent-700); }
@media (max-width: 960px) { .float-card { display: none; } }
