/* ============================================================
   BAYSI — landing (modelada na pegada Brabaflow, skin Baysi)
   Base CLARA e arejada; paleta NÚCLEO preto/branco/amarelo #F0D800;
   dourado #FFAA56 só na LUZ do emblema; Manrope.
   Ritmo de cor por seção (claro → preto → amarelo) = dança visual.

   >>> TEMA: a base é clara. Pra voltar ao modo escuro-dominante, troque
       o fundo do body/--canvas e o esquema padrão das seções "claro".
   ============================================================ */

:root {
  --amarelo: #F0D800;
  --dourado-luz: #FFAA56;
  --preto: #000000;
  --branco: #FFFFFF;
  --cinza: #8A8A8A;

  /* canvas base (claro, arejado — pegada Brabaflow) */
  --canvas: #FAFAF7;

  --max: 1180px;
  --pad-x: clamp(22px, 5vw, 72px);
  --sec-y: clamp(88px, 12vw, 176px);
  --radius: 20px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--canvas);
  color: #0A0A0A;
  font-family: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x); }
a { color: inherit; text-decoration: none; }

/* ===================== ESQUEMAS DE COR ===================== */
[data-scheme="claro"]  { --bg: var(--canvas); --ink: #0A0A0A; --muted: #6A6A6A; --line: var(--amarelo); --hair: #ECEAE3; --card: #FFFFFF; }
[data-scheme="branco"] { --bg: #FFFFFF; --ink: #0A0A0A; --muted: #767676; --line: var(--amarelo); --hair: #EDEDED; --card: #FAFAF7; }
[data-scheme="preto"]  { --bg: #000000; --ink: #FFFFFF; --muted: #9A9A9A; --line: var(--amarelo); --hair: rgba(255,255,255,.1); --card: rgba(255,255,255,.03); }
[data-scheme="amarelo"]{ --bg: var(--amarelo); --ink: #0A0A0A; --muted: rgba(0,0,0,.6); --line: #000; --hair: rgba(0,0,0,.14); --card: rgba(0,0,0,.04); }

section, .foot { background: var(--bg); color: var(--ink); }

/* destaque <em> — adaptado por esquema (o equivalente Baysi da ênfase itálica do Brabaflow) */
em { font-style: normal; }
[data-scheme="claro"] em,
[data-scheme="branco"] em,
[data-scheme="amarelo"] em { padding: 0 .1em; border-radius: .06em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
[data-scheme="claro"] em, [data-scheme="branco"] em { background: var(--amarelo); color: #000; }
[data-scheme="amarelo"] em { background: #000; color: var(--amarelo); }
[data-scheme="preto"] em {
  color: var(--amarelo); text-decoration: underline;
  text-decoration-thickness: .07em; text-underline-offset: .14em; text-decoration-skip-ink: none;
}
strong { font-weight: 800; color: var(--ink); }

/* ===================== TIPOGRAFIA BASE ===================== */
.kicker {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: clamp(12px, 1.4vw, 14px); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 26px;
}
.kicker::before { content: ""; width: 32px; height: 4px; background: var(--line); border-radius: 3px; flex: none; }
.kicker.warm { color: #A88900; }
[data-scheme="preto"] .kicker.warm { color: var(--amarelo); }

.section-title {
  font-size: clamp(32px, 5vw, 60px); font-weight: 800;
  line-height: 1.07; letter-spacing: -.02em; color: var(--ink); max-width: 16ch;
}
.section-title.light { color: #fff; }
.section-lead {
  margin-top: 24px; font-size: clamp(17px, 2vw, 22px); font-weight: 500;
  line-height: 1.5; color: var(--muted); max-width: 54ch;
}
.section-lead.light { color: #BDBDBD; }

/* CTA-cue: instrução chamativa que substitui o subtítulo (Raio-X e chat) */
.rx-cue, .demo-cue {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 14px;
  padding: 13px 22px; border-radius: 999px; text-decoration: none;
  font-size: clamp(15px, 1.7vw, 18px); font-weight: 700; line-height: 1.3;
  border: 1.5px solid var(--amarelo); transition: transform .2s ease, background .2s ease;
}
.rx-cue { color: #fff; background: rgba(240,216,0,.08); }
.demo-cue { color: var(--ink); background: rgba(240,216,0,.14); }
.demo-cue b { color: #000; background: var(--amarelo); padding: 0 .28em; border-radius: .12em; font-weight: 800; }
.rx-cue:hover, .demo-cue:hover { transform: translateY(-2px); background: var(--amarelo); color: #000; }
.rx-cue:hover .rx-cue-txt, .demo-cue:hover .demo-cue-txt { color: #000; }
.rx-cue-arrow, .demo-cue-arrow {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--amarelo); color: #000; font-weight: 900; font-size: 15px;
  animation: cuebob 1.4s ease-in-out infinite;
}
@keyframes cuebob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

/* marcador de conteúdo a preencher */
.ph { color: #B98A00; font-style: italic; font-weight: 600; }
[data-scheme="preto"] .ph { color: var(--dourado-luz); }
[data-placeholder] { position: relative; }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: .01em; border-radius: 999px;
  padding: 14px 26px; font-size: 16px; line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-cta { background: var(--amarelo); color: #000; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(240,216,0,.34); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(0,0,0,.16); }
[data-scheme="preto"] .btn-ghost { border-color: rgba(255,255,255,.26); }
.btn-ghost:hover { border-color: #000; }
[data-scheme="preto"] .btn-ghost:hover { border-color: var(--amarelo); color: var(--amarelo); }
.btn-lg { padding: 19px 34px; font-size: 18px; }

/* ===================== HEADER ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,250,247,.82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: #ECEAE3; padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; flex: none; }
.brand-emblema { width: 40px; height: 40px; object-fit: contain; }
.brand-word { font-weight: 800; letter-spacing: .26em; font-size: 20px; color: #0A0A0A; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a { font-size: 15px; font-weight: 600; color: #4A4A4A; transition: color .2s var(--ease); }
.nav-links a:hover { color: #000; }
.nav-cta { margin-left: 4px; }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  padding: calc(var(--sec-y) + 40px) 0 var(--sec-y);
}
.hero-glow {
  position: absolute; left: 50%; top: 8%; width: min(1100px, 120%); height: 80%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(240,216,0,.22), transparent 62%); filter: blur(10px); pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 800px; width: 100%; }
.chip {
  display: inline-flex; align-items: center; font-size: clamp(12px, 1.5vw, 14px); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  border: 1px solid #E2E0D8; background: rgba(255,255,255,.6); border-radius: 999px; padding: 9px 18px; margin-bottom: 32px;
}
.chip-mark { font-weight: 800; color: #000; margin-right: .35em; }
.hero-title { font-size: clamp(48px, 8vw, 104px); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; color: #0A0A0A; }
.hero-sub { margin-top: 32px; font-size: clamp(18px, 2.2vw, 24px); font-weight: 500; line-height: 1.48; color: #565656; max-width: 48ch; }
.hero-actions { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-seal { margin-top: 32px; display: inline-flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.dot-live { width: 10px; height: 10px; border-radius: 50%; background: var(--amarelo); box-shadow: 0 0 0 0 rgba(240,216,0,.55); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(240,216,0,.5); } 70% { box-shadow: 0 0 0 12px rgba(240,216,0,0); } 100% { box-shadow: 0 0 0 0 rgba(240,216,0,0); } }

/* ===================== PROVA SOCIAL (logos) ===================== */
.proof { padding: 40px 0 24px; }
.proof-label { text-align: center; font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--muted); margin-bottom: 30px; }
.proof-logos { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px, 5vw, 68px); }
.proof-logos li { font-size: 20px; font-weight: 800; letter-spacing: .12em; color: #C7C4BA; }

/* ===================== PROBLEMA ===================== */
.problema { position: relative; padding: var(--sec-y) 0; overflow: hidden; }
.problema-glow { position: absolute; left: 50%; bottom: -20%; width: 1000px; height: 600px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(255,170,86,.12), transparent 70%); pointer-events: none; }
.problema .wrap { position: relative; z-index: 2; }
.pain-list { list-style: none; margin-top: 44px; display: flex; flex-direction: column; gap: 18px; max-width: 60ch; }
.pain-list li { display: flex; align-items: flex-start; gap: 16px; font-size: clamp(17px, 2vw, 21px); font-weight: 500; color: #D6D6D6; }
.pain-x { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); color: var(--amarelo); font-size: 14px; font-weight: 800; margin-top: 2px; }

/* ===================== GRIDS DE CARDS (solução / diferenciais) ===================== */
.card-grid { list-style: none; margin-top: 52px; display: grid; gap: 18px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--hair); border-radius: var(--radius);
  padding: clamp(26px, 2.6vw, 36px);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(240,216,0,.6); box-shadow: 0 16px 40px rgba(0,0,0,.06); }
[data-scheme="preto"] .card:hover { box-shadow: none; background: rgba(240,216,0,.04); }
.card-i { width: 44px; height: 44px; border-radius: 12px; background: #000; display: grid; place-items: center; overflow: hidden; }
.card-i img { width: 48px; height: 48px; object-fit: contain; }
.card h3 { margin-top: 20px; font-size: clamp(19px, 2.1vw, 23px); font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.card p { margin-top: 10px; font-size: 15.5px; font-weight: 500; line-height: 1.5; color: var(--muted); }
.pillar .pillar-n { font-size: 15px; font-weight: 800; letter-spacing: .1em; color: #B0AC9E; }
[data-scheme="preto"] .pillar .pillar-n { color: #5A5A5A; }
.pillar h3 { margin-top: 14px; }

/* ===================== CASOS DE USO (track horizontal) ===================== */
.casos { padding: var(--sec-y) 0; }
.casos-track {
  margin-top: 48px; display: flex; gap: 18px; overflow-x: auto; padding: 6px var(--pad-x) 20px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.casos-track::-webkit-scrollbar { height: 6px; }
.casos-track::-webkit-scrollbar-thumb { background: #E0DDD3; border-radius: 3px; }
.caso {
  scroll-snap-align: start; flex: 0 0 clamp(240px, 30vw, 300px);
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius);
  padding: 28px; font-size: 19px; font-weight: 700; color: #111;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.caso:hover { transform: translateY(-4px); border-color: #000; }
.caso-brand { font-weight: 800; color: #000; }
.caso p { margin-top: 14px; font-size: 15px; font-weight: 500; color: var(--cinza); line-height: 1.5; }

/* ===================== INTEGRAÇÃO (logos row, preto) ===================== */
.integra.marquee-sec { padding: clamp(26px, 4vw, 44px) 0; }
.integra-head { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 18px; }
.integra-logo { display: inline-grid; place-items: center; }
.integra-logo img { height: 46px; width: auto; max-width: 200px; object-fit: contain; }
.integra-logo.is-emblema img { height: 44px; }
/* label alinhado à hero: kicker minimalista, não título grosso */
.integra-label { text-align: center; font-size: clamp(12px, 1.4vw, 14px); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.integra-logos { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(20px, 4vw, 56px); }
.integra-logos li { font-size: clamp(16px, 2vw, 22px); font-weight: 700; letter-spacing: .04em; color: #D6D6D6; }

/* ===================== DIFERENCIAIS ===================== */
.difs { padding: var(--sec-y) 0; }

/* ===================== MÉTODO (4 pilares) ===================== */
.metodo { position: relative; padding: var(--sec-y) 0; overflow: hidden; }
.metodo-glow { position: absolute; left: 50%; top: -8%; width: 900px; height: 640px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(255,170,86,.1), transparent 70%); pointer-events: none; }
.metodo .wrap { position: relative; z-index: 2; }
.method-grid { list-style: none; margin-top: 56px; counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.method-grid li { position: relative; padding-top: 30px; border-top: 2px solid rgba(255,255,255,.14); }
.step-n { position: absolute; top: -22px; left: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--amarelo); color: #000; display: grid; place-items: center; font-weight: 800; font-size: 20px; }
.method-grid h3 { margin-top: 20px; font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; color: #fff; }
.method-grid p { margin-top: 10px; font-size: 15.5px; font-weight: 500; line-height: 1.55; color: #9E9E9E; }

/* ===================== CLAIM / MÉTRICAS (amarelo) ===================== */
.claim { padding: var(--sec-y) 0; }
.claim-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.claim-big { font-size: clamp(32px, 5.4vw, 64px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: #0A0A0A; max-width: 18ch; }
.claim-stats { list-style: none; margin-top: 56px; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(30px, 7vw, 90px); }
.claim-stats li { display: flex; flex-direction: column; gap: 8px; }
.stat-n { font-size: clamp(42px, 6vw, 72px); font-weight: 800; letter-spacing: -.03em; color: #000; line-height: 1; }
.stat-l { font-size: 15px; font-weight: 600; color: rgba(0,0,0,.6); line-height: 1.35; }

/* ===================== FAQ ===================== */
.faq { padding: var(--sec-y) 0; }
.faq-list { margin-top: 48px; border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 26px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: clamp(18px, 2.2vw, 23px); font-weight: 700; color: #111;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { flex: none; font-size: 26px; font-weight: 400; color: var(--amarelo); transition: transform .25s var(--ease); line-height: 1; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 28px; font-size: 17px; font-weight: 500; line-height: 1.55; color: #565656; max-width: 68ch; }

/* ===================== FECHO ===================== */
.fecho { position: relative; padding: calc(var(--sec-y) + 20px) 0; overflow: hidden; }
.fecho-glow { position: absolute; left: 50%; bottom: -20%; width: 1000px; height: 620px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(255,170,86,.16), transparent 70%); pointer-events: none; }
.fecho-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.fecho-emblema { display: inline-flex; margin-bottom: 22px; }
.fecho-emblema img { width: auto; height: auto; max-width: 280px; max-height: 156px; object-fit: contain; }
.fecho-emblema.is-emblema img { width: 150px; height: 150px; max-width: none; filter: drop-shadow(0 0 28px rgba(255,170,86,.32)); }
.fecho-slogan { font-size: clamp(15px, 1.8vw, 19px); font-weight: 600; color: #9A9A9A; }
.fecho-head { margin-top: 20px; font-size: clamp(36px, 6vw, 76px); font-weight: 800; line-height: 1.04; letter-spacing: -.03em; color: #fff; max-width: 16ch; }
.fecho-promise { margin-top: 22px; font-size: clamp(17px, 2.2vw, 23px); font-weight: 600; color: #C4C4C4; }
.btn-bar { margin-top: 44px; width: min(560px, 100%); display: flex; align-items: center; justify-content: space-between; background: var(--amarelo); color: #000; border-radius: 22px; padding: 26px 34px; font-size: clamp(18px, 2.4vw, 24px); font-weight: 800; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.btn-bar .arrow { font-size: 1.3em; transition: transform .2s var(--ease); }
.btn-bar:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(240,216,0,.3); }
.btn-bar:hover .arrow { transform: translateX(6px); }

/* ===================== FOOTER ===================== */
.foot { padding: 72px 0 40px; }
.foot-inner { display: grid; grid-template-columns: 1.8fr 1fr 1.1fr; gap: 40px; }
.foot-col h4 { font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #7A7A7A; margin-bottom: 18px; }
.foot-col a { display: block; font-size: 15px; font-weight: 600; color: #C9C9C9; margin-bottom: 12px; transition: color .2s var(--ease); }
.foot-col a:hover { color: var(--amarelo); }
.foot-contact { display: flex; align-items: center; gap: 10px; }
.foot-ic { width: 18px; height: 18px; flex: none; color: #8A8A8A; transition: color .2s var(--ease); }
.foot-contact:hover .foot-ic { color: var(--amarelo); }
.foot-brand .wordmark { font-size: 24px; font-weight: 800; letter-spacing: .26em; color: #fff; }
.foot-brand .descritor { display: block; margin-top: 6px; font-size: 14px; font-weight: 600; color: #8A8A8A; }
.foot-hot { margin-top: 16px; font-size: 15px; font-weight: 500; color: #6A6A6A; font-style: italic; }
.foot-legal p { font-size: 13.5px; line-height: 1.5; margin-bottom: 8px; }
.foot-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { font-size: 13px; color: #6A6A6A; }
.foot-bottom .foot-fine { color: #8A8A8A; letter-spacing: .01em; }

/* ===================== WIDGET DE AGENTE (pegada "Ellie") ===================== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  background: #000; color: #fff; border-radius: 999px; padding: 10px 20px 10px 10px;
  box-shadow: 0 12px 34px rgba(0,0,0,.28); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(240,216,0,.32); }
.wa-float-mark { width: 40px; height: 40px; display: grid; place-items: center; flex: none; color: var(--amarelo); }
.wa-float-mark img { width: 40px; height: 40px; object-fit: contain; }
.wa-float-mark svg { width: 30px; height: 30px; }
.wa-float-text { font-size: 15px; font-weight: 600; }
.wa-float-text strong { color: var(--amarelo); font-weight: 800; }

/* ===================== ROLAGEM DE NICHOS (marquee) ===================== */
.marquee-sec { padding: 40px 0 20px; }
.marquee { margin-top: 26px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; will-change: transform; animation: marquee 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-item { font-size: clamp(20px, 3vw, 32px); font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.mq-dot { color: var(--amarelo); font-size: 26px; font-weight: 800; }
.marquee-track--rev { animation-direction: reverse; animation-duration: 36s; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* faixa de integração: nomes BRANCOS no fluxo; a divisão entre seções é uma
   fita amarela de "cena de crime" (hazard tape) em cima e embaixo */
.integra { position: relative; }
.integra .marquee { margin-top: 12px; }
.integra .mq-item { color: #fff; font-weight: 800; letter-spacing: -.01em; }
.integra .mq-dot { color: rgba(255,255,255,.32); }
.integra::before, .integra::after {
  content: ""; position: absolute; left: 0; right: 0; height: 13px; z-index: 3;
  background: repeating-linear-gradient(-45deg, var(--amarelo) 0 22px, #0A0A0A 22px 34px);
}
.integra::before { top: 0; }
.integra::after { bottom: 0; }

/* ===================== RAIO-X (simulador) ===================== */
.raiox { position: relative; padding: var(--sec-y) 0; overflow: hidden; }
.raiox .wrap { position: relative; z-index: 2; }
.raiox-grid { margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.raiox-inputs { display: flex; flex-direction: column; gap: 30px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: clamp(26px, 3vw, 40px); }
.rx-field { display: flex; flex-direction: column; gap: 16px; }
.rx-label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 16px; font-weight: 600; color: #C4C4C4; }
.rx-label b { font-size: 20px; font-weight: 800; color: var(--amarelo); font-variant-numeric: tabular-nums; }
.rx-field input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: rgba(255,255,255,.14); outline: none; cursor: pointer; }
.rx-field input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--amarelo); border: 4px solid #000; box-shadow: 0 0 0 1px var(--amarelo); cursor: grab; }
.rx-field input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--amarelo); border: 4px solid #000; cursor: grab; }
.raiox-out { display: flex; flex-direction: column; align-items: flex-start; background: var(--amarelo); border-radius: var(--radius); padding: clamp(28px, 3.2vw, 44px); color: #000; }
.rx-out-label { font-size: 15px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: rgba(0,0,0,.55); }
.rx-out-money { margin-top: 12px; font-size: clamp(44px, 7vw, 82px); font-weight: 800; letter-spacing: -.03em; line-height: 1; color: #000; font-variant-numeric: tabular-nums; }
.rx-out-rows { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; width: 100%; border-top: 1px solid rgba(0,0,0,.16); padding-top: 26px; }
.rx-row { display: flex; align-items: baseline; gap: 12px; }
.rx-row span { font-size: 26px; font-weight: 800; color: #000; font-variant-numeric: tabular-nums; }
.rx-row small { font-size: 15px; font-weight: 600; color: rgba(0,0,0,.62); }
.rx-cta { margin-top: 32px; background: #000; color: var(--amarelo); }
.rx-cta:hover { box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.rx-disc { margin-top: 16px; font-size: 13px; font-weight: 500; color: rgba(0,0,0,.5); }

/* ===================== RAIO-X · balão "clique aqui" + CTA vivo ===================== */
.rx-field--hero { position: relative; padding-top: 14px; margin-top: 6px; }
.rx-hint {
  position: absolute; top: -12px; left: 0; z-index: 3;
  background: var(--amarelo); color: #000; font-size: 12.5px; font-weight: 800;
  letter-spacing: .02em; padding: 6px 12px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(240,216,0,.3); animation: hintbounce 1.6s var(--ease) infinite;
  pointer-events: none;
}
.rx-hint::after { content: ""; position: absolute; left: 22px; bottom: -5px; width: 10px; height: 10px; background: var(--amarelo); transform: rotate(45deg); border-radius: 2px; }
.rx-field--hero.dismissed .rx-hint { opacity: 0; transform: translateY(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
@keyframes hintbounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.rx-cta { animation: ctapulse 2.4s ease-in-out infinite; }
@keyframes ctapulse { 0%,100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); } 50% { box-shadow: 0 0 0 10px rgba(0,0,0,.06); } }
@media (prefers-reduced-motion: reduce) { .rx-hint, .rx-cta { animation: none; } }

/* ===================== ECOSSISTEMA · hexágono vivo (6 cortes = 6 módulos) ===================== */
.ecossistema { position: relative; padding: var(--sec-y) 0; overflow: hidden; }
.eco-glow { position: absolute; left: 50%; top: 44%; width: 720px; height: 720px; transform: translate(-50%,-50%); background: radial-gradient(circle at center, rgba(255,170,86,.16), transparent 62%); pointer-events: none; }
.ecossistema .wrap { position: relative; z-index: 2; }
.hexwrap { position: relative; margin-top: 60px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(16px, 5vw, 90px); }
.hex-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.hex-lines line { stroke: rgba(240,216,0,.4); stroke-width: 1.4; stroke-linecap: round; filter: drop-shadow(0 0 3px rgba(240,216,0,.5)); animation: linepulse 3s ease-in-out infinite; }
@keyframes linepulse { 0%,100% { opacity: .35; } 50% { opacity: .85; } }
.hex-col { position: relative; z-index: 2; display: flex; flex-direction: column; gap: clamp(20px, 3vw, 40px); }
.hex-col--l { align-items: stretch; }
.hex-col--r { align-items: stretch; }
.hexnode {
  position: relative; text-align: left; cursor: default; font-family: inherit;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: 18px 22px; transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  animation: nodefloat 6s ease-in-out infinite;
}
.hex-col--l .hexnode:nth-child(1) { animation-delay: -.2s; }
.hex-col--l .hexnode:nth-child(2) { animation-delay: -2.2s; }
.hex-col--l .hexnode:nth-child(3) { animation-delay: -4.1s; }
.hex-col--r .hexnode:nth-child(1) { animation-delay: -1.1s; }
.hex-col--r .hexnode:nth-child(2) { animation-delay: -3.3s; }
.hex-col--r .hexnode:nth-child(3) { animation-delay: -5s; }
@keyframes nodefloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hex-col--r .hexnode { text-align: right; }
.hexnode:hover { transform: translateY(-3px) scale(1.02); border-color: rgba(240,216,0,.7); background: rgba(240,216,0,.06); box-shadow: 0 0 34px rgba(240,216,0,.14); animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .hexnode { animation: none; } .hex-lines line { animation: none; } }
.hexnode-h { display: flex; align-items: center; gap: 10px; font-size: clamp(17px, 2vw, 21px); font-weight: 800; color: #fff; }
.hex-col--r .hexnode-h { justify-content: flex-end; }
.hexnode-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amarelo); box-shadow: 0 0 10px rgba(240,216,0,.6); flex: none; }
.hexnode-d { display: block; margin-top: 8px; font-size: 14.5px; font-weight: 500; line-height: 1.45; color: #9E9E9E; }
.hex-core { position: relative; z-index: 2; display: grid; place-items: center; }
.hex-emblema { width: clamp(180px, 24vw, 300px); height: clamp(180px, 24vw, 300px); display: grid; place-items: center; animation: hexfloat 6s ease-in-out infinite; }
.hex-emblema img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 40px rgba(255,170,86,.35)); }
@keyframes hexfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .hex-emblema { animation: none; } }
.demo-note.light { color: #7A7A7A; }

/* ===================== VEJA FUNCIONANDO (chat inline + escolha de nicho) ===================== */
.demo { padding: var(--sec-y) 0; }
.niche-chooser { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 10px; }
.niche-tab {
  font-family: inherit; cursor: pointer; font-size: 15px; font-weight: 700; color: #444;
  background: #fff; border: 1px solid var(--hair); border-radius: 999px; padding: 11px 20px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.niche-tab:hover { border-color: #000; transform: translateY(-1px); }
.niche-tab.is-on { background: #000; color: var(--amarelo); border-color: #000; }
.chat-inline {
  margin: 32px auto 0; width: min(480px, 100%); display: flex; flex-direction: column;
  height: 560px; max-height: 74vh; background: #EFE7DF; border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.14); border: 1px solid #E7E1D8;
}
.chat-badge { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #9A7B0E; background: #FBF3D2; padding: 5px 10px; border-radius: 999px; }
.demo-note { margin-top: 24px; }

/* ===================== VEJA FUNCIONANDO (demo cards) ===================== */
.demo-legacy { padding: var(--sec-y) 0; }
.demo-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.demo-card {
  display: flex; align-items: center; gap: 16px; text-align: left; cursor: pointer;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--radius); padding: 22px 24px;
  font-family: inherit; transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.demo-card:hover { transform: translateY(-3px); border-color: rgba(240,216,0,.7); box-shadow: 0 14px 36px rgba(0,0,0,.07); }
.demo-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: #FBF6DE; color: #9A7B0E; display: grid; place-items: center; }
.demo-ic svg { width: 22px; height: 22px; }
.demo-name { flex: 1; font-size: 18px; font-weight: 700; color: #121212; }
.demo-arrow { color: #B9B9B9; font-size: 20px; font-weight: 700; transition: transform .2s var(--ease), color .2s var(--ease); }
.demo-card:hover .demo-arrow { color: #000; transform: translateX(4px); }
.demo-note { margin-top: 28px; font-size: 14px; color: var(--muted); text-align: center; }

/* ===================== MODAL DE CHAT ===================== */
.chat-overlay { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(10,10,10,.6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.chat-overlay[hidden] { display: none; }
.chat-modal { width: min(440px, 100%); max-height: min(760px, 90vh); display: flex; flex-direction: column; background: #EFE7DF; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4); animation: pop .28s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.chat-head { display: flex; align-items: center; gap: 12px; background: #fff; padding: 14px 16px; border-bottom: 1px solid #E7E1D8; }
.chat-avatar { width: 42px; height: 42px; display: grid; place-items: center; flex: none; }
.chat-avatar img { width: 42px; height: 42px; object-fit: contain; }
.chat-id { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.chat-id strong { font-size: 16px; font-weight: 800; color: #111; }
.chat-id small { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: #7A9A7A; font-weight: 600; }
.chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #34C759; }
.chat-close { width: 34px; height: 34px; border-radius: 9px; border: 1px solid #E4DED4; background: #fff; color: #555; font-size: 15px; cursor: pointer; transition: background .2s var(--ease); }
.chat-close:hover { background: #F2EDE5; }
.chat-body { flex: 1; overflow-y: auto; padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth; }
.msg { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 15px; line-height: 1.4; font-weight: 500; box-shadow: 0 1px 1px rgba(0,0,0,.06); animation: msgin .3s var(--ease); }
@keyframes msgin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.msg.agent { align-self: flex-start; background: #fff; color: #1A1A1A; border-top-left-radius: 4px; }
.msg.cliente { align-self: flex-end; background: #DFF7C6; color: #12331A; border-top-right-radius: 4px; }
.msg.typing { display: inline-flex; gap: 4px; padding: 14px; }
.msg.typing i { width: 7px; height: 7px; border-radius: 50%; background: #B9B9B9; animation: blink 1.2s infinite; }
.msg.typing i:nth-child(2) { animation-delay: .2s; } .msg.typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }
.chat-cta { align-self: stretch; margin-top: 6px; background: #fff; border: 1px solid #E7E1D8; border-radius: 16px; padding: 18px; text-align: center; animation: msgin .3s var(--ease); }
.chat-cta p { font-size: 14.5px; font-weight: 600; color: #3A3A3A; line-height: 1.45; }
.chat-cta .btn { margin-top: 14px; width: 100%; justify-content: center; }
.chat-cta small { display: block; margin-top: 12px; font-size: 12.5px; color: #9A9A9A; }
.chat-input { display: flex; align-items: center; gap: 8px; background: #fff; padding: 12px 14px; border-top: 1px solid #E7E1D8; }
.chat-input input { flex: 1; border: none; outline: none; background: #F1ECE4; border-radius: 999px; padding: 12px 18px; font-family: inherit; font-size: 15px; color: #111; }
.chat-input button { flex: none; width: 44px; height: 44px; border: none; border-radius: 50%; background: var(--amarelo); color: #000; display: grid; place-items: center; cursor: pointer; transition: transform .2s var(--ease); }
.chat-input button:hover { transform: scale(1.06); }
.chat-input button svg { width: 20px; height: 20px; }

/* ===================== PROVAS · "cena de crime" (evidências entre fitas) ===================== */
.crimes { position: relative; padding: clamp(58px, 8vw, 104px) 0; overflow: hidden; }
/* fita hazard amarela em cima e embaixo — mesma linguagem da integração */
.crimes::before, .crimes::after {
  content: ""; position: absolute; left: 0; right: 0; height: 13px; z-index: 3;
  background: repeating-linear-gradient(-45deg, var(--amarelo) 0 22px, #0A0A0A 22px 34px);
}
.crimes::before { top: 0; }
.crimes::after { bottom: 0; }
.crime-grid { margin-top: clamp(34px, 5vw, 52px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 40px); align-items: start; }
.crime-ev { position: relative; display: flex; flex-direction: column; align-items: center; }
.ev-tag {
  align-self: flex-start; margin: 0 0 -10px 10px; z-index: 4; position: relative;
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #000; background: var(--amarelo); padding: 6px 13px; border-radius: 3px;
  transform: rotate(-3deg); box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
/* fotos "pinadas" da cena — leve rotação, endireita no hover */
.crime-ev .phone {
  width: 100%; height: 452px; background: #0a0a0a; border-radius: 30px; padding: 7px;
  border: 1px solid rgba(255,255,255,.09); box-shadow: 0 26px 64px rgba(0,0,0,.55);
  transition: transform .3s var(--ease); will-change: transform;
}
.crime-ev:nth-child(1) .phone { transform: rotate(-1.6deg); }
.crime-ev:nth-child(2) .phone { transform: rotate(1.1deg); }
.crime-ev:nth-child(3) .phone { transform: rotate(-0.6deg); }
.crime-ev .phone:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 34px 80px rgba(0,0,0,.6); }
.phone-screen { width: 100%; height: 100%; background: #E9E2D8; border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; }
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 7px 16px 3px; font-size: 11px; font-weight: 800; color: #333; }
.phone-status .bat { width: 22px; height: 11px; border: 1.5px solid #333; border-radius: 3px; position: relative; }
.phone-status .bat::after { content: ""; position: absolute; right: -4px; top: 3px; width: 2px; height: 4px; background: #333; border-radius: 1px; }
.phone-status .bat::before { content: ""; position: absolute; left: 1.5px; top: 1.5px; bottom: 1.5px; width: 72%; background: #333; border-radius: 1px; }
.phone-head { display: flex; align-items: center; gap: 10px; background: #fff; padding: 9px 13px; border-bottom: 1px solid #E7E1D8; }
.phone-av { width: 34px; height: 34px; display: grid; place-items: center; flex: none; }
.phone-av img { width: 34px; height: 34px; object-fit: contain; }
.phone-id { display: flex; flex-direction: column; line-height: 1.2; }
.phone-id strong { font-size: 13.5px; font-weight: 800; color: #111; }
.phone-id small { display: flex; align-items: center; gap: 5px; font-size: 10.5px; color: #7A9A7A; font-weight: 600; }
.phone-id .dot { width: 6px; height: 6px; border-radius: 50%; background: #34C759; flex: none; }
.phone-body { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.pmsg { max-width: 84%; padding: 8px 11px; border-radius: 12px; font-size: 12.5px; line-height: 1.34; font-weight: 500; box-shadow: 0 1px 1px rgba(0,0,0,.05); }
.pmsg.a { align-self: flex-start; background: #fff; color: #1a1a1a; border-top-left-radius: 3px; }
.pmsg.c { align-self: flex-end; background: #DFF7C6; color: #12331a; border-top-right-radius: 3px; }
.phone-tag { background: #000; color: #B9B9B9; padding: 11px 14px; font-size: 12px; font-weight: 600; text-align: center; }
.phone-tag b { color: var(--amarelo); font-weight: 800; }
@media (max-width: 860px) { .crime-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

/* ===================== GARANTIA (sem risco · 7 dias) ===================== */
.garantia { position: relative; padding: var(--sec-y) 0; overflow: hidden; }
.decisao-glow { position: absolute; left: 50%; bottom: -10%; width: 1000px; height: 640px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(255,170,86,.12), transparent 70%); pointer-events: none; }
.garantia .wrap { position: relative; z-index: 2; }
.gar-grid { margin-top: 52px; display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.gar-steps { display: flex; flex-direction: column; gap: 4px; }
.gar-step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.gar-step:last-child { border-bottom: none; }
.gar-n { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--amarelo); color: #000; display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.gar-step h3 { font-size: clamp(19px, 2.1vw, 23px); font-weight: 800; color: #fff; }
.gar-step p { margin-top: 8px; font-size: 15.5px; font-weight: 500; line-height: 1.5; color: #9E9E9E; }
.gar-sealwrap { display: grid; place-items: center; }
.seal {
  width: clamp(200px, 24vw, 260px); aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed rgba(240,216,0,.5); background: radial-gradient(circle at center, rgba(240,216,0,.1), transparent 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  color: var(--amarelo); animation: sealspin 24s linear infinite;
}
@keyframes sealspin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.seal > * { animation: sealspin 24s linear infinite reverse; } /* mantém o texto na horizontal */
.seal-top { font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.seal-big { font-size: clamp(64px, 9vw, 96px); font-weight: 800; line-height: .9; color: #fff; }
.seal-mid { font-size: 15px; font-weight: 800; letter-spacing: .3em; margin-top: -2px; }
.seal-bot { margin-top: 8px; font-size: 11.5px; font-weight: 800; letter-spacing: .14em; }
@media (prefers-reduced-motion: reduce) { .seal, .seal > * { animation: none; } }
.dec-cta { margin-top: 52px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.dec-line { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; line-height: 1.4; color: #fff; max-width: 40ch; }
.dec-cta .btn { margin-top: 28px; }
.dec-sub { margin-top: 16px; font-size: 15px; font-weight: 500; color: #9A9A9A; max-width: 44ch; }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dot-live { animation: none; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .raiox-grid { grid-template-columns: 1fr; }
  .gar-grid { grid-template-columns: 1fr; }
  .gar-sealwrap { order: -1; }
  /* ecossistema: MANTER a forma (hexágono central + 6 nós ligados) em todas as
     larguras — só comprimir. Linhas continuam ligadas (hexLines() recalcula). */
  .hexwrap { gap: clamp(8px, 2.4vw, 22px); }
  .hex-emblema { width: clamp(120px, 30vw, 200px); height: clamp(120px, 30vw, 200px); }
  .hexnode { padding: 13px 14px; }
  .hexnode-h { font-size: clamp(14px, 3.4vw, 18px); gap: 7px; }
  .hexnode-d { font-size: clamp(11px, 2.9vw, 13.5px); margin-top: 6px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .card-grid.three { grid-template-columns: 1fr; }
  .wa-float-text { display: none; }
  .wa-float { padding: 10px; }
  .wa-float-mark { width: 44px; height: 44px; }
}
@media (max-width: 520px) {
  .card-grid.four { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
  /* hexágono continua com a forma; em tela bem estreita a descrição sai e ficam
     só os nomes dos 6 módulos + ponto — a forma (emblema + linhas) permanece */
  .hexwrap { gap: 6px; }
  .hex-emblema { width: clamp(96px, 26vw, 130px); height: clamp(96px, 26vw, 130px); }
  .hexnode { padding: 10px 10px; border-radius: 12px; }
  .hexnode-d { display: none; }
  .niche-chooser { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .niche-tab { flex: none; }
  .hero { min-height: auto; }
  .btn-bar { padding: 22px 24px; }
}
