/* ==========================================================================
   Tecvashop — Landing Page (pré-lançamento)
   Design tokens copied from the Tecvashop Design System
   (colors.css / spacing.css / typography.css / effects.css)
   ========================================================================== */

:root {
  /* Color */
  --bg-abyss: #08080A;
  --bg-base: #111214;
  --bg-surface: #16171A;
  --bg-surface-raised: #1A1B1F;
  --brand: #3B82F6;
  --brand-hover: #2563EB;
  --brand-light: #60A5FA;
  --brand-subtle: rgba(59,130,246,0.12);
  --card-gradient: linear-gradient(to bottom, #171b24 0%, #11131a 55%, #0a0a0d 100%);
  --border-subtle: rgba(255,255,255,0.08);
  --border-visible: rgba(255,255,255,0.12);
  --border-active: rgba(59,130,246,0.4);
  --danger: #EF4444;
  --success: #22C55E;
  --warning: #F59E0B;
  --glow-blue: rgba(59,130,246,0.3);
  --glow-purple: #8B5CF6;
  --glow-magenta: #D946EF;
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --text-inverse: #08080A;

  /* Typography */
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --tracking-tight: -0.02em;
  --tracking-snug: -0.01em;
  --tracking-wide: 0.08em;
  --leading-tight: 1.15;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.7;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Spacing (4px base grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --section-y: clamp(72px, 10vw, 128px);
  --container-max: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 36px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.6);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --duration-fast: 150ms;
  --duration-base: 200ms;
  --duration-slow: 320ms;

  /* Tunable via this file only (no inline styles) */
  --hero-video-opacity: 0.25;

  /* Camadas de imagem de background (swirl) — ajuste aqui a transparência
     e a escala de TODAS as camadas de uma vez. Cada .bg-swirl também aceita
     um --bg-swirl-scale individual via style inline no HTML, se quiser
     ajustar uma camada específica sem mexer nas outras. */
  --bg-swirl-opacity: 0.15;
  --bg-swirl-scale: 1;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-abyss);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: rgba(59,130,246,0.35); color: #fff; }
input::placeholder { color: var(--text-muted); }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
.mono { font-family: var(--font-mono); }
.text-muted { color: var(--text-secondary); }

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes revealUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatOrbA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-50px) scale(1.08); } }
@keyframes floatOrbB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-36px,44px) scale(0.94); } }
@keyframes bounceDot { 0%,80%,100% { transform: translateY(0); opacity: 0.4; } 40% { transform: translateY(-6px); opacity: 1; } }
@keyframes pulseRing { 0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.35); } 50% { box-shadow: 0 0 0 10px rgba(59,130,246,0); } }

/* ==========================================================================
   Fluid background (continuous — no hard seams between sections)
   ========================================================================== */
.bg-fluid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    
    var(--bg-abyss);
}
.orb { position: absolute; border-radius: 50%; filter: blur(30px); }
.orb-a { width: 1560px; height: 1560px; top: -160px; left: -160px; background: radial-gradient(circle, rgba(59,130,246,0.22), transparent 70%); animation: floatOrbA 16s ease-in-out infinite; }
.orb-b { width: 520px; height: 520px; top: 38%; right: -180px; background: radial-gradient(circle, rgba(139,92,246,0.16), transparent 70%); animation: floatOrbB 18s ease-in-out infinite; }
.orb-c { width: 520px; height: 520px; bottom: -180px; left: 22%; background: radial-gradient(circle, rgba(217,70,239,0.12), transparent 70%); animation: floatOrbA 20s ease-in-out infinite; }
.grain { position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay; background-repeat: repeat; }

/* ==========================================================================
   Background — camadas de imagem (swirl) ancoradas nas seções
   Cada seção-âncora (#historias, #como-funciona, #ralos, #motor,
   #institucional, #faq) ganha position:relative só para conter sua
   camada .bg-swirl; o restante da seção não é afetado.
   Ajuste rápido: --bg-swirl-opacity e --bg-swirl-scale no :root acima.
   Ajuste por camada: edite o "top" / "--bg-swirl-scale" inline de cada
   <img class="bg-swirl ..."> no index.html.
   ========================================================================== */
#historias, #como-funciona, #ralos, #motor, #institucional, #faq, #numeros {
  position: relative;
  z-index: 1;
}
.bg-swirl {
  position: absolute;
  width: clamp(300px, 134vw, 700px);
  height: auto;
  opacity: var(--bg-swirl-opacity);
  transform: translate3d(0, var(--bg-swirl-parallax-y, 0px), 0) scale(var(--bg-swirl-scale, 1));
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.bg-swirl--left { left: clamp(-200px, -12vw, -40px); }
.bg-swirl--right { right: clamp(-200px, -12vw, -40px); }

@media (prefers-reduced-motion: reduce) {
  .bg-swirl { transform: scale(var(--bg-swirl-scale, 1)) !important; }
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--glow-purple), var(--glow-magenta));
  z-index: 1000;
  transition: width 80ms linear;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
main { position: relative; z-index: 1; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.mt-lg { margin-top: var(--space-5); }
.mt-xl { margin-top: var(--space-16); }
.mt-xxl { margin-top: clamp(56px, 8vw, 88px); }

.grid { display: grid; gap: var(--space-6); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--gap-lg { gap: var(--space-6); }
.grid--gap-xl { gap: clamp(32px, 5vw, 56px); }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(32px, 5vw, 64px); }
.split--center { align-items: center; }
.split--top { align-items: start; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  text-transform: uppercase; letter-spacing: var(--tracking-wide);
  font-size: 1rem; font-weight: var(--weight-bold); color: var(--brand-light);
  background: var(--brand-subtle); border: 1px solid var(--border-active);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill);
}
.eyebrow--static { display: block; background: none; border: none; padding: 0; margin-bottom: var(--space-6); }

.badge {
  display: inline-block; text-transform: uppercase; letter-spacing: var(--tracking-wide);
  font-size: 12px; font-weight: var(--weight-bold); color: var(--brand-light);
  background: var(--brand-subtle); border: 1px solid var(--border-active);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill);
  margin-bottom: var(--space-6);
}

.section-intro { text-align: center; }
.section-intro h2 { font-size: clamp(28px, 5vw, 44px); line-height: var(--leading-tight); letter-spacing: var(--tracking-tight); font-weight: var(--weight-extrabold); max-width: 820px; margin: 0 auto; }
.section-intro p { font-size: 17px; line-height: var(--leading-relaxed); color: var(--text-secondary); max-width: 680px; margin: var(--space-4) auto 0; }

.section-outro {
  text-align: center; font-size: 1.5rem; font-weight: var(--weight-semibold); color: var(--text-secondary);
  max-width: 680px; margin: 56px auto 0;
}

.icon-chip {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--brand-subtle); border: 1px solid var(--border-active);
  display: flex; align-items: center; justify-content: center; color: var(--brand-light);
  margin-bottom: var(--space-5);
}
.icon-chip svg { width: 23px; height: 23px; }
.icon-chip--lg { width: 68px; height: 68px; border-radius: 20px; margin-bottom: var(--space-6); }
.icon-chip--lg svg { width: 32px; height: 32px; }
.icon-chip--purple { background: rgba(139,92,246,0.16); border-color: rgba(139,92,246,0.4); color: var(--glow-purple); }

.mark-azul{
  color: var(--text-secondary);
  background: transparent;
  padding:0px 15px 3px 15px;
  border-radius: 30px;
  border: solid 1px var(--text-primary);
}
.hero-perguntas{
  display: block;
  font-weight: 700;
  font-style: italic;
  font-size: 1.8rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  font-family: var(--font-body); font-weight: var(--weight-bold);
  transition: background var(--duration-base) ease, gap var(--duration-base) ease, transform var(--duration-fast);
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; padding: 15px 26px; font-size: 15px; text-decoration: none; }
.btn--primary:hover { background: var(--brand-hover); gap: var(--space-3); }
.btn--primary:active { transform: scale(0.98); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 900;
  display: flex; justify-content: center; padding: 0 clamp(16px, 4vw, 32px);
  transition: transform var(--duration-slow) var(--ease-out);
}
.site-header.is-hidden { transform: translateY(-130%); }
.site-header__bar {
  width: 100%; max-width: 1080px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: 15px 15px 15px 30px;
  background: var(--bg-surface-raised);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.10);
}
.site-header__logo img { height: 35px; width: auto; }
.site-header__nav { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 28px); }
.site-header__nav a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: var(--weight-semibold); transition: color var(--duration-base); }
.site-header__nav a:hover { color: #fff; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: clamp(140px, 18vh, 190px) var(--gutter) clamp(48px, 7vw, 80px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden;  }
.hero__video { top:0; inset: 0; width: 100%; height: 100%; object-fit: cover;  }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.65; }
.hero__vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 55% at 50% 42%, transparent 30%, rgba(8,8,10,0.55) 100%); }
.dev-note {
  position: absolute; bottom: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4); border: 1px dashed rgba(255,255,255,0.22);
  padding: 5px 10px; border-radius: var(--radius-sm); background: rgba(8,8,10,0.4);
  pointer-events: none;
}
.tela-imagem{
  width: 100%;
}

.hero__content { position: relative; z-index: 1; max-width: 1170px; display: flex; flex-direction: column; align-items: center; gap: var(--space-6); }
.hero__title { font-size: clamp(30px, 6.6vw, 45px); line-height: 1.30; letter-spacing: var(--tracking-tight); font-weight: var(--weight-extrabold); }
.hero__title--accent { color: var(--brand-light); font-size: 60px; }
.hero__title--accent--branco{
  color: #FFFFFF;
}
.hero__subtitle { font-size: clamp(16px, 2.2vw, 19px); line-height: var(--leading-relaxed); color: var(--text-primary); max-width: 800px; padding-bottom: 25px; }
.hero__fineprint { font-size: 13px; color: var(--text-muted); }

.reveal-up { display: inline; opacity: 0; animation: revealUp 700ms var(--ease-out) forwards; }

.capture-form { width: 100%; max-width: 500px; }
.capture-form__row { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; width: 100%; }
.capture-form__row input {
  flex: 1 1 220px; min-width: 220px; padding: 15px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-visible); background: rgba(255,255,255,0.05); color: #fff;
  font-size: 16px; font-family: var(--font-body); outline: none;
  transition: border-color var(--duration-base), background var(--duration-base);
}
.capture-form__row input:focus { border-color: rgba(59,130,246,0.5); background: rgba(255,255,255,0.08); }
.capture-form__success {
  display: flex; align-items: center; justify-content: center; gap: var(--space-3);
  color: var(--success); font-weight: var(--weight-semibold); font-size: 15px; padding: 14px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius-lg);
}

/* Product mock */
.hero__mock { width: 100%; max-width: 980px; border-radius: var(--radius-xl); margin: var(--space-16) auto 0; position: relative; z-index: 1; box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.10); }
.mock-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border-visible); background: var(--card-gradient);
  box-shadow: 0 0 80px rgba(59,130,246,0.18), var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.10);
  padding: 10px;
}
.mock-frame__dots { display: flex; align-items: center; gap: var(--space-2); padding: 4px 8px 10px; }
.mock-frame__dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.14); display: block; }

/* Gatilho de vídeo: imagem de capa + botão de play custom */
.hero__video-trigger {
  display: block; width: 100%; padding: 0; margin: 0; border: none;
  background: none; cursor: pointer; position: relative;
  border-radius: inherit; overflow: hidden;
}
.hero__video-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(59,130,246,0.45), var(--shadow-md);
  transition: transform var(--duration-base) var(--ease-out), background var(--duration-base);
  animation: pulseRing 2.4s infinite;
}
.video-play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.hero__video-trigger:hover .video-play-btn,
.hero__video-trigger:focus-visible .video-play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--brand-hover); }
.hero__video-trigger:focus-visible { outline: 2px solid var(--brand-light); outline-offset: 4px; }

/* Image slot placeholders (fill these in later) */
.image-slot {
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1px solid var(--bg-surface-raised); border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03); color: var(--text-muted); font-size: 13px;
}
.image-slot--lg { height: clamp(240px, 42vw, 520px); border-radius: 14px; }
.image-slot--md { height: clamp(220px, 30vw, 320px); border-radius: var(--radius-xl); }

.image-ralos{
  display: block;
  max-width: 500px;
}
.image-rodape-grande{
    display: flex;
    align-items: center;
    justify-content: center;
}
.espaco-faq{
  padding-top: 0 !important;
}
.proposito{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.proposito h2{
  text-transform: uppercase; letter-spacing: var(--tracking-wide);
  font-size: 1rem; font-weight: var(--weight-bold); color: var(--brand-light);
  padding-bottom: 0.7rem;
}
.proposito h2 span{
  text-transform: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  display: block;
  padding-top: 24px;
}
.proposito p{
  color: var(--text-muted);
}
.img-instituto{
  margin-top: 4.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.mvv{
  align-items: self-start !important;
}
.mvv h2{
  padding-bottom: 0.7rem;
}
.espaco-valores{
  padding-top: 1.5rem;
}
/* Stats strip */
.hero__strip { width: 100%; max-width: 980px; margin: var(--space-10) auto 0; display: flex; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.hero__stat { flex: 1 1 200px; display: flex; flex-direction: column; gap: var(--space-2); align-items: center; text-align: center; padding: var(--space-5); border-top: 1px solid var(--border-subtle); }
.stat-num { font-family: var(--font-mono); font-size: clamp(30px, 5vw, 44px); font-weight: var(--weight-bold); color: #fff; }
.stat-num--card { display: block; font-size: clamp(28px, 4vw, 38px); margin-bottom: var(--space-3); }
.stat-label { font-size: 14px; color: var(--text-secondary); line-height: 1.55; max-width: 240px; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--card-gradient); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 60px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.10);
  position: relative; overflow: hidden;
}
.card__historia {
  background-image: url(/assets/historias-tecvashop-ads-google.png);
  background-size: cover; background-repeat: no-repeat; background-position: top center;
  display: flex;
  align-content: end;
  flex-wrap: wrap;
  background-color: var(--bg-base);
}
.card__historia__gestor {
  background-image: url(/assets/historias-gestor-ecommerce.png);
  background-size: cover; background-repeat: no-repeat; background-position: top center;
  display: flex;
  align-content: end;
  flex-wrap: wrap;
  background-color: var(--bg-base);
}
.card__historia__financeiro {
  background-image: url(/assets/historias-ralo-financeiro.png);
  background-size: cover; background-repeat: no-repeat; background-position: top center;
  display: flex;
  align-content: end;
  flex-wrap: wrap;
  background-color: var(--bg-base);
}



.card__quote { font-size: 1.3rem; font-style: italic; line-height: var(--leading-normal);  color: var(--text-primary); margin: 158px 0 0 !important; }
.card__body { font-size: 14.5px; line-height: var(--leading-normal); color: var(--text-secondary); }

/* Mini line charts */
.mini-chart { width: 100%; height: 64px; display: block; margin-bottom: var(--space-5); overflow: visible; }
.mini-chart__line { stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.6s var(--ease-out) 0.2s; }
.reveal.is-visible .mini-chart__line { stroke-dashoffset: 0; }
.mini-chart__line--blue { stroke: var(--brand); }
.mini-chart__line--purple { stroke: var(--glow-purple); }
.mini-chart__line--red { stroke: var(--danger); transition-delay: 0.5s; }
.mini-chart__fill { opacity: 0; transition: opacity 0.9s var(--ease-out) 0.9s; }
.reveal.is-visible .mini-chart__fill { opacity: 1; }
.mini-chart__fill--blue { fill: rgba(59,130,246,0.10); }
.mini-chart__fill--purple { fill: rgba(139,92,246,0.10); }

/* Manifesto */
.manifesto { max-width: 1024px; margin: 0 auto; text-align: center; padding: 0 var(--gutter); }
.manifesto__lead { font-size: clamp(22px, 3.8vw, 34px); line-height: var(--leading-snug); font-weight: var(--weight-bold); letter-spacing: var(--tracking-snug); color: var(--text-secondary); }
.manifesto__body { font-size: 17px; line-height: var(--leading-relaxed); color: var(--text-secondary); }
.proposito-tecvashop{
  display: block;
  font-style: italic;
  color: var(--text-primary);
}

/* Steps */
.step__head { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-6); }
.step__num {
  display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(139,92,246,0.15));
  border: 1px solid var(--border-active); color: var(--brand-light);
  font-family: var(--font-mono); font-size: 20px; font-weight: var(--weight-bold); flex-shrink: 0;
}
.step__line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(59,130,246,0.4), transparent); }
.step h3 { font-size: 21px; font-weight: var(--weight-bold); margin-bottom: var(--space-3) !important; color: #fff; }
.step p { font-size: 15.5px; line-height: var(--leading-relaxed); color: var(--text-secondary); }
.titulo-claro h2{
  color: var(--text-secondary) !important;
}
.icones-integracao{
  max-width: 200px;
}
.card-integracao{
  max-width: 250px !important;
}
.color-suave{
  color: var(--text-secondary);
}
/* Chat card */
.chat-card {
  background: var(--card-gradient); border: 1px solid var(--border-subtle); border-radius: 28px; padding: 24px;
  box-shadow: 0 0 60px rgba(59,130,246,0.12), inset 0 1px 0 rgba(255,255,255,0.10);
}
.chat-card__head { display: flex; align-items: center; gap: var(--space-3); padding-bottom: var(--space-4); margin-bottom: var(--space-5); border-bottom: 1px solid var(--border-subtle); font-weight: var(--weight-bold); font-size: 14px; }
.chat-card__avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--brand-subtle); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-card__avatar img { width: 16px; height: 16px; }
.chat-card__status { width: 8px; height: 8px; border-radius: 50%; background: var(--success); margin-left: auto; animation: pulseRing 2s infinite; }
.chat-card__body { display: flex; flex-direction: column; gap: var(--space-4); min-height: 170px; justify-content: flex-end; }
.bubble { max-width: 82%; padding: 12px 16px; font-size: 14.5px; line-height: 1.5; border-radius: 16px 16px 4px 16px; }
.bubble--user { align-self: flex-end; background: var(--brand); color: #fff; opacity: 0; animation: revealUp 500ms var(--ease-out) forwards; }
.bubble--bot { align-self: flex-start; max-width: 88%; background: var(--bg-surface-raised); border: 1px solid var(--border-subtle); color: #fff; border-radius: 16px 16px 16px 4px; opacity: 0; animation: revealUp 500ms var(--ease-out) forwards; }
.bubble--typing { align-self: flex-start; display: flex; gap: 5px; background: var(--bg-surface-raised); padding: 14px 18px; border-radius: 16px 16px 16px 4px; width: fit-content; }
.bubble--typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted); display: inline-block; animation: bounceDot 1.2s infinite ease-in-out; }
.bubble--typing span:nth-child(2) { animation-delay: 150ms; }
.bubble--typing span:nth-child(3) { animation-delay: 300ms; }

/* Feature rows */
.feature-rows { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 104px); }
.feature-row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 4vw, 56px); }
.feature-row__text, .feature-row__visual { flex: 1 1 320px; min-width: 280px; }
.feature-row__visual { flex-basis: 380px; }
.feature-row__text--order1 { order: 1; }
.feature-row__visual--order2 { order: 2; }
.feature-row h3 { font-size: clamp(21px, 3vw, 26px); font-weight: var(--weight-extrabold); letter-spacing: var(--tracking-snug); margin-bottom: 14px !important; color: var(--brand-light); }
.feature-row p { font-size: 15.5px; line-height: var(--leading-relaxed); color: var(--text-secondary); }

.coupon-card { border-radius: var(--radius-xl); border: 1px solid var(--border-subtle); background: var(--card-gradient); box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.10); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.coupon-bar__head { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-secondary); margin-bottom: 5px; }
.coupon-bar__track { height: 10px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.06); overflow: hidden; }
.coupon-bar__fill { height: 100%; border-radius: var(--radius-pill); width: 0%; transition: width 1s var(--ease-out); }
.reveal.is-visible .coupon-bar__fill { width: var(--pct); }

/* Pillars */
.pillars { display: flex; align-items: stretch; justify-content: center; gap: var(--space-5); flex-wrap: wrap; }
.pillar { flex: 1 1 320px; max-width: 440px; padding: 38px 32px; box-shadow: 0 0 60px rgba(59,130,246,0.14), inset 0 1px 0 rgba(255,255,255,0.10); }
.pillar--purple { box-shadow: 0 0 60px rgba(139,92,246,0.14), inset 0 1px 0 rgba(255,255,255,0.10); }
.pillar h3 { font-size: 22px; font-weight: var(--weight-extrabold); margin-bottom: var(--space-3) !important; color: #fff; }
.pillar p { font-size: 15.5px; line-height: var(--leading-relaxed); color: var(--text-secondary); }
.pillar-arrow {
  display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand-subtle); border: 1px solid rgba(59,130,246,0.35); color: var(--brand-light);
  flex-shrink: 0; align-self: center; animation: pulseRing 2.4s infinite;
}
.pillar-arrow svg { width: 22px; height: 22px; }

/* Bar chart mini (numbers section) */
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 56px; margin-bottom: 22px; }
.bar-chart span { flex: 1; border-radius: 4px 4px 2px 2px; height: 4px; transition: height 0.9s var(--ease-out); }
.reveal.is-visible .bar-chart span { height: var(--h); }

/* Final capture card */
.final-card {
  max-width: 900px; margin: 0 auto; text-align: center;
  background: var(--card-gradient); border: 1px solid var(--border-visible); border-radius: var(--radius-2xl);
  padding: clamp(40px, 7vw, 72px) clamp(24px, 5vw, 64px);
  position: relative; overflow: hidden;
  box-shadow: 0 0 80px rgba(59,130,246,0.14), inset 0 1px 0 rgba(255,255,255,0.10);
}
.final-card__glow-a { position: absolute; width: 420px; height: 420px; border-radius: 50%; bottom: -200px; right: -140px; background: radial-gradient(circle, rgba(59,130,246,0.30), transparent 70%); filter: blur(40px); pointer-events: none; }
.final-card__glow-b { position: absolute; width: 320px; height: 320px; border-radius: 50%; bottom: -160px; right: 60px; background: radial-gradient(circle, rgba(139,92,246,0.22), transparent 70%); filter: blur(30px); pointer-events: none; }
.final-card__content { position: relative; }
.final-card__content h2 { font-size: clamp(28px, 5.4vw, 46px); line-height: var(--leading-tight); letter-spacing: var(--tracking-tight); font-weight: var(--weight-extrabold); margin-bottom: var(--space-4) !important; }
.final-card__content p { font-size: 17px; line-height: var(--leading-relaxed); color: var(--text-secondary); max-width: 600px; margin: 0 auto var(--space-8); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { background: var(--card-gradient); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  background: none; border: none; text-align: left; padding: 20px 24px; cursor: pointer;
  color: #fff; font-size: 16.5px; font-weight: var(--weight-semibold); font-family: var(--font-body);
}
.faq-item__q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-secondary); transition: transform var(--duration-slow) var(--ease-out); }
.faq-item.is-open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 420ms var(--ease-out); }
.faq-item.is-open .faq-item__a { max-height: 400px; }
.faq-item__a p { font-size: 15px; line-height: var(--leading-relaxed); color: var(--text-secondary); padding: 0 24px 20px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--border-subtle); padding: 56px 0 36px; }
.site-footer__top { display: flex; flex-wrap: wrap; gap: clamp(32px, 6vw, 88px); justify-content: space-between; }
.site-footer__brand { display: flex; flex-direction: column; gap: var(--space-4); max-width: 300px; }
.site-footer__brand img { height: auto; max-width: 160px; display: block; }
.site-footer__brand p { font-size: 14px; line-height: var(--leading-normal); color: var(--text-muted); }
.site-footer__nav { display: flex; gap: clamp(32px, 6vw, 72px); flex-wrap: wrap; }
.site-footer__nav div { display: flex; flex-direction: column; gap: var(--space-3); }
.site-footer__nav span { font-size: 12px; font-weight: var(--weight-bold); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--text-muted); }
.site-footer__nav a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color var(--duration-base); }
.site-footer__nav a:hover { color: #fff; }
.site-footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 13px; color: var(--text-muted); }

/* ==========================================================================
   Scroll-reveal base state (JS toggles .is-visible)
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }



/* ============================================================
   RESPONSIVIDADE MOBILE FIRST
   ============================================================ */

/* ---- Tablet largo (≤ 1200px) ---- */
   @media (max-width: 850px) {
    .site-header__bar{
      flex-direction: column;
    }
    .site-header__bar .btn{
      display: none;
    }
    .hero__title--accent{
      display: block;
    }
}


/* ====================================================
   MOBILE (≤ 640px)
   ==================================================== */
@media (max-width: 640px) {
  .site-header__bar{
    flex-direction: column;
    max-width: 340px;
  }
  .site-header{
    justify-content: normal;
  }
  .site-header__bar .btn{
    display: none;
  }
  nav a.menu-mobile{
    display: none;
  }
  .eyebrow-mobile{
    font-size: 0.8rem;
  }
  .chamada-mobile-hero{
    font-size: 1.5rem;
  }
  .hero__title--accent{
    font-size: 50px;
  }
  .hero-perguntas{
    font-size: 1.5rem;
  }
  .pillars{
    flex-direction: column;
    align-content: center;
  }
  .pillar{
    flex: 1 1 200px;
  }
  .pillar-mobile{
    flex: 1 1 400px;
  }
  .bg-swirl{
    display: none;
  }
  }

/* ==========================================================================
   Video modal — vídeo hospedado localmente (assets/video), controles nativos
   ========================================================================== */
.video-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-8);
}
.video-modal[hidden] { display: none; }
.video-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(4,4,6,0.92);
  backdrop-filter: blur(6px);
}
.video-modal__dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 1600px;
  display: flex; justify-content: center;
  animation: revealUp var(--duration-slow) var(--ease-out);
}
.video-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-visible); background: rgba(8,8,10,0.6);
  backdrop-filter: blur(4px);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--duration-base);
}
.video-modal__close:hover { background: rgba(8,8,10,0.85); }
.video-modal__close svg { width: 18px; height: 18px; }
.video-modal__video {
  display: block; width: auto; height: auto;
  max-width: 100%; max-height: 88vh;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  background: #000;
}
body.video-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .video-modal { padding: var(--space-3); }
  .video-modal__video { max-height: 82vh; border-radius: var(--radius-md); }
  .video-play-btn { width: 68px; height: 68px; }
  .video-play-btn svg { width: 24px; height: 24px; }
}