/* ============================================================
   DESIGN SYSTEM PIPO — variáveis necessárias para as demos.
   Cole no topo do CSS. (extraído de site.css)
   ============================================================ */
:root {
  --bg: #FFFFFF;
  --bg-soft: #F7F3EB;
  --fg: #14110E;
  --sky: #A2CEFF;
  --terra: #DE785C;
  --deep: #1527A9;
  /* cards sem serifa: --serif remapeado para a sans (Manrope) */
  --serif: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --maxw: 1024px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* tema claro / painéis */
  --ink: #14110E;
  --paper: #FFFFFF;
  --beige: #F7F3EB;
  --beige-2: #EFE7D8;
  --line: rgba(20,17,14,0.10);
  --line-strong: rgba(20,17,14,0.16);
  --accent: #2A6FDB;
  --accent-rgb: 42, 111, 219;
  --market: #D9534A;
  --market-rgb: 217, 83, 74;
  --warn: #F0B86A;
  --warn-deep: #E8895A;
}
/* ---- rail de produtos (esquerda) ---- */
.ai-rail { display: flex; flex-direction: column; gap: 4px; }
.ai-rail__item {
  position: relative; text-align: left; cursor: pointer; width: 100%;
  background: transparent; border: 0; color: inherit; font-family: var(--sans);
  padding: 22px 22px 22px 24px; border-radius: 16px;
  display: grid; gap: 8px; opacity: 0.5;
  transition: opacity 0.4s var(--ease), background 0.4s var(--ease);
}
.ai-rail__item::before {
  content: ""; position: absolute; left: 0; top: 16px; bottom: 16px; width: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.ai-rail__item:hover { opacity: 0.8; }
.ai-rail__item.is-active { opacity: 1; background: rgba(20,17,14,0.025); }
.ai-rail__item.is-active::before { transform: scaleY(1); }
.ai-rail__tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.ai-rail__t { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: #14110E; line-height: 1.25; }
.ai-rail__p { font-size: 13px; line-height: 1.6; color: rgba(20,17,14,0.45); max-height: 0; overflow: hidden;
  opacity: 0; transition: max-height 0.45s var(--ease), opacity 0.4s var(--ease); }
.ai-rail__item.is-active .ai-rail__p { max-height: 120px; opacity: 1; }
.ai-rail__bar { display: block; height: 2px; background: rgba(20,17,14,0.08); border-radius: 2px; margin-top: 6px;
  opacity: 0; transition: opacity 0.3s var(--ease); }
.ai-rail__item.is-active .ai-rail__bar { opacity: 1; }
.ai-rail__bar i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 2px; }
.ai-rail__bar i.run { animation: aiRailBar 7.2s linear forwards; }
/* ---- moldura do demo (direita) ---- */
.ai-demo {
  border-radius: 22px; overflow: hidden; min-height: 480px; display: flex; flex-direction: column;
  background: rgba(20,17,14,0.018);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(20,17,14,0.06);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.ai-demo__chrome { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.ai-demo__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(20,17,14,0.14); }
.ai-demo__label { margin-left: 10px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(20,17,14,0.4); }
.ai-demo__screen { flex: 1; display: flex; flex-direction: column; min-height: 0; }
/* mini-botões dos demos */
.mini-btn {
  font-family: var(--sans); font-weight: 600; font-size: 13px; cursor: pointer; white-space: nowrap;
  border-radius: 999px; padding: 11px 20px; line-height: 1;
  background: #14110E; color: #FFFFFF; border: 1px solid #14110E;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
/* ---- Demo 1 · chat ---- */
.chat { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.chat__head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.chat__avatar { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: rgba(var(--accent-rgb), 0.14); color: var(--accent); }
.chat__title { font-weight: 700; font-size: 13px; color: #14110E; }
.chat__status { margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: rgba(20,17,14,0.4); }
.chat__status i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.chat__body { flex: 1; min-height: 0; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; scroll-behavior: smooth; }
.chat__chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 20px; border-top: 1px solid var(--line); }
/* ---- Demo 2 · folha conectada ---- */
.sync { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 28px 24px; gap: 22px; }
.sync__flow { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; }
.sync__node { border: 1px solid var(--line-strong); border-radius: 16px; padding: 18px 16px; background: rgba(20,17,14,0.015); min-height: 116px; }
.sync__node--pipo { border-color: rgba(var(--accent-rgb), 0.3); background: rgba(var(--accent-rgb), 0.05); }
.sync__node-label { display: flex; align-items: center; gap: 7px; font-weight: 700; font-size: 12.5px; color: #14110E; margin: 0 0 14px; }
.sync__node-label svg { color: var(--accent); }
.sync__node-rows { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.sync__node-rows span { height: 7px; border-radius: 4px; background: rgba(20,17,14,0.09); }
.sync__node-rows span:nth-child(1) { width: 86%; }
.sync__node-rows span:nth-child(2) { width: 64%; }
.sync__node-rows span:nth-child(3) { width: 74%; }
.sync__node-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(20,17,14,0.32); margin: 0; }
.sync__node-tag--live { display: flex; align-items: center; gap: 6px; color: var(--accent); }
.sync__node-tag--live i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: aiPulseDot 1.6s infinite; }
.sync__lives { font-family: var(--serif); margin: 0 0 14px; font-size: 13px; color: rgba(20,17,14,0.6); }
.sync__lives b { font-size: 30px; font-weight: 700; color: #14110E; letter-spacing: -0.02em; display: block; line-height: 1; margin-bottom: 5px; }
.no-serif .sync__lives { font-family: var(--sans); }
.sync__wire { position: relative; width: 56px; height: 40px; display: grid; place-items: center; }
.sync__wire-line { width: 100%; height: 2px; background: repeating-linear-gradient(90deg, rgba(20,17,14,0.22) 0 5px, transparent 5px 10px); }
.sync__wire-label { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(20,17,14,0.3); }
.sync__packet { position: absolute; top: 50%; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); transform: translateY(-50%); animation: aiPacket 0.9s var(--ease) forwards; }
.sync__log { display: flex; flex-direction: column; gap: 2px; flex: 1; min-height: 0; }
.sync__ev { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 10px 4px; border-bottom: 1px solid var(--line); }
.sync__ev.is-fresh { background: rgba(var(--accent-rgb), 0.04); }
.sync__ev-ico { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; flex: none; font-weight: 700; font-size: 13px; }
.sync__ev-ico--in { background: rgba(var(--accent-rgb), 0.16); color: var(--accent); }
.sync__ev-ico--out { background: rgba(20,17,14,0.06); color: rgba(20,17,14,0.55); }
.sync__ev-ico--init { background: rgba(20,17,14,0.05); color: rgba(20,17,14,0.4); }
.sync__ev-name { font-weight: 600; font-size: 13px; color: #14110E; }
.sync__ev-meta { display: none; }
.sync__ev-when { font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; color: rgba(20,17,14,0.35); justify-self: end; }
.sync__actions { display: flex; gap: 10px; }
.ai-rail__bar i.run { animation: none; width: 100%; }
.sync__packet { animation: none; opacity: 0; }
.ai-rail { flex-direction: column; }
.ai-rail__item { padding: 16px 16px 16px 18px; }
.ai-demo { min-height: 440px; }
/* ==========================================================================
   V6 — hero (duas orações) + novos demos dos pilares
   ========================================================================== */
.hero__title .hero__line { display: block; }
/* cor de alerta quente (família terra) usada nos demos de dados */
:root { --warn: #F0B86A; --warn-deep: #E8895A; }
/* ---- Bate cadastral · conciliação ---- */
.recon { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 24px; gap: 14px; }
.recon__bar { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line-strong); border-radius: 14px; background: rgba(20,17,14,0.02); }
.recon__bar-ico { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; background: rgba(var(--accent-rgb),0.14); color: var(--accent); transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.recon__bar-ico.ok { background: var(--accent); color: #FFFFFF; }
.recon__bar-txt { flex: 1; min-width: 0; }
.recon__bar-t { font-weight: 700; font-size: 14px; color: #14110E; margin: 0 0 3px; }
.recon__bar-s { font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; color: rgba(20,17,14,0.4); margin: 0; }
.recon__bar-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 9px; border-radius: 999px; flex: none; }
.recon__bar-tag--idle { color: rgba(20,17,14,0.5); border: 1px solid var(--line-strong); }
.recon__bar-tag--warn { color: var(--warn); border: 1px solid rgba(240,184,106,0.4); background: rgba(240,184,106,0.08); }
.recon__bar-tag--ok { color: var(--accent); border: 1px solid rgba(var(--accent-rgb),0.4); background: rgba(var(--accent-rgb),0.08); }
.recon__scan { height: 3px; border-radius: 3px; background: rgba(20,17,14,0.08); overflow: hidden; }
.recon__scan i { display: block; height: 100%; width: 32%; background: var(--accent); border-radius: 3px; animation: reconScan 1.2s var(--ease) infinite; }
.recon__list { flex: 1; min-height: 0; display: flex; flex-direction: column; gap: 8px; }
.recon__empty { font-size: 13px; line-height: 1.6; color: rgba(20,17,14,0.42); margin: 6px 2px; }
.recon__row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(20,17,14,0.015); transition: border-color 0.4s var(--ease), background 0.4s var(--ease); }
.recon__row.is-fixed { border-color: rgba(var(--accent-rgb),0.3); background: rgba(var(--accent-rgb),0.05); }
.recon__row-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; background: var(--warn); box-shadow: 0 0 8px rgba(240,184,106,0.55); }
.recon__row.is-fixed .recon__row-dot { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.recon__row-body { flex: 1; min-width: 0; }
.recon__row-name { font-weight: 600; font-size: 13px; color: #14110E; margin: 0 0 2px; }
.recon__row-issue { font-size: 12px; line-height: 1.4; color: rgba(20,17,14,0.5); margin: 0; }
.recon__row-state { width: 24px; height: 24px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; font-size: 13px; background: rgba(240,184,106,0.16); color: var(--warn); }
.recon__row.is-fixed .recon__row-state { background: rgba(var(--accent-rgb),0.18); color: var(--accent); }
.recon__actions { display: flex; }
/* barras de comparação (benchmark) */
.bench { display: flex; flex-direction: column; gap: 16px; }
.bench__lab { font-size: 12.5px; font-weight: 600; color: rgba(20,17,14,0.8); margin: 0 0 8px; }
.bench__pair { display: flex; flex-direction: column; gap: 6px; }
.bench__bar { height: 22px; background: rgba(20,17,14,0.04); border-radius: 6px; overflow: hidden; }
.bench__fill { height: 100%; border-radius: 6px; display: flex; align-items: center; justify-content: flex-end; padding: 0 10px; min-width: fit-content; animation: benchIn 0.6s var(--ease) both; }
.bench__fill span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.bench__fill--you { background: rgba(var(--accent-rgb),0.85); }
.bench__fill--you span { color: #FFFFFF; }
.bench__fill--mkt { background: rgba(20,17,14,0.14); }
.bench__fill--mkt span { color: rgba(20,17,14,0.7); }
.bench__legend { display: flex; gap: 18px; margin-top: auto; padding-top: 8px; }
.bench__legend span { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; color: rgba(20,17,14,0.5); }
/* ---- Renovação com dados ---- */
.renov { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 24px; gap: 16px; }
.renov__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.renov__t { font-weight: 700; font-size: 14px; color: #14110E; margin: 0; }
.renov__ask { font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; color: rgba(20,17,14,0.5); }
.renov__ask b { color: var(--warn-deep); font-size: 13px; }
.renov__data { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.renov__point { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(20,17,14,0.6); opacity: 0; transform: translateX(-8px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.renov__point.is-on { opacity: 1; transform: none; }
.renov__point-ico { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; background: rgba(var(--accent-rgb),0.16); color: var(--accent); }
.renov__result { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line-strong); background: rgba(20,17,14,0.02); opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease); }
.renov__result.is-on { opacity: 1; transform: none; border-color: rgba(var(--accent-rgb),0.3); background: rgba(var(--accent-rgb),0.06); }
.renov__result-main { display: flex; align-items: baseline; gap: 12px; }
.renov__result-lab { font-size: 12px; color: rgba(20,17,14,0.6); }
.renov__result-num { font-family: var(--serif); font-weight: 700; font-size: 40px; line-height: 1; letter-spacing: -0.03em; color: var(--accent); }
.no-serif .renov__result-num { font-family: var(--sans); font-weight: 800; }
.renov__result-save { font-family: var(--mono); font-size: 10px; line-height: 1.45; letter-spacing: 0.02em; color: rgba(20,17,14,0.5); text-align: right; max-width: 120px; }
.renov__actions { display: flex; }
/* ---- Mapeamento de saúde ---- */
.mapa__stack { display: flex; height: 34px; gap: 3px; }
.mapa__seg { height: 100%; border-radius: 6px; animation: benchIn 0.6s var(--ease) both; }
.mapa__seg--ok { background: rgba(var(--accent-rgb),0.8); }
.mapa__seg--mid { background: rgba(20,17,14,0.28); }
.mapa__seg--hi { background: var(--warn-deep); }
.mapa__legend { display: flex; flex-direction: column; gap: 10px; }
.mapa__leg { display: flex; align-items: center; gap: 10px; }
.mapa__leg .dot { width: 10px; height: 10px; border-radius: 4px; }
.mapa__leg-lab { flex: 1; font-size: 13px; color: rgba(20,17,14,0.7); }
.mapa__leg-n { font-family: var(--mono); font-size: 13px; color: #14110E; }
.mapa__frentes { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.mapa__frentes-t { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(20,17,14,0.4); margin: 0 0 10px; }
.mapa__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mapa__chip { font-size: 12px; font-weight: 500; padding: 7px 12px; border-radius: 999px; color: rgba(20,17,14,0.8); background: rgba(var(--accent-rgb),0.08); border: 1px solid rgba(var(--accent-rgb),0.2); }
/* ---- Teleatendimento 24/7 ---- */
.tele { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 28px 24px; gap: 12px; align-items: center; text-align: center; justify-content: center; }
.tele__clock { position: relative; width: 92px; height: 92px; display: grid; place-items: center; margin-bottom: 4px; }
.tele__ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(var(--accent-rgb),0.22); border-top-color: var(--accent); animation: teleSpin 3s linear infinite; }
.tele__hour { font-family: var(--serif); font-weight: 700; font-size: 25px; color: #14110E; letter-spacing: -0.02em; }
.no-serif .tele__hour { font-family: var(--sans); font-weight: 800; }
.tele__status { font-weight: 700; font-size: 16px; color: #14110E; margin: 0; }
.tele__sub { font-size: 13px; line-height: 1.6; color: rgba(20,17,14,0.5); margin: 0; max-width: 38ch; }
.tele__card { display: flex; align-items: center; gap: 12px; width: 100%; max-width: 340px; padding: 14px; border-radius: 14px; border: 1px solid rgba(var(--accent-rgb),0.3); background: rgba(var(--accent-rgb),0.06); text-align: left; margin-top: 4px; }
.tele__avatar { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--accent); color: #FFFFFF; font-weight: 700; font-size: 13px; }
.tele__card-body { flex: 1; min-width: 0; }
.tele__card-name { font-weight: 700; font-size: 13px; color: #14110E; margin: 0 0 2px; }
.tele__card-role { font-size: 11.5px; line-height: 1.4; color: rgba(20,17,14,0.55); margin: 0; }
.tele__live { display: inline-flex; align-items: center; gap: 5px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); flex: none; }
.tele__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: aiPulseDot 1.4s infinite; }
.tele__actions { margin-top: 6px; }
.tele__ring { animation: none; }
/* ---- Rede credenciada curada ---- */
.rede { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 24px; gap: 14px; }
.rede__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.rede__chip { font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; padding: 7px 12px; border-radius: 999px; color: rgba(20,17,14,0.55); border: 1px solid var(--line-strong); }
.rede__chip.is-on { color: var(--accent); border-color: rgba(var(--accent-rgb),0.4); background: rgba(var(--accent-rgb),0.08); }
.rede__list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.rede__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(20,17,14,0.015); }
.rede__row-body { flex: 1; min-width: 0; }
.rede__row-name { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; color: #14110E; margin: 0 0 3px; }
.rede__curated { display: inline-flex; align-items: center; gap: 4px; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 7px; border-radius: 999px; color: var(--accent); background: rgba(var(--accent-rgb),0.1); border: 1px solid rgba(var(--accent-rgb),0.25); }
.rede__row-spec { font-size: 12px; color: rgba(20,17,14,0.5); margin: 0; }
.rede__row-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex: none; }
.rede__score { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.rede__km { font-family: var(--mono); font-size: 10px; color: rgba(20,17,14,0.4); }
.rede__foot { font-size: 12.5px; line-height: 1.55; color: rgba(20,17,14,0.45); margin: 0; }
/* ---- moldura dos demos: cartão branco limpo ---- */
.ai-demo {
  /* base sem serifa: os componentes herdam Manrope (evita cair no fallback
     serifado de --font-display quando embutidos na landing) */
  font-family: var(--sans);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px -46px rgba(20,17,14,0.45), inset 0 1px 0 rgba(255,255,255,0.7);
}
.ai-rail__item.is-active { background: var(--beige); }
.ai-demo__dot { background: rgba(20,17,14,0.14); }
.guide__badge, .recon__bar-ico.ok { color: var(--paper); }
.bench__fill--you span { color: var(--paper); }
/* cartões/painéis ligeiramente bege para descolar do branco do cartão demo */
.qcard { background: var(--beige); border-color: var(--line-strong); }
.recon__bar, .recon__row, .sync__node, .team__card, .rede__row, .renov__result { background: rgba(20,17,14,0.018); }
/* ==========================================================================
   V8 — demos do Agente Pipo reformulados
   ========================================================================== */

/* ---- Controle de sinistralidade · painel "Dados de saúde" ---- */
.dados { display: flex; flex-direction: column; flex: 1; min-height: 0; padding: 24px; gap: 14px; }
/* ---- Renovação · leitura + cenários ---- */
.renov__cap { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(20,17,14,0.4); }
.renov__data { flex: none; gap: 10px; }
.renov__scen { display: flex; flex-direction: column; gap: 8px; }
.renov__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 15px; border: 1px solid var(--line-strong); border-radius: 13px; background: rgba(20,17,14,0.015); opacity: 0; transform: translateY(8px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.renov__row.is-on { opacity: 1; transform: none; }
.renov__row.is-best { border-color: rgba(var(--accent-rgb),0.4); background: rgba(var(--accent-rgb),0.06); }
.renov__row-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.renov__row-lab { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; color: #14110E; }
.renov__row-tag { font-family: var(--mono); font-style: normal; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); padding: 3px 7px; border-radius: 999px; border: 1px solid rgba(var(--accent-rgb),0.4); flex: none; }
.renov__row-note { font-size: 11.5px; line-height: 1.4; color: rgba(20,17,14,0.52); }
.renov__row-val { font-family: var(--serif); font-weight: 700; font-size: 26px; line-height: 1; letter-spacing: -0.02em; color: #14110E; flex: none; }
.no-serif .renov__row-val { font-family: var(--sans); font-weight: 800; }
.renov__row.is-best .renov__row-val { color: var(--accent); }
.renov__row { opacity: 1; transform: none; }
/* ---- Chat · header com papel + CTA final ---- */
.chat__head-id { display: flex; flex-direction: column; gap: 1px; }
.chat__role { font-size: 10.5px; color: rgba(20,17,14,0.45); }
.chat__cta { display: inline-flex; align-items: center; gap: 7px; font-family: var(--sans); font-weight: 600; font-size: 13px; padding: 11px 16px; border-radius: 12px; border: 1px solid rgba(var(--accent-rgb),0.4); background: rgba(var(--accent-rgb),0.08); color: var(--accent); cursor: pointer; }