/* ===================================================================
   EDS Soluções Inteligentes — Design system & estilos
   -------------------------------------------------------------------
   Tema híbrido: base clara editorial + faixas escuras de impacto
   (hero, autoridade, CTA, footer) via classe .theme-dark, que
   sobrescreve os tokens de cor. Os componentes referenciam tokens,
   então adaptam-se automaticamente ao contexto claro ou escuro.

   1. Tokens          6. Autoridade       11. Prova
   2. Base & reset    7. Soluções         12. CTA
   3. Tipografia      8. Produtos         13. Contato
   4. Componentes     9. Método           14. Footer
   5. Header / Hero   10. Diferenciais    15. Utilidades / responsivo
   =================================================================== */

/* ============ 1. TOKENS ============ */
:root {
  /* — Base clara (padrão) — */
  --bg:        #f4f3ef;   /* off-white levemente quente */
  --bg-2:      #eeece6;
  --surface:   #ffffff;
  --surface-2: #faf9f6;
  --line:      rgba(20, 22, 33, .11);
  --line-soft: rgba(20, 22, 33, .065);
  --line-strong: rgba(20, 22, 33, .2);

  --heading:   #0c0d11;
  --text:      #1d1e25;
  --muted:     #565a66;
  --faint:     #8c8f9a;

  --accent:     #474ed0;            /* índigo profundo — premium sobre claro */
  --accent-ink: #ffffff;            /* texto sobre o acento */
  --accent-soft: rgba(71, 78, 208, .08);
  --accent-line: rgba(71, 78, 208, .24);

  --whats:     #1eaf52;

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "Space Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Forma & profundidade (sombras em camadas para acabamento) */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 22, 44, .04), 0 10px 26px -18px rgba(20, 22, 44, .22);
  --shadow:    0 2px 6px rgba(20, 22, 44, .05), 0 44px 80px -44px rgba(20, 22, 44, .32);

  /* Espaçamento & layout */
  --space-section: clamp(80px, 11vw, 148px);
  --max:        1180px;
  --max-narrow: 720px;
  --ease:       cubic-bezier(.21, .9, .36, 1);
}

/* — Faixas escuras de impacto — */
.theme-dark {
  --bg:        #0d0e13;
  --bg-2:      #121319;
  --surface:   #16181f;
  --surface-2: #1b1e27;
  --line:      rgba(255, 255, 255, .10);
  --line-soft: rgba(255, 255, 255, .055);
  --line-strong: rgba(255, 255, 255, .17);

  --heading:   #ffffff;
  --text:      #e9ebf1;
  --muted:     #989cab;
  --faint:     #676b7a;

  --accent:     #8f99ff;            /* índigo mais claro — legível sobre escuro */
  --accent-ink: #0a0b12;
  --accent-soft: rgba(143, 153, 255, .14);
  --accent-line: rgba(143, 153, 255, .32);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .4), 0 16px 40px -24px rgba(0, 0, 0, .6);
  --shadow:    0 4px 12px rgba(0, 0, 0, .45), 0 44px 80px -40px rgba(0, 0, 0, .72);

  background: var(--bg);
  color: var(--text);
}

/* ============ 2. BASE & RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: .003em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: inherit; }

::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: .6rem 1rem; border-radius: var(--radius-sm); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ============ 3. TIPOGRAFIA ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500; line-height: 1.08;
  letter-spacing: -.018em; color: var(--heading);
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .55; }
.section-head:not(.section-head-left) .eyebrow { justify-content: center; }

.section-lead { color: var(--muted); font-size: 1.08rem; max-width: 62ch; text-wrap: pretty; }

/* ============ 4. COMPONENTES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .95rem;
  line-height: 1; letter-spacing: .005em;
  padding: .95rem 1.55rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .4s var(--ease), background .25s, border-color .25s, color .25s, box-shadow .4s var(--ease);
}
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 1px 2px rgba(20,22,44,.12); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -14px var(--accent); }

.btn-line { background: transparent; border-color: var(--line-strong); color: var(--text); }
.btn-line:hover { border-color: var(--accent-line); background: var(--accent-soft); color: var(--heading); transform: translateY(-2px); }

.btn-whats { background: var(--whats); color: #fff; }
.btn-whats:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 18px 30px -14px rgba(30, 175, 82, .55); }

.btn-sm { padding: .64rem 1.15rem; font-size: .9rem; }
.btn-lg { padding: 1.08rem 1.95rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============ 5. HEADER ============ */
/* Header sobrepõe o hero escuro: texto claro por padrão, escuro ao rolar. */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s, backdrop-filter .35s;
}
.site-header.scrolled {
  background: rgba(244, 243, 239, .82);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom-color: var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: inherit; }
.brand-mark { color: var(--accent); display: grid; place-items: center; }
.brand-text { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; line-height: 1; letter-spacing: -.01em; color: var(--heading); }
.brand-sub { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .55rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }

/* Estado padrão (sobre o hero escuro) */
.site-header .brand-mark { color: #aab2ff; }
.site-header .brand-text { color: #fff; }
.site-header .brand-sub { color: rgba(255, 255, 255, .6); }
.site-header .nav > a:not(.btn) { color: rgba(255, 255, 255, .8); }
.site-header .nav > a:not(.btn):hover { color: #fff; }
.site-header .nav-toggle span { background: #fff; }
/* Estado rolado (sobre conteúdo claro) */
.site-header.scrolled .brand-mark { color: var(--accent); }
.site-header.scrolled .brand-text { color: var(--heading); }
.site-header.scrolled .brand-sub { color: var(--muted); }
.site-header.scrolled .nav > a:not(.btn) { color: var(--text); }
.site-header.scrolled .nav > a:not(.btn):hover { color: var(--accent); }
.site-header.scrolled .nav-toggle span { background: var(--text); }

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav > a:not(.btn) { position: relative; font-size: .94rem; font-weight: 500; transition: color .2s; }
.nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; opacity: .6; transition: transform .3s var(--ease); }
.nav > a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 24px; height: 1.5px; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; padding: clamp(132px, 18vw, 196px) 0 clamp(80px, 11vw, 124px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -140px; width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(143, 153, 255, .15), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background: radial-gradient(120% 90% at 50% 0%, transparent 60%, rgba(0,0,0,.25));
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 76px); align-items: center; }

.hero .eyebrow { margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2.4rem, 5.6vw, 4.15rem); line-height: 1.02; letter-spacing: -.032em; margin-bottom: 1.6rem; max-width: 17ch; }
.hero-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.hero-lead { font-size: clamp(1.05rem, 1.55vw, 1.2rem); color: rgba(233, 235, 241, .82); max-width: 54ch; margin-bottom: 2.4rem; text-wrap: pretty; }
.hero-lead strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-microcopy { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; color: rgba(233, 235, 241, .68); margin-top: 1.3rem; max-width: 50ch; }
.hero-microcopy::before { content: ""; flex-shrink: 0; width: 16px; height: 16px; margin-top: .15rem; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%238f99ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.5 4.5 6 12 2.5 8.5'/%3E%3C/svg%3E"); }

.hero-trust { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line-soft); }
.hero-trust-label { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--whats); box-shadow: 0 0 0 4px rgba(30,175,82,.18); }
.hero-trust-list { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.hero-trust-list li { position: relative; font-size: .88rem; color: var(--muted); }
.hero-trust-list li + li::before { content: ""; position: absolute; left: -.65rem; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--faint); transform: translateY(-50%); }

/* Visual do hero — painel sóbrio */
.hero-visual { position: relative; }
.panel { background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.panel-main { padding: 1.7rem 1.8rem; }
.panel-head { display: flex; align-items: center; gap: .6rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line-soft); margin-bottom: 1.5rem; }
.panel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.panel-title { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .03em; color: var(--text); }
.panel-tag { margin-left: auto; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-line); border-radius: 999px; padding: .22rem .6rem; }
.panel-rows { display: flex; flex-direction: column; gap: 1.4rem; }
.panel-rows li { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .45rem .8rem; }
.panel-label { font-size: .85rem; color: var(--text); grid-column: 1; }
.panel-value { font-family: var(--font-mono); font-size: .85rem; color: var(--heading); grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.panel-track { grid-column: 1; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, .09); overflow: hidden; }
.panel-track i { display: block; height: 100%; width: var(--w); background: linear-gradient(90deg, var(--accent), #b3bcff); border-radius: 999px; transform-origin: left; animation: grow 1.5s var(--ease) both; }
@keyframes grow { from { transform: scaleX(0); } }

.panel-float { position: absolute; right: -8px; bottom: -38px; width: min(62%, 236px); padding: 1.2rem 1.35rem; background: var(--surface-2); box-shadow: var(--shadow-sm); }
.panel-float-label { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.panel-float-value { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; color: var(--heading); margin-top: .4rem; line-height: 1.1; }
.panel-float-value span { color: var(--accent); }
.panel-float-sub { font-size: .77rem; color: var(--muted); margin-top: .4rem; }

/* ============ 6. AUTORIDADE ============ */
.authority { padding: clamp(72px, 9vw, 120px) 0; }
.authority-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.authority-text .eyebrow { margin-bottom: 1.2rem; }
.authority-text h2 { font-size: clamp(1.8rem, 3.3vw, 2.6rem); line-height: 1.12; margin-bottom: 1.3rem; max-width: 17ch; }
.authority-text p { color: var(--muted); font-size: 1.06rem; max-width: 52ch; text-wrap: pretty; }
.pillars { display: flex; flex-direction: column; }
.pillars li { position: relative; padding: 1.35rem 0 1.35rem 1.6rem; border-top: 1px solid var(--line); }
.pillars li:last-child { border-bottom: 1px solid var(--line); }
.pillars li::before { content: ""; position: absolute; left: 0; top: 1.7rem; width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid var(--accent); }
.pillars h3 { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 600; color: var(--heading); letter-spacing: -.005em; margin-bottom: .3rem; }
.pillars p { font-size: .9rem; color: var(--muted); text-wrap: pretty; }

/* ============ SECTIONS (genérico) ============ */
.section { padding: var(--space-section) 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: var(--max-narrow); margin: 0 auto clamp(52px, 6vw, 80px); text-align: center; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin-bottom: 1.2rem; }
.section-head .section-lead { margin-inline: auto; }
.section-head-left .section-lead { margin-inline: 0; }

/* ============ 7. SOLUÇÕES ============ */
.solutions { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm); }
.solution { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.15rem; padding: 2.3rem 2.1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .35s var(--ease); }
.solution::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.solution::before {
  content: ""; position: absolute; top: 2.1rem; right: 2rem; width: 17px; height: 17px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' fill='none' stroke='%23474ed0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h12M12 6l6 6-6 6'/%3E%3C/svg%3E");
  opacity: 0; transform: translateX(-5px); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.solution:hover { background: var(--surface-2); }
.solution:hover::after { transform: scaleX(1); }
.solution:hover::before { opacity: .45; transform: none; }
.solution-index { font-family: var(--font-mono); font-size: .82rem; color: var(--faint); padding-top: .3rem; transition: color .3s; }
.solution:hover .solution-index { color: var(--accent); }
.solution-icon { color: var(--accent); grid-column: 1; }
.solution-body { grid-column: 2; }
.solution h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.solution-body > p { color: var(--muted); font-size: .96rem; margin-bottom: .95rem; text-wrap: pretty; }
.solution-apply { font-family: var(--font-mono); font-size: .71rem; line-height: 1.7; letter-spacing: .01em; color: var(--text); padding-top: .8rem; border-top: 1px solid var(--line-soft); }
.solutions .solution:nth-child(3n) { border-right: 0; }
.solutions .solution:nth-last-child(-n+3) { border-bottom: 0; }

/* ============ 8. PRODUTOS ============ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.8rem; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), border-color .3s, box-shadow .4s var(--ease); }
.product:hover { transform: translateY(-6px); border-color: var(--accent-line); box-shadow: var(--shadow); }

/* Prévia do app — miniatura em palco com a tela flutuando */
.product-shot { position: relative; margin: -1.9rem -1.8rem 1.6rem; padding: 1.5rem 1.5rem 1.65rem; border-bottom: 1px solid var(--line); overflow: hidden; isolation: isolate; }
.product-shot::after { content: ""; position: absolute; inset: 0; background: radial-gradient(75% 55% at 50% -8%, rgba(255,255,255,.12), transparent 70%); pointer-events: none; z-index: 0; }
.shot-window { position: relative; z-index: 1; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 16px 34px -14px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.32); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.shot-window::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent); z-index: 2; pointer-events: none; }
.product:hover .shot-window { transform: translateY(-5px); box-shadow: 0 28px 52px -16px rgba(0,0,0,.72), 0 3px 8px rgba(0,0,0,.36); }
.shot-window img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; }
/* Placeholder para apps em desenvolvimento */
.shot-window.is-placeholder { aspect-ratio: 16 / 10; display: grid; place-content: center; justify-items: center; gap: .55rem; background: rgba(8, 10, 18, .42); }
.shot-window.is-placeholder::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px); background-size: 15px 15px; opacity: .55; z-index: 0; }
.shot-mono { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; color: #fff; text-align: center; padding: 0 1rem; }
.shot-soon { position: relative; z-index: 1; font-family: var(--font-mono); font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .22rem .6rem; }
/* Palcos por app */
.shot--gold   { background: radial-gradient(115% 125% at 16% -5%, #6a541f, #2a210f 56%, #16110a); }
.shot--azure  { background: radial-gradient(115% 125% at 16% -5%, #234a86, #121d33 56%, #0a1120); }
.shot--green  { background: radial-gradient(115% 125% at 16% -5%, #1d5a3c, #0e2419 56%, #07120d); }
.shot--indigo { background: radial-gradient(115% 125% at 16% -5%, #3b3d96, #181a36 56%, #0d0e20); }
.shot--violet { background: radial-gradient(115% 125% at 16% -5%, #5a2f7e, #241236 56%, #150a21); }
.shot--slate  { background: radial-gradient(115% 125% at 16% -5%, #3a4254, #1a1e28 56%, #0e1118); }
.product-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.product-tag { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.product-status { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: .24rem .6rem; white-space: nowrap; }
.product-status.is-live { color: var(--whats); border-color: rgba(30, 175, 82, .35); }
.product-status.is-live::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--whats); margin-right: .42rem; vertical-align: middle; }
.product h3 { font-size: 1.36rem; margin-bottom: .7rem; }
.product-context { color: var(--muted); font-size: .92rem; line-height: 1.6; margin-bottom: .9rem; text-wrap: pretty; }
.product-value { color: var(--text); font-size: .93rem; line-height: 1.6; flex: 1; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line-soft); text-wrap: pretty; }
.product-value-label { display: inline-block; font-family: var(--font-mono); font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent-line); border-radius: 999px; padding: .14rem .5rem; margin-right: .5rem; vertical-align: 1px; }
.product-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; color: var(--accent); transition: gap .3s var(--ease); align-self: flex-start; }
.product-link:hover { gap: .75rem; }
.product-link.is-disabled { color: var(--faint); cursor: default; font-weight: 500; }
.products-note { text-align: center; color: var(--muted); margin-top: clamp(40px, 5vw, 60px); font-size: 1.05rem; }
.products-note a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent-line); transition: text-decoration-color .2s; }
.products-note a:hover { text-decoration-color: var(--accent); }

/* ---- Vitrine de apps (slides de apresentação estilo deck) ---- */
.appstack { display: flex; flex-direction: column; gap: 1.6rem; margin-top: clamp(2rem, 4vw, 3rem); }
.appslide { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.10); padding: clamp(1.7rem, 4vw, 3.4rem); display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(1.6rem, 4vw, 3.6rem); align-items: center; box-shadow: var(--shadow); }
.appslide::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px); background-size: 22px 22px; opacity: .6; pointer-events: none; z-index: 0; }
.appslide > * { position: relative; z-index: 1; }
/* paletas por app */
.app--gold   { background: radial-gradient(125% 135% at 82% 8%, #20402d 0%, #14271c 44%, #0b1611 100%); --app-accent: #e3bf60; }
.app--azure  { background: radial-gradient(125% 135% at 82% 8%, #1d3766 0%, #13213b 44%, #0a1322 100%); --app-accent: #7cb1ff; }
.app--green  { background: radial-gradient(125% 135% at 82% 8%, #114a39 0%, #0c2a21 44%, #061310 100%); --app-accent: #46d39a; }
.app--indigo { background: radial-gradient(125% 135% at 82% 8%, #2d2f73 0%, #1b1d3c 44%, #0e0f22 100%); --app-accent: #9aa3ff; }
.app--violet { background: radial-gradient(125% 135% at 82% 8%, #482a6f 0%, #281742 44%, #160b22 100%); --app-accent: #c098ff; }
.app--slate  { background: radial-gradient(125% 135% at 82% 8%, #2e3647 0%, #1a212d 44%, #0e1219 100%); --app-accent: #a9b8ce; }
/* coluna de texto */
.appslide-brand { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1.2rem, 3vw, 2rem); }
.appslide-id { display: flex; align-items: center; gap: .6rem; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.66); }
.appslide-mark { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--app-accent); color: #0b1410; font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: -.02em; }
.appslide-status { font-family: var(--font-mono); font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: .28rem .62rem; white-space: nowrap; }
.appslide-status.is-live { color: #84efaa; border-color: rgba(90,225,140,.4); }
.appslide-status.is-live::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #46d98a; margin-right: .4rem; vertical-align: middle; box-shadow: 0 0 8px #46d98a; }
.appslide-eyebrow { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--app-accent); margin-bottom: .7rem; }
.appslide-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 5vw, 3.3rem); line-height: 1.03; letter-spacing: -.02em; color: #fff; margin-bottom: .9rem; }
.appslide-lead { font-size: clamp(1rem, 2.3vw, 1.12rem); line-height: 1.55; color: rgba(255,255,255,.74); max-width: 44ch; margin-bottom: 1.5rem; }
.appslide-list { list-style: none; display: flex; flex-direction: column; gap: .72rem; margin-bottom: clamp(1.5rem, 3.5vw, 2.2rem); }
.appslide-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .97rem; line-height: 1.42; color: rgba(255,255,255,.88); }
.appslide-list .ck { flex: none; width: 20px; height: 20px; margin-top: 1px; color: var(--app-accent); }
.appslide-foot { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; }
.appslide-brandline { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); }
.appslide-login { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.32); transition: color .2s, text-decoration-color .2s; }
.appslide-login:hover { color: #fff; text-decoration-color: var(--app-accent); }
.appslide .btn-primary { background: var(--app-accent); color: #0b140f; }
.appslide .btn-primary:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 18px 34px -16px var(--app-accent); }
.appslide-soon { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .62rem 1.1rem; }
/* coluna do celular */
.appslide-device { display: flex; justify-content: center; align-items: center; position: relative; }
.appslide-device::before { content: ""; position: absolute; width: 62%; height: 62%; border-radius: 50%; background: var(--app-accent); opacity: .22; filter: blur(55px); z-index: 0; }
.appslide-index { position: absolute; top: -.2rem; right: 0; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; color: rgba(255,255,255,.45); z-index: 2; }
.device { position: relative; z-index: 1; width: clamp(208px, 25vw, 264px); aspect-ratio: 390 / 844; border-radius: 40px; background: #070809; padding: 9px; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 34px 64px -22px rgba(0,0,0,.75); transition: transform .5s var(--ease); }
.appslide:hover .device { transform: translateY(-7px); }
.device::after { content: ""; position: absolute; top: 19px; left: 50%; transform: translateX(-50%); width: 33%; height: 19px; background: #070809; border-radius: 0 0 12px 12px; z-index: 3; }
.device-screen { position: relative; height: 100%; border-radius: 32px; overflow: hidden; background: #04130d; }
.device-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.device-screen.is-ph { display: grid; place-content: center; justify-items: center; gap: .65rem; background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.012)); }
.device-screen.is-ph .ph-mark { width: 50px; height: 50px; border-radius: 14px; background: var(--app-accent); color: #0b140f; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.device-screen.is-ph .ph-name { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.05rem; text-align: center; padding: 0 1.1rem; line-height: 1.15; }
.device-screen.is-ph .ph-soon { font-family: var(--font-mono); font-size: .54rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: .26rem .6rem; }
/* alternância de lados */
.appslide.is-reverse .appslide-copy { order: 2; }
.appslide.is-reverse .appslide-device { order: 1; }
.app--azure.is-reverse  { background: radial-gradient(125% 135% at 18% 8%, #1d3766 0%, #13213b 44%, #0a1322 100%); }
.app--indigo.is-reverse { background: radial-gradient(125% 135% at 18% 8%, #2d2f73 0%, #1b1d3c 44%, #0e0f22 100%); }
.app--slate.is-reverse  { background: radial-gradient(125% 135% at 18% 8%, #2e3647 0%, #1a212d 44%, #0e1219 100%); }
@media (max-width: 860px) {
  .appslide { grid-template-columns: 1fr; gap: 2rem; }
  .appslide-copy { order: 0 !important; }
  .appslide-device { order: 0 !important; }
}

/* ---- Sobre / Fundador ---- */
.about-facts { list-style: none; margin-top: 1.7rem; display: flex; flex-direction: column; gap: .58rem; }
.about-facts li { display: flex; align-items: center; gap: .65rem; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .02em; color: var(--muted); }
.about-facts li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: clamp(2rem, 4vw, 2.8rem) auto 0; display: flex; flex-direction: column; gap: .7rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.4rem; transition: border-color .25s, box-shadow .3s var(--ease); }
.faq-item[open] { border-color: var(--accent-line); box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; padding: 1.15rem 0; font-family: var(--font-sans); font-weight: 600; font-size: 1rem; color: var(--heading); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { flex: none; width: 22px; height: 22px; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item[open] .faq-ic { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 0 1.25rem; font-size: .95rem; line-height: 1.62; color: var(--muted); }
.faq-item p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ============ 9. MÉTODO ============ */
.method { display: grid; grid-template-columns: repeat(5, 1fr); }
.method-step { padding: 1.8rem 1.4rem 0 0; border-top: 1.5px solid var(--line-strong); position: relative; }
.method-step + .method-step { padding-left: 1.7rem; border-left: 1px solid var(--line-soft); }
.method-num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 400; color: var(--accent); line-height: 1; letter-spacing: -.02em; }
.method-step h3 { font-size: 1.28rem; margin: .9rem 0 .6rem; }
.method-step p { color: var(--muted); font-size: .91rem; text-wrap: pretty; }

/* ============ 10. DIFERENCIAIS ============ */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(44px, 6vw, 90px); align-items: center; }
.split-text h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.08; margin: 1.2rem 0; }
.split-text > p { color: var(--muted); font-size: 1.08rem; margin-bottom: 2.2rem; max-width: 44ch; text-wrap: pretty; }

.diffs { display: flex; flex-direction: column; }
.diffs li { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; padding: 1.65rem 0; border-top: 1px solid var(--line); transition: padding-left .35s var(--ease); }
.diffs li:last-child { border-bottom: 1px solid var(--line); }
.diffs li:hover { padding-left: .55rem; }
.diff-num { font-family: var(--font-mono); font-size: .8rem; color: var(--accent); padding-top: .35rem; }
.diffs h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: .4rem; }
.diffs p { font-size: .94rem; color: var(--muted); line-height: 1.6; text-wrap: pretty; }

/* ============ 11. PROVA ============ */
.quote { max-width: 900px; margin: 0 auto clamp(52px, 6vw, 80px); text-align: center; position: relative; }
.quote::before { content: "“"; display: block; font-family: var(--font-display); font-size: 4.5rem; line-height: .5; color: var(--accent); opacity: .35; margin-bottom: 1.2rem; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 2.15rem); font-weight: 400; line-height: 1.38; letter-spacing: -.012em; color: var(--heading); text-wrap: balance; }
.quote figcaption { font-family: var(--font-mono); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 1.8rem; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-card { padding: 1.9rem 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), border-color .3s; }
.proof-card:hover { transform: translateY(-4px); border-color: var(--accent-line); }
.proof-card h3 { font-size: 1.18rem; margin-bottom: .65rem; }
.proof-card p { color: var(--muted); font-size: .94rem; text-wrap: pretty; }

/* ============ 12. CTA ============ */
.cta-band { padding: clamp(72px, 9vw, 120px) 0; }
.cta-inner { position: relative; display: grid; grid-template-columns: 1.4fr auto; gap: clamp(28px, 4vw, 60px); align-items: center; overflow: hidden; background: linear-gradient(165deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(40px, 5.5vw, 68px); box-shadow: var(--shadow); }
.cta-inner::before { content: ""; position: absolute; top: -40%; right: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(143,153,255,.16), transparent 60%); pointer-events: none; }
.cta-inner .eyebrow { position: relative; margin-bottom: 1.1rem; }
.cta-inner h2 { position: relative; font-size: clamp(1.8rem, 3.3vw, 2.6rem); line-height: 1.12; margin-bottom: 1rem; max-width: 24ch; }
.cta-inner p { position: relative; color: var(--muted); font-size: 1.05rem; max-width: 52ch; text-wrap: pretty; }
.cta-inner .btn { position: relative; }

/* ============ 13. CONTATO ============ */
.contact-grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: 22px; align-items: start; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); padding: .88rem .98rem; font-family: inherit; font-size: .96rem; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); background: var(--surface); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23565a66' stroke-width='1.8'%3E%3Cpath d='M2 5l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.contact-form .btn { margin-top: .5rem; }
.form-hint { font-size: .86rem; margin-top: .9rem; min-height: 1.2rem; }
.form-hint.ok { color: var(--whats); }
.form-hint.err { color: #d23a3a; }

.contact-info { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 38px); }
.contact-info h3 { font-size: 1.2rem; margin-bottom: 1.6rem; }
.info-item { display: flex; gap: .95rem; align-items: center; padding: 1.05rem 0; border-bottom: 1px solid var(--line-soft); transition: color .2s; }
.info-item:last-of-type { border-bottom: 0; }
a.info-item:hover { color: var(--accent); }
a.info-item:hover .info-icon { border-color: var(--accent-line); color: var(--accent); }
.info-icon { flex-shrink: 0; color: var(--text); width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; transition: border-color .2s, color .2s; }
.info-item strong { display: block; font-size: .96rem; color: var(--heading); font-weight: 600; }
.info-sub { font-size: .86rem; color: var(--muted); }
.info-cta { margin-top: 1.7rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
.info-cta p { font-size: .9rem; color: var(--muted); margin-bottom: .85rem; }

/* ============ 14. FOOTER ============ */
.site-footer { border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: clamp(44px, 6vw, 72px) 24px; border-bottom: 1px solid var(--line-soft); }
.footer-statement { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 500; line-height: 1.1; letter-spacing: -.02em; color: var(--heading); max-width: 18ch; text-wrap: balance; }
.footer-inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: clamp(32px, 5vw, 64px); padding: clamp(48px, 6vw, 72px) 24px clamp(40px, 4vw, 52px); }
.footer-brand .brand { margin-bottom: 1.3rem; }
.footer-brand .brand-mark { color: var(--accent); }
.footer-brand p { color: var(--muted); font-size: .92rem; max-width: 40ch; text-wrap: pretty; }
.footer-col h4 { font-family: var(--font-mono); font-weight: 400; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.3rem; }
.footer-col a, .footer-static { display: block; color: var(--text); font-size: .94rem; padding: .38rem 0; transition: color .2s; }
.footer-col a { width: fit-content; }
.footer-col a:hover { color: var(--accent); }
.footer-static { color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--line-soft); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0; }
.footer-bottom span { font-size: .81rem; color: var(--faint); }

/* ============ 15. UTILIDADES & RESPONSIVO ============ */
.whats-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--whats); color: #fff; display: grid; place-items: center;
  box-shadow: 0 18px 34px -12px rgba(30, 175, 82, .5);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.whats-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 22px 40px -12px rgba(30, 175, 82, .65); }

/* Revelação on-scroll (stagger via --reveal-i definido no JS) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--reveal-i, 0) * 75ms); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { max-width: 460px; }
  .hero-title { max-width: 20ch; }
  .authority-inner { grid-template-columns: 1fr; gap: 40px; }
  .solutions { grid-template-columns: repeat(2, 1fr); }
  .solutions .solution:nth-child(3n) { border-right: 1px solid var(--line); }
  .solutions .solution:nth-child(2n) { border-right: 0; }
  .solutions .solution:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .solutions .solution:nth-last-child(-n+2) { border-bottom: 0; }
  .products, .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: repeat(2, 1fr); gap: 0 36px; }
  .method-step { border-top: 1.5px solid var(--line-strong); }
  .method-step + .method-step { border-left: 0; padding-left: 0; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .5rem 24px 1.5rem; align-items: stretch;
    transform: translateY(-140%); transition: transform .4s var(--ease); box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .site-header .nav > a:not(.btn) { color: var(--text); padding: 1.05rem 0; border-bottom: 1px solid var(--line-soft); }
  .site-header .nav > a:not(.btn)::after { display: none; }
  .site-header .nav > a:not(.btn):hover { color: var(--accent); }
  .nav .btn-nav { margin-top: 1rem; }

  .hero { padding-top: clamp(120px, 30vw, 150px); }
  .solutions { grid-template-columns: 1fr; }
  .solutions .solution { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; padding: 1.9rem 1.5rem; }
  .solutions .solution:last-child { border-bottom: 0 !important; }
  .solution::before { display: none; }
  .products, .proof-grid { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: flex-start; }
  .hero-trust { gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Smartcoach — guia que passeia pelo site e dá dicas ---- */
#mascot { position: fixed; bottom: 0; left: 4%; z-index: 120; pointer-events: none; }
.m-inner { position: relative; pointer-events: auto; cursor: pointer; }
.m-img { display: block; height: 150px; width: auto; filter: drop-shadow(0 12px 22px rgba(13,14,19,.5)); transform-origin: bottom center; }
.m-bubble { position: absolute; bottom: 138px; left: 50%; transform: translateX(-50%); width: 214px; background: #16171f; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; border-bottom-left-radius: 3px; padding: 11px 14px 12px; font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; color: #eceef6; line-height: 1.45; box-shadow: 0 16px 38px rgba(8,9,13,.5); opacity: 0; visibility: hidden; transition: opacity .35s ease; }
.m-bubble.show { opacity: 1; visibility: visible; }
.m-bubble b { color: #9aa3ff; }
.m-bubble::after { content: ""; position: absolute; bottom: -7px; left: 46px; border: 7px solid transparent; border-top-color: #16171f; border-bottom: 0; }
.m-x { position: absolute; top: 2px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: #262833; border: 1px solid rgba(255,255,255,.15); color: #cfd2e0; font-size: 13px; font-weight: 800; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; }
@media (prefers-reduced-motion: no-preference) {
  #mascot { transition: left 6s cubic-bezier(.45,.05,.55,.95); }
  .m-img { animation: mBob 2.6s ease-in-out infinite; }
}
@keyframes mBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 760px) { .m-img { height: 104px; } .m-bubble { width: 168px; bottom: 96px; font-size: 12px; } }
