/* ============================================================
   FlashCRM — /novo
   Apenas o que Tailwind não cobre: tokens auxiliares, botões
   (shine), megamenu interativo, carrossel, animações de entrada.
   ============================================================ */

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

/* ---- Skip-to-main link (accessibility) ---- */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  padding: 8px 16px; background: #C0F353; color: #0A0A0C;
  font-weight: 700; border-radius: 0 0 8px 8px;
  text-decoration: none; font-size: 14px;
}
.skip-link:focus { top: 0; }

:root{
  /* Marca — verde lime (mantido como var pra interop com CSS abaixo) */
  --ds-accent:     #C0F353;
  --ds-accent-600: #9FD22F;
  --ds-accent-700: #84B41A;
  --ds-accent-300: #DCF98C;

  /* Tints derivados */
  --ds-t14:  color-mix(in srgb, var(--ds-accent) 14%, transparent);
  --ds-t34:  color-mix(in srgb, var(--ds-accent) 34%, transparent);
  --ds-glow: color-mix(in srgb, var(--ds-accent) 32%, transparent);

  --ds-on: #0A0A0C;

  --shadow-accent: 0 16px 40px var(--ds-glow);

  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 140ms;
  --dur-base: 240ms;
  --dur-slow: 520ms;
}

/* ---- Announcement Bar ---- */
.topbar-dot{
  width: 6px; height: 6px;
  background: #C0F353;
  border-radius: 50%;
  flex-shrink: 0;
  animation: cbsPulse 2.4s ease-out infinite;
  box-shadow: 0 0 6px rgba(192,243,83,.5);
}
.topbar-highlight{
  color: #C0F353;
  font-weight: 700;
}
.topbar-announce{
  font-weight: 500;
  color: rgba(255,255,255,.88) !important;
}

/* ---- Botões ---- */
.btn{
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary{
  background: var(--ds-accent);
  color: var(--ds-on);
}
.btn-primary:hover{
  background: var(--ds-accent-600);
  transform: translateY(-1px);
}
.btn-primary:active{
  transform: translateY(0);
}
.btn-outline{
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline:hover{
  border-color: #fff;
  background: rgba(255,255,255,.06);
}

/* ---- Nav links ---- */
.nav-link{
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.86);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.nav-link:hover{ color: #fff; }

/* ---- Animações de entrada ---- */
@keyframes fcRise{
  from{ opacity: 0; transform: translateY(16px); }
  to{   opacity: 1; transform: translateY(0); }
}
@keyframes fcSpinSlow{ to{ transform: rotate(360deg); } }

.anim-on .rise{
  opacity: 0;
  animation: fcRise var(--dur-slow) var(--ease-out) forwards;
}
.anim-on .rise.d1{ animation-delay: .05s; }
.anim-on .rise.d2{ animation-delay: .14s; }
.anim-on .rise.d3{ animation-delay: .23s; }
.anim-on .rise.d4{ animation-delay: .32s; }
.anim-on .rise.d5{ animation-delay: .41s; }
.rise-safe .rise{ opacity: 1 !important; transform: none !important; }

.anim-on .ring{
  transform-origin: center;
  animation: fcSpinSlow 70s linear infinite;
}

/* ---- Responsivo (mobile fallback) ---- */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    padding-top: 48px !important;
    padding-bottom: 64px !important;
  }
  .hero-grid > div:last-child{ justify-self: center !important; }
}
@media (max-width: 760px){
  .hide-sm{ display: none !important; }
}

/* ============================================================
   Megamenu
   ============================================================ */
.has-mega{
  position: relative;
  display: inline-flex;
  align-items: center;
}
/* O gatilho pode ser <button> (não navega, só abre o dropdown) — zera o visual nativo */
button.mega-trigger{
  appearance: none;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  line-height: inherit;
}
.mega-trigger .mega-caret{ transition: transform var(--dur-fast) ease; }
.has-mega:hover .mega-trigger,
.has-mega:focus-within .mega-trigger,
.has-mega.is-open .mega-trigger{ color: #fff; }
.has-mega:hover .mega-caret,
.has-mega:focus-within .mega-caret,
.has-mega.is-open .mega-caret{ transform: rotate(180deg); }

.mega-panel{
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  transform: translateY(8px);
  width: min(880px, 92vw);
  background: rgba(16,16,20,.86);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
          backdrop-filter: blur(28px) saturate(150%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.55),
    0 0 0 1px rgba(192,243,83,.04);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s,
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
  z-index: 60;
}
.mega-panel::before{
  content: "";
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 18px;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.has-mega.is-open .mega-panel{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner{
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 18px;
}
.mega-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mega-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background var(--dur-fast) ease;
}
.mega-item:hover{ background: rgba(255,255,255,.04); }
.mega-ico{
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--ico-bg, rgba(255,255,255,.06));
  color: var(--ico-fg, #fff);
}
.mega-text{ min-width: 0; }
.mega-title{
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  line-height: 1.2;
}
.mega-desc{
  font-size: 12.5px;
  color: rgba(255,255,255,.58);
  line-height: 1.45;
}
.mega-pill{
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--ds-t14);
  color: var(--ds-accent-300);
  border: 1px solid var(--ds-t34);
}
.mega-pill-soft{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  border-color: rgba(255,255,255,.10);
}

.mega-feature{
  position: relative;
  border-radius: 14px;
  padding: 18px;
  background:
    radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--ds-accent) 22%, transparent), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--ds-t34);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.mega-feature-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ds-accent-300);
  margin-bottom: 12px;
}
.mega-feature-title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
}
.mega-feature-desc{
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.66);
}
.mega-feature-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ds-accent-300);
  text-decoration: none;
  transition: gap var(--dur-fast) ease;
}
.mega-feature-link:hover{ gap: 10px; color: var(--ds-accent); }

@media (max-width: 980px){
  .mega-inner{ grid-template-columns: 1fr; }
  .mega-panel{ width: min(560px, 92vw); }
}
@media (max-width: 640px){
  .mega-grid{ grid-template-columns: 1fr; }
}

/* ============================================================
   Carrossel de logos (social proof do hero)
   ============================================================ */
.logo-carousel{ position: relative; }
.logo-carousel-viewport{
  position: relative;
  width: 300px;
  height: 32px;
  overflow: hidden;
}
.logo-carousel-group{
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.logo-carousel-group.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.logo-carousel-group img{
  display: block;
  max-height: 22px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) grayscale(1);
  opacity: .68;
  transition: opacity .2s ease;
}
.logo-carousel-group img:hover{ opacity: 1; }

@media (prefers-reduced-motion: reduce){
  .logo-carousel-group{ transition: none; }
}

/* ============================================================
   Header sticky + tema claro (troca ao entrar na seção branca)
   ============================================================ */
.site-header{
  background: transparent;
  transition:
    box-shadow var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
/* blur via pseudo-elemento p/ não quebrar o backdrop-filter do megamenu */
.site-header::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(14,14,17,.72);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
          backdrop-filter: blur(16px) saturate(140%);
  transition: background var(--dur-base) var(--ease-out);
}
.site-header .brand-logo{ transition: filter var(--dur-base) var(--ease-out); }

.site-header.is-light{
  background: transparent;
  border-bottom-color: rgba(10,10,12,.07);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,.25);
}
.site-header.is-light::before{
  background: #fff;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.site-header.is-light .brand-logo{ filter: brightness(0); }
.site-header.is-light .nav-link{ color: rgba(10,10,12,.72); }
.site-header.is-light .nav-link:hover,
.site-header.is-light .mega-trigger:hover{ color: var(--ds-on); }
.site-header.is-light .has-mega:hover .mega-trigger,
.site-header.is-light .has-mega:focus-within .mega-trigger{ color: var(--ds-on); }
.site-header.is-light .btn-outline{
  color: var(--ds-on);
  border-color: rgba(10,10,12,.22);
}
.site-header.is-light .btn-outline:hover{
  border-color: var(--ds-on);
  background: rgba(10,10,12,.05);
}

/* Megamenu — variante clara (acompanha o header no scroll) */
.site-header.is-light .mega-panel{
  background: rgba(255,255,255,.9);
  border-color: rgba(10,10,12,.08);
  box-shadow:
    0 30px 60px -22px rgba(0,0,0,.22),
    0 0 0 1px rgba(10,10,12,.03);
}
.site-header.is-light .mega-item:hover{ background: rgba(10,10,12,.045); }
.site-header.is-light .mega-title{ color: var(--ds-on); }
.site-header.is-light .mega-desc{ color: rgba(10,10,12,.56); }
.site-header.is-light .mega-pill-soft{
  background: rgba(10,10,12,.06);
  color: rgba(10,10,12,.55);
  border-color: rgba(10,10,12,.10);
}
.site-header.is-light .mega-pill{   /* tag "Novo" legível sobre o megamenu branco */
  background: rgba(192,243,83,.22);
  color: var(--ds-accent-700);
  border-color: color-mix(in srgb, var(--ds-accent) 50%, transparent);
}
.site-header.is-light .mega-feature{
  background:
    radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--ds-accent) 30%, transparent), transparent 60%),
    linear-gradient(180deg, var(--ds-t14), rgba(192,243,83,.05));
  border-color: color-mix(in srgb, var(--ds-accent) 45%, transparent);
}
.site-header.is-light .mega-feature-title{ color: var(--ds-on); }
.site-header.is-light .mega-feature-desc{ color: rgba(10,10,12,.62); }
.site-header.is-light .mega-feature-tag,
.site-header.is-light .mega-feature-link{ color: var(--ds-accent-600); }
.site-header.is-light .mega-feature-link:hover{ color: #84B41A; }

/* Tiles dos ícones no modo claro: os tons pastel padrão somem no branco,
   então usamos tints mais firmes + ícones mais saturados (1 cor por item). */
.site-header.is-light .mega-grid .mega-item:nth-child(1) .mega-ico{ background: rgba(110,158,22,.14); color: #6F9E16; }
.site-header.is-light .mega-grid .mega-item:nth-child(2) .mega-ico{ background: rgba(37,99,235,.11);  color: #2563EB; }
.site-header.is-light .mega-grid .mega-item:nth-child(3) .mega-ico{ background: rgba(22,163,74,.11);  color: #16A34A; }
.site-header.is-light .mega-grid .mega-item:nth-child(4) .mega-ico{ background: rgba(217,119,6,.13);  color: #D97706; }
.site-header.is-light .mega-grid .mega-item:nth-child(5) .mega-ico{ background: rgba(124,58,237,.11); color: #7C3AED; }
.site-header.is-light .mega-grid .mega-item:nth-child(6) .mega-ico{ background: rgba(110,158,22,.14); color: #6F9E16; }

/* Transição suave de cor no conteúdo do megamenu */
.mega-title, .mega-desc, .mega-feature, .mega-feature-title,
.mega-feature-desc, .mega-feature-tag, .mega-feature-link, .mega-pill-soft, .mega-ico{
  transition:
    color var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out);
}

/* ============================================================
   Seção de integrações — sobreposição + marquee
   ============================================================ */
.integ-section{
  box-shadow: 0 -34px 70px -28px rgba(0,0,0,.45);
}

.mq{
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.mq-track{
  display: flex;
  width: max-content;
  align-items: center;
  animation: mqScroll 46s linear infinite;
}
.mq:hover .mq-track{ animation-play-state: paused; }
.mq-item{
  flex: 0 0 auto;
  padding: 0 clamp(26px, 3.4vw, 48px);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #9AA0AA;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.mq-item:hover{ color: var(--ds-on); }

/* Marquee com logos SVG (seção de integrações) */
.mq-logos .mq-item{ padding: 0 clamp(28px, 3.6vw, 52px); display: inline-flex; align-items: center; }
.mq-logos .mq-item img{
  height: clamp(22px, 2.4vw, 30px);
  width: auto;
  display: block;
  opacity: .5;
  filter: grayscale(1);
  transition: opacity var(--dur-base) var(--ease-out), filter var(--dur-base) var(--ease-out);
}
.mq-logos .mq-item:hover img{ opacity: .92; filter: grayscale(0); }

@keyframes mqScroll{ to{ transform: translateX(-50%); } }
@keyframes mqScrollReverse{ from{ transform: translateX(-50%); } to{ transform: translateX(0); } }
.mq-track-reverse{ animation: mqScrollReverse 46s linear infinite; }

@media (prefers-reduced-motion: reduce){
  .mq-track{ animation: none; }
  .mq-track-reverse{ animation: none; }
}

/* Em telas pequenas o sticky/overlap pode pesar — simplifica */
@media (max-width: 980px){
  .hero-sticky{ position: relative; top: auto; }
  .integ-section{ margin-top: 0 !important; }
}

/* ============================================================
   Funcionalidades — grid de cards
   ============================================================ */
.feat-section{
  position: relative;
  background: #fff;
  overflow: hidden;
}
.feat-card{
  position: relative;
  scroll-margin-top: 100px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid rgba(10,10,12,.07);
  background:
    radial-gradient(108% 72% at 50% -6%, rgba(192,243,83,.20), rgba(192,243,83,0) 56%),
    radial-gradient(120% 100% at 50% 116%, rgba(20,40,30,.06), transparent 58%),
    linear-gradient(168deg, #F8FAF9 0%, #E8EDEB 100%);
  overflow: hidden;
  transition:
    transform var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}
.feat-card:hover{
  transform: translateY(-4px);
  border-color: rgba(192,243,83,.6);
  box-shadow: 0 26px 50px -26px rgba(40,70,40,.22);
}

/* ---- Feature card dark variant ---- */
.feat-card--dark{
  background: linear-gradient(168deg, #1A1D1E 0%, #0F1112 100%);
  border-color: rgba(255,255,255,.08);
}
.feat-card--dark .feat-title{ color: #fff; }
.feat-card--dark .feat-desc{ color: rgba(255,255,255,.55); }
.feat-card--dark .feat-badge{ background: rgba(192,243,83,.12); color: #C0F353; border-color: rgba(192,243,83,.2); }
.feat-card--dark:hover{
  border-color: rgba(192,243,83,.5);
  box-shadow: 0 26px 50px -26px rgba(0,0,0,.5);
}
.feat-card--dark .feat-visual,
.feat-card--dark .feat-visual-cb{
  background: radial-gradient(ellipse 80% 70% at 50% 20%, rgba(192,243,83,.06), transparent);
}
.feat-card--dark .feat-visual::after{
  background: rgba(192,243,83,.08);
}

.feat-visual{
  position: relative;
  flex: 1 1 auto;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.feat-visual::after{
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--g, rgba(10,10,12,.05));
  filter: blur(54px);
  opacity: .5;
  z-index: 0;
}
.feat-ico-lg{
  position: relative;
  z-index: 1;
  width: 96px; height: 96px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: var(--b, rgba(10,10,12,.04));
  color: var(--c, #0A0A0C);
  border: 1px solid rgba(10,10,12,.05);
  box-shadow: 0 16px 34px -18px rgba(0,0,0,.28);
}
.feat-ico-lg svg{ width: 46px; height: 46px; }

.feat-badge{
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--ds-t14);
  color: var(--ds-accent-300);
  border: 1px solid var(--ds-t34);
}
.feat-badge{
  color: #5E8410;
}
.feat-badge-soft{
  background: rgba(10,10,12,.05);
  color: rgba(10,10,12,.5);
  border-color: rgba(10,10,12,.10);
}

.feat-body{ padding: 4px 26px 30px; }
.feat-title{
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ds-on);
  margin-bottom: 9px;
}
.feat-desc{
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(10,10,12,.55);
}

/* ---- Card de destaque (Cashback) ---- */
.feat-card-cb .feat-body{ padding: 6px 34px 36px; }
.feat-card-cb .feat-title{
  font-size: clamp(22px, 2.3vw, 28px);
  margin-bottom: 11px;
}
.feat-card-cb .feat-desc{
  font-size: 16px;
  max-width: 480px;
}
.feat-visual-cb{
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(192,243,83,.10), transparent 62%);
  padding: 40px 28px;
}

/* Cena de cashback (card de destaque) */
.cb-scene{
  position: relative;
  width: min(440px, 100%);
  margin: 0 auto;
}
.cbs-panel{
  background: #fff;
  border: 1px solid rgba(10,10,12,.06);
  border-radius: 20px;
  box-shadow: 0 34px 66px -30px rgba(0,0,0,.30);
  padding: 20px 22px 22px;
}
.cbs-panel-head{ display: flex; align-items: center; gap: 11px; }
.cbs-ico{
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--ds-t14);
  color: #6B9A1A;
  display: inline-flex; align-items: center; justify-content: center;
}
.cbs-ico svg{ width: 21px; height: 21px; }
.cbs-head-txt{ display: flex; flex-direction: column; line-height: 1.25; margin-right: auto; }
.cbs-head-title{ font-size: 14.5px; font-weight: 700; color: #0A0A0C; }
.cbs-head-sub{ font-size: 11.5px; color: rgba(10,10,12,.45); }
.cbs-live{
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  color: #15A35A; background: rgba(34,197,94,.10);
  padding: 4px 9px; border-radius: 99px;
}
.cbs-live i{ width: 6px; height: 6px; border-radius: 50%; background: #15A35A; }

.cbs-metric{ margin-top: 18px; display: flex; flex-direction: column; }
.cbs-metric-val{ font-size: 38px; font-weight: 600; letter-spacing: -.025em; color: #0A0A0C; line-height: 1; }
.cbs-metric-lbl{ font-size: 12.5px; color: rgba(10,10,12,.5); margin-top: 6px; }

.cbs-chart{ margin-top: 18px; display: flex; align-items: flex-end; gap: 8px; height: 66px; }
.cbs-chart i{ flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, #DCF98C, #9FD22F); }
.cbs-chart i:last-child{ background: linear-gradient(180deg, #C0F353, #84B41A); }

.cbs-stats{ margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cbs-stat{ background: #F4F6F3; border-radius: 12px; padding: 11px 13px; display: flex; flex-direction: column; gap: 2px; }
.cbs-stat b{ font-size: 19px; font-weight: 600; color: #0A0A0C; letter-spacing: -.01em; }
.cbs-stat span{ font-size: 11px; color: rgba(10,10,12,.5); }

.cbs-notif{
  position: absolute;
  top: -22px; right: -18px;
  display: flex; align-items: center; gap: 10px;
  background: #0A0A0C; color: #fff;
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: 0 22px 44px -16px rgba(0,0,0,.5);
}
.cbs-notif-ico{
  flex: 0 0 32px;
  width: 32px; height: 32px; border-radius: 9px;
  background: rgba(192,243,83,.18); color: #C0F353;
  display: inline-flex; align-items: center; justify-content: center;
}
.cbs-notif-ico svg{ width: 17px; height: 17px; }
.cbs-notif-txt{ display: flex; flex-direction: column; line-height: 1.2; }
.cbs-notif-val{ font-size: 15px; font-weight: 800; }
.cbs-notif-sub{ font-size: 11px; color: rgba(255,255,255,.6); }
.cbs-notif-wa{ color: #25D366; display: inline-flex; }
.cbs-notif-wa svg{ width: 18px; height: 18px; }

.cbs-chip{
  position: absolute;
  bottom: -18px; left: -16px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #0A0A0C;
  border: 1px solid rgba(10,10,12,.07);
  font-size: 12px; font-weight: 600;
  padding: 9px 14px; border-radius: 99px;
  box-shadow: 0 18px 36px -16px rgba(0,0,0,.28);
}
.cbs-chip svg{ width: 13px; height: 13px; color: #84B41A; }

/* ---- Mockups dos demais cards ---- */
.mk{
  position: relative;
  z-index: 1;
  width: 290px;
  max-width: 90%;
  background: #fff;
  border: 1px solid rgba(10,10,12,.06);
  border-radius: 15px;
  box-shadow: 0 20px 42px -26px rgba(0,0,0,.26);
  padding: 14px;
  text-align: left;
}
.mk-cap{
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(10,10,12,.42);
  margin-bottom: 12px;
}

/* RFM — segmentos */
.mk-seg-row{ display: flex; align-items: center; gap: 9px; margin-top: 10px; }
.mk-seg-row:first-of-type{ margin-top: 0; }
.mk-seg-row .lbl{ width: 60px; font-size: 11.5px; font-weight: 600; color: #0A0A0C; }
.mk-seg-row .bar{ flex: 1; height: 6px; border-radius: 99px; background: rgba(10,10,12,.06); overflow: hidden; }
.mk-seg-row .bar i{ display: block; height: 100%; border-radius: 99px; }
.mk-seg-row .num{ width: 26px; text-align: right; font-size: 11px; font-weight: 600; color: rgba(10,10,12,.5); }

/* WhatsApp — chat */
.mk-wa{ padding: 0; overflow: hidden; width: 270px; }
.mk-wa-head{ display: flex; align-items: center; gap: 8px; padding: 9px 12px; background: #075E54; color: #fff; }
.mk-wa-av{ flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: #25D366; display: inline-flex; align-items: center; justify-content: center; }
.mk-wa-av svg{ width: 14px; height: 14px; }
.mk-wa-id{ font-size: 12px; font-weight: 700; display: flex; flex-direction: column; line-height: 1.2; }
.mk-wa-id small{ font-size: 9.5px; font-weight: 500; opacity: .82; }
.mk-wa-body{ background: #E6DDD4; padding: 11px; display: flex; flex-direction: column; gap: 7px; }
.mk-wa-msg{ max-width: 86%; align-self: flex-start; background: #fff; border-radius: 9px; padding: 7px 9px; font-size: 11.5px; line-height: 1.35; color: #0A0A0C; box-shadow: 0 1px 1px rgba(0,0,0,.07); }
.mk-wa-out{ align-self: flex-end; background: #DCF8C6; }
.mk-wa-tick{ color: #34B7F1; font-size: 10px; margin-left: 6px; font-weight: 700; }

/* Automações — fluxo */
.mk-flow{ display: flex; flex-direction: column; width: 240px; }
.mk-node{ display: flex; align-items: center; gap: 9px; padding: 9px 11px; border: 1px solid rgba(10,10,12,.09); border-radius: 10px; font-size: 12px; font-weight: 600; color: #0A0A0C; background: #fff; }
.mk-node-ico{ flex: 0 0 22px; width: 22px; height: 22px; border-radius: 7px; background: color-mix(in srgb, var(--nc) 15%, #fff); color: var(--nc); display: inline-flex; align-items: center; justify-content: center; }
.mk-node-ico svg{ width: 13px; height: 13px; }
.mk-link{ width: 2px; height: 13px; background: rgba(10,10,12,.16); margin: 4px 0 4px 21px; }
.mk-node-accent{ border-color: var(--ds-accent-600); box-shadow: 0 0 0 3px rgba(192,243,83,.16); }

/* Perfil 360 */
.mk-profile{ width: 270px; }
.mk-prof-head{ display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid rgba(10,10,12,.07); }
.mk-prof-av{ flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#C9A6FF,#7C3AED); color: #fff; font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.mk-prof-name{ font-size: 13px; font-weight: 700; color: #0A0A0C; }
.mk-prof-tag{ font-size: 10.5px; color: rgba(10,10,12,.45); margin-top: 1px; }
.mk-prof-stats{ display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding-top: 12px; }
.mk-prof-stats > div{ display: flex; flex-direction: column; gap: 2px; }
.mk-prof-stats span{ font-size: 10px; color: rgba(10,10,12,.45); }
.mk-prof-stats b{ font-size: 13px; color: #0A0A0C; font-weight: 700; }

/* Matriz RFM */
.mk-matrix{ width: 205px; }
.mk-mx{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
.mk-mx i{ height: 28px; border-radius: 5px; }
.mk-mx .l1{ background: #EF4444; }
.mk-mx .l2{ background: #F97316; }
.mk-mx .l3{ background: #FBBF24; }
.mk-mx .l4{ background: #A3D635; }
.mk-mx .l5{ background: #22C55E; }
.mk-mx-legend{ display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 10.5px; color: rgba(10,10,12,.5); }
.mk-mx-legend .dot{ width: 9px; height: 9px; border-radius: 3px; }
.mk-mx-legend .dot.l5{ margin-left: auto; }
.mk-mx-legend .dot.l1{ background: #EF4444; }
.mk-mx-legend .dot.l5{ background: #22C55E; }

/* Campanhas Multicanal */
.mk-camp{ width: 262px; }
.mk-camp-head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.mk-camp-badge{ font-size: 10px; font-weight: 700; color: #6B9A1A; background: var(--ds-t14); border: 1px solid var(--ds-t34); padding: 2px 8px; border-radius: 99px; }
.mk-camp-list{ display: flex; flex-direction: column; gap: 9px; }
.mk-camp-row{ display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; color: #0A0A0C; }
.mk-camp-ico{ flex: 0 0 26px; width: 26px; height: 26px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.mk-camp-ico svg{ width: 15px; height: 15px; }
.mk-camp-ico.wa{ background: #25D366; }
.mk-camp-ico.em{ background: #2563EB; }
.mk-camp-ico.sms{ background: #7C3AED; }
.mk-camp-on{ position:relative; margin-left: auto; font-size: 10px; font-weight: 700; color: #15A35A; background: rgba(34,197,94,.10); padding: 3px 9px 3px 18px; border-radius: 99px; }
.mk-camp-on::before{
  content:""; position:absolute; left:6px; top:50%; width:5px; height:5px;
  border-radius:50%; background:#15A35A; transform:translateY(-50%);
  animation:cbsPulse 2.4s ease-out infinite;
}
.mk-camp-foot{ margin-top: 13px; padding-top: 12px; border-top: 1px solid rgba(10,10,12,.07); font-size: 11.5px; color: rgba(10,10,12,.5); }
.mk-camp-foot b{ color: #0A0A0C; font-weight: 700; }

/* Agenda (legado) */
.mk-agenda{ width: 250px; }
.mk-ag-head{ font-size: 11px; font-weight: 700; color: rgba(10,10,12,.5); margin-bottom: 8px; }
.mk-ag-task{ display: flex; align-items: center; gap: 9px; padding: 8px 0; font-size: 11.5px; color: #0A0A0C; border-top: 1px solid rgba(10,10,12,.06); }
.mk-ag-task:first-of-type{ border-top: none; }
.mk-ag-task b{ margin-left: auto; color: #E11D48; font-weight: 700; }
.mk-ag-time{ font-weight: 700; color: #E11D48; font-size: 11px; }
.mk-ag-chk{ flex: 0 0 14px; width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid rgba(10,10,12,.25); display: inline-block; }
.mk-ag-chk.on{ background: #1FAE54; border-color: #1FAE54; }
.mk-ag-done{ color: rgba(10,10,12,.4); text-decoration: line-through; }

/* ============================================================
   Animações minimalistas — Funcionalidades
   ============================================================ */
@keyframes featRise{
  from{ opacity: 0; transform: translateY(22px); }
  to{   opacity: 1; transform: translateY(0); }
}
.has-reveal .feat-card{ opacity: 0; }
.has-reveal .feat-card.reveal-in{ animation: featRise .6s var(--ease-out) both; }
.has-reveal .feat-card.reveal-done{ opacity: 1; animation: none; }

/* Gráfico de barras (cashback) cresce ao revelar */
.has-reveal .cbs-chart i{ transform: scaleY(0); transform-origin: bottom; transition: transform .7s var(--ease-out); }
.has-reveal .feat-card.reveal-in .cbs-chart i{ transform: scaleY(1); }
.cbs-chart i:nth-child(1){ transition-delay: .20s; }
.cbs-chart i:nth-child(2){ transition-delay: .26s; }
.cbs-chart i:nth-child(3){ transition-delay: .32s; }
.cbs-chart i:nth-child(4){ transition-delay: .38s; }
.cbs-chart i:nth-child(5){ transition-delay: .44s; }
.cbs-chart i:nth-child(6){ transition-delay: .50s; }
.cbs-chart i:nth-child(7){ transition-delay: .56s; }

/* Barras de segmento (RFM) preenchem ao revelar */
.has-reveal .mk-seg-row .bar i{ transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease-out); }
.has-reveal .feat-card.reveal-in .mk-seg-row .bar i{ transform: scaleX(1); }
.mk-seg-row:nth-of-type(1) .bar i{ transition-delay: .20s; }
.mk-seg-row:nth-of-type(2) .bar i{ transition-delay: .28s; }
.mk-seg-row:nth-of-type(3) .bar i{ transition-delay: .36s; }
.mk-seg-row:nth-of-type(4) .bar i{ transition-delay: .44s; }

/* Matriz RFM aparece ao revelar */
.has-reveal .mk-mx{ opacity: 0; transform: scale(.72); transition: transform .55s var(--ease-out), opacity .45s var(--ease-out); transition-delay: .15s; }
.has-reveal .feat-card.reveal-in .mk-mx{ opacity: 1; transform: scale(1); }

/* Micro-animações contínuas (sutis) */
@keyframes cbsPulse{
  0%{   box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  70%{  box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.cbs-live i{ animation: cbsPulse 2.4s ease-out infinite; }

@keyframes featFloat{
  0%, 100%{ translate: 0 0; }
  50%{ translate: 0 -5px; }
}
.cbs-notif{ animation: featFloat 4.2s ease-in-out infinite; }
.cbs-chip{ animation: featFloat 5s ease-in-out infinite .4s; }

/* ---- Hero micro-animation keyframes (feature pages) ---- */

/* Cell pop — RFM matrix cascade */
@keyframes fpCellPop{ from{ opacity:0; transform:scale(0) } to{ opacity:1; transform:scale(1) } }

/* Typing indicator dots (WhatsApp) */
@keyframes fpTypingDot{ 0%,60%,100%{ opacity:.3; transform:translateY(0) } 30%{ opacity:1; transform:translateY(-3px) } }

/* Dash flow for automation connection lines */
@keyframes fpDashFlow{ to{ stroke-dashoffset:0 } }

/* Horizontal grow for progress bars */
@keyframes fpGrowX{ from{ transform:scaleX(0) } to{ transform:scaleX(1) } }

/* Slide in from right */
@keyframes fpSlideIn{ from{ opacity:0; transform:translateX(20px) } to{ opacity:1; transform:translateX(0) } }

/* Bounce scale for icons */
@keyframes fpBounceIn{ 0%{ transform:scale(0) } 60%{ transform:scale(1.15) } 100%{ transform:scale(1) } }

/* Shimmer sweep */
@keyframes fpShimmer{ from{ background-position:-200% 0 } to{ background-position:200% 0 } }

/* Checkmark appear */
@keyframes fpCheckIn{ from{ opacity:0; transform:scale(0) } to{ opacity:1; transform:scale(1) } }

/* Tag slide-in */
@keyframes fpTagIn{ from{ opacity:0; transform:translateX(-8px) } to{ opacity:1; transform:translateX(0) } }

/* Clock spin (slow) */
@keyframes fpClockSpin{ to{ transform:rotate(360deg) } }

/* Rotating gradient border for plan-incluso cards */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes incluso-spin { to { --angle: 360deg; } }

/* Pulse ring for icons */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(192,243,83,.25); }
  70% { box-shadow: 0 0 0 10px rgba(192,243,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,243,83,0); }
}

/* ---- Floating badge (feature pages) ---- */
.fp-float-badge{
  position:absolute; z-index:3;
  padding:6px 12px;
  background:rgba(255,255,255,.95);
  border-radius:10px;
  font-size:12px; font-weight:600;
  color:#1a1a1a;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
  animation:featFloat 3.6s ease-in-out var(--delay,0s) infinite;
  white-space:nowrap;
  pointer-events:none;
}
.fp-float-dot{
  display:inline-block; width:6px; height:6px;
  background:#22C55E; border-radius:50%;
  margin-right:6px; vertical-align:middle;
  animation:cbsPulse 2.4s ease-out infinite;
}

/* Shimmer overlay */
.fp-shimmer{
  background:linear-gradient(90deg,transparent 30%,rgba(255,255,255,.35) 50%,transparent 70%);
  background-size:200% 100%;
  animation:fpShimmer 2.8s ease-in-out infinite;
  pointer-events:none;
}

/* Typing indicator */
.fp-typing{ display:inline-flex; align-items:center; gap:3px; padding:7px 12px; background:#E5E7EB; border-radius:9px; }
.fp-typing i{ display:block; width:5px; height:5px; background:#888; border-radius:50%; animation:fpTypingDot 1.4s ease-in-out infinite; }
.fp-typing i:nth-child(2){ animation-delay:.15s; }
.fp-typing i:nth-child(3){ animation-delay:.3s; }

/* ---- fp-in triggered animations (feature page heroes) ---- */

/* Cashback: chart bars bounce */
.fp-in .cbs-chart i{ transform-origin:bottom; animation:fpBounceIn .5s var(--ease-out,ease) backwards; }
.fp-in .cbs-chart i:nth-child(1){ animation-delay:.3s; }
.fp-in .cbs-chart i:nth-child(2){ animation-delay:.38s; }
.fp-in .cbs-chart i:nth-child(3){ animation-delay:.46s; }
.fp-in .cbs-chart i:nth-child(4){ animation-delay:.54s; }
.fp-in .cbs-chart i:nth-child(5){ animation-delay:.62s; }
.fp-in .cbs-chart i:nth-child(6){ animation-delay:.70s; }
.fp-in .cbs-chart i:nth-child(7){ animation-delay:.78s; }

/* Cashback: shimmer on panel */
.fp-in .cbs-panel{ position:relative; overflow:hidden; }
.fp-in .cbs-panel::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg,transparent 30%,rgba(255,255,255,.25) 50%,transparent 70%);
  background-size:200% 100%;
  animation:fpShimmer 2.8s ease-in-out 1s 1;
  pointer-events:none; z-index:5;
}

/* RFM: matrix cell-by-cell cascade */
.fp-in .mk-mx i{
  animation:fpCellPop .35s var(--ease-out,ease) backwards;
}
/* Diagonal cascade: row*col based delays — bottom-left to top-right */
/* Row 5 (bottom): cells 21-25 */
.fp-in .mk-mx i:nth-child(21){ animation-delay:.1s; }
.fp-in .mk-mx i:nth-child(22){ animation-delay:.16s; }
.fp-in .mk-mx i:nth-child(16){ animation-delay:.16s; }
.fp-in .mk-mx i:nth-child(23){ animation-delay:.22s; }
.fp-in .mk-mx i:nth-child(17){ animation-delay:.22s; }
.fp-in .mk-mx i:nth-child(11){ animation-delay:.22s; }
.fp-in .mk-mx i:nth-child(24){ animation-delay:.28s; }
.fp-in .mk-mx i:nth-child(18){ animation-delay:.28s; }
.fp-in .mk-mx i:nth-child(12){ animation-delay:.28s; }
.fp-in .mk-mx i:nth-child(6){ animation-delay:.28s; }
.fp-in .mk-mx i:nth-child(25){ animation-delay:.34s; }
.fp-in .mk-mx i:nth-child(19){ animation-delay:.34s; }
.fp-in .mk-mx i:nth-child(13){ animation-delay:.34s; }
.fp-in .mk-mx i:nth-child(7){ animation-delay:.34s; }
.fp-in .mk-mx i:nth-child(1){ animation-delay:.34s; }
.fp-in .mk-mx i:nth-child(20){ animation-delay:.40s; }
.fp-in .mk-mx i:nth-child(14){ animation-delay:.40s; }
.fp-in .mk-mx i:nth-child(8){ animation-delay:.40s; }
.fp-in .mk-mx i:nth-child(2){ animation-delay:.40s; }
.fp-in .mk-mx i:nth-child(15){ animation-delay:.46s; }
.fp-in .mk-mx i:nth-child(9){ animation-delay:.46s; }
.fp-in .mk-mx i:nth-child(3){ animation-delay:.46s; }
.fp-in .mk-mx i:nth-child(10){ animation-delay:.52s; }
.fp-in .mk-mx i:nth-child(4){ animation-delay:.52s; }
.fp-in .mk-mx i:nth-child(5){ animation-delay:.58s; }

/* RFM: segment bar grow */
.fp-rfm-bar{ transform-origin:left; }
.fp-in .fp-rfm-bar{ animation:fpGrowX .8s var(--ease-out,ease) .6s backwards; }

/* WhatsApp: messages appear sequentially */
.fp-in .mk-wa-msg{ animation:fpBounceIn .4s var(--ease-out,ease) backwards; }
.fp-in .mk-wa-msg:nth-child(1){ animation-delay:.3s; }
.fp-in .fp-typing{ animation:fpBounceIn .3s ease .6s backwards; }
.fp-in .mk-wa-msg:nth-child(2){ animation-delay:.9s; }
.fp-in .mk-wa-msg.mk-wa-out{ animation-delay:1.4s; }

/* WhatsApp: tick animation */
.fp-in .mk-wa-tick{ animation:fpCheckIn .3s ease 1.7s backwards; }

/* Automations: nodes cascade */
.fp-in .mk-node{ animation:fpSlideIn .4s var(--ease-out,ease) backwards; }
.fp-in .mk-node:nth-child(1){ animation-delay:.2s; }
.fp-in .mk-link:nth-child(2){ animation:fpGrowX .3s ease .5s backwards; transform-origin:top; }
.fp-in .mk-node:nth-child(3){ animation-delay:.7s; }
.fp-in .mk-link:nth-child(4){ animation:fpGrowX .3s ease 1s backwards; transform-origin:top; }
.fp-in .mk-node:nth-child(5){ animation-delay:1.2s; }

/* Automations: accent node pulse */
.fp-in .mk-node-accent{ animation:fpSlideIn .4s var(--ease-out,ease) 1.2s backwards, cbsPulse 2.4s ease-out 1.6s infinite; }

/* Automations: clock icon spin */
.fp-clock-spin svg{ animation:fpClockSpin 8s linear infinite; }

/* Perfil 360: avatar ring */
.fp-in .mk-prof-av{ animation:fpBounceIn .5s var(--ease-out,ease) .2s backwards; }
.mk-prof-av{ position:relative; }
.mk-prof-ring{
  position:absolute; inset:-3px; border-radius:50%;
  background:conic-gradient(#C9A6FF,#7C3AED,#C9A6FF);
  -webkit-mask:radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  mask:radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  animation:fcSpinSlow 6s linear infinite;
}

/* Perfil 360: tags appear */
.fp-in .fp-prof-tag{ animation:fpTagIn .3s var(--ease-out,ease) backwards; }
.fp-in .fp-prof-tag:nth-child(1){ animation-delay:.5s; }
.fp-in .fp-prof-tag:nth-child(2){ animation-delay:.65s; }
.fp-in .fp-prof-tag:nth-child(3){ animation-delay:.8s; }

/* Perfil 360: timeline dots */
.fp-tl-dot{ width:8px; height:8px; border-radius:50%; background:#C9A6FF; }
.fp-in .fp-tl-dot{ animation:fpBounceIn .3s ease backwards; }
.fp-in .fp-tl-dot:nth-child(1){ animation-delay:.6s; }
.fp-in .fp-tl-dot:nth-child(2){ animation-delay:.75s; }
.fp-in .fp-tl-dot:nth-child(3){ animation-delay:.9s; }

/* Campanhas: rows slide in */
.fp-in .mk-camp-row{ animation:fpSlideIn .4s var(--ease-out,ease) backwards; }
.fp-in .mk-camp-row:nth-child(1){ animation-delay:.3s; }
.fp-in .mk-camp-row:nth-child(2){ animation-delay:.5s; }
.fp-in .mk-camp-row:nth-child(3){ animation-delay:.7s; }

/* Campanhas: channel icons bounce */
.fp-in .mk-camp-ico{ animation:fpBounceIn .4s var(--ease-out,ease) backwards; }
.fp-in .mk-camp-row:nth-child(1) .mk-camp-ico{ animation-delay:.3s; }
.fp-in .mk-camp-row:nth-child(2) .mk-camp-ico{ animation-delay:.5s; }
.fp-in .mk-camp-row:nth-child(3) .mk-camp-ico{ animation-delay:.7s; }

/* Campanhas: active badge pulse */
.fp-in .mk-camp-on{ position:relative; }
.fp-in .mk-camp-on::before{
  content:""; position:absolute; left:6px; top:50%; width:5px; height:5px;
  border-radius:50%; background:#15A35A; transform:translateY(-50%);
  animation:cbsPulse 2.4s ease-out 1s infinite;
}

@media (prefers-reduced-motion: reduce){
  .has-reveal .feat-card{ opacity: 1; animation: none; }
  .has-reveal .cbs-chart i,
  .has-reveal .mk-seg-row .bar i{ transform: none; }
  .has-reveal .mk-mx{ opacity: 1; transform: none; }
  .cbs-live i, .cbs-notif, .cbs-chip{ animation: none; }
  .fp-float-badge, .fp-typing i, .fp-shimmer,
  .fp-in .mk-mx i, .fp-in .mk-wa-msg, .fp-in .mk-node,
  .fp-in .mk-camp-row, .fp-in .mk-camp-ico, .fp-in .mk-prof-av,
  .fp-in .fp-prof-tag, .fp-in .fp-tl-dot,
  .fp-in .cbs-chart i, .fp-in .cbs-panel::before,
  .fp-in .fp-rfm-bar, .fp-in .fp-typing,
  .fp-in .mk-wa-tick, .fp-in .mk-node-accent,
  .fp-clock-spin svg, .mk-prof-ring{ animation: none; }
  .partner-dash-chart i{ transform:scaleY(1); }
  .partner-dash-dot, .plan-incluso-icon, .plan-incluso-sparkle{ animation:none; }
  .plan-incluso-card::before{ animation:none; }
  .mk-camp-on::before{ animation:none; }
}

/* ---- Scrollbar discreto ---- */
::-webkit-scrollbar{ width: 10px; height: 10px; }
::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.14);
  border-radius: 99px;
}

/* ============================================================
   Seção "Marcas em números" — fundo escuro,
   título fixo à esquerda + cards de bignumber empilhados (sticky stack)
   ============================================================ */
.bn-section{
  position: relative;
  z-index: 10;
  background: #0E0E11;
  overflow: clip;
}

/* Orbital background decoration for números section */
.bn-orbital-bg{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  pointer-events: none;
  z-index: 0;
}
.bn-orbital-center{
  position: absolute;
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,243,83,.12) 0%, rgba(192,243,83,.04) 40%, transparent 70%);
}
.bn-orbital-ring{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid;
  border-radius: 50%;
}
@media (max-width: 760px){
  .bn-orbital-bg{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .bn-orbital-bg{ display: none; }
}

/* ---- Marquee de logos de clientes (tema escuro) ---- */
.bn-logos{
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bn-logos .mq-track{ animation-duration: 54s; }
.bn-logo{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(26px, 3.2vw, 54px);
}
.bn-logo img{
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .48;
  transition: opacity var(--dur-base) var(--ease-out);
}
.bn-logo:hover img{ opacity: .95; }

/* ---- Grid: título sticky (esq) + coluna de cards (dir) ---- */
.bn-grid{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.bn-left{
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: calc(40vh - 168px);
}
.bn-eyebrow{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ds-accent);
  margin-bottom: 22px;
}
.bn-title{
  font-size: clamp(48px, 4.4vw, 62px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 12ch;
  margin: 0;
}

.bn-right{
  padding: 24vh 0 0;
  display: flex;
  flex-direction: column;
}
.bn-card{
  position: sticky;
  top: 50%;
  transform: translateY(-50%) rotate(var(--rot, 0deg));
  margin-bottom: 38vh;
  min-height: 300px;
  border-radius: 32px;
  padding: 46px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(152deg, var(--c1, #C0F353), var(--c2, #9FD22F));
  color: #0A0A0C;
  box-shadow: 0 44px 90px -34px rgba(0,0,0,.72);
  will-change: transform;
}
.bn-card:last-child{ margin-bottom: 33vh; }
.bn-num{
  font-size: clamp(60px, 7.6vw, 110px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .9;
}
.bn-lbl{
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.35;
  max-width: 22ch;
  color: rgba(10,10,12,.72);
}

@media (max-width: 980px){
  .bn-left{ position: static; height: auto; padding: 6px 0 34px; }
  .bn-right{ padding: 0; gap: 18px; }
  .bn-card{
    position: static;
    transform: rotate(var(--rot, 0deg));
    margin-bottom: 0;
    min-height: 220px;
  }
  .bn-card:last-child{ margin-bottom: 0; }
  .tst-section{ margin-top: 0; }
}
@media (prefers-reduced-motion: reduce){
  .bn-left{ position: static; height: auto; }
  .bn-card{
    position: static;
    transform: rotate(var(--rot, 0deg));
    margin-bottom: 22px;
  }
  .bn-card:last-child{ margin-bottom: 22px; }
  .tst-section{ margin-top: 0; }
}

/* ============================================================
   Depoimentos — marquee arrastável (cards de vídeo + texto)
   ============================================================ */
.tst-section{
  position: relative;
  z-index: 10;
  margin-top: -22vh; /* puxa pra cima e cobre o "runway" vazio do último card */
  background: #0E0E11;
  padding: clamp(20px, 2.5vw, 40px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.tst-eyebrow{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin: 0 0 18px;
}
.tst-title{
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0;
}

/* Viewport do marquee */
.tst-viewport{
  margin-top: clamp(40px, 5vw, 70px);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.tst-viewport.is-drag{ cursor: grabbing; }
.tst-track{
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 10px;
  will-change: transform;
}

/* Card base */
.tcard{
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 23vw, 342px);
  height: clamp(420px, 30vw, 480px);
  border-radius: 22px;
  overflow: hidden;
  background: #16161A;
  border: 1px solid rgba(255,255,255,.07);
  user-select: none;
}

/* Variante de vídeo/imagem */
.tcard-media{ background: var(--ph, linear-gradient(150deg,#23262d,#121318)); }
.tcard-media img,
.tcard-media video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
}
.tcard-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 38%, rgba(0,0,0,.78));
  z-index: 1;
}
.tcard-play{
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(0,0,0,.28);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.tcard-play:hover{ background: rgba(0,0,0,.5); transform: scale(1.06); }

/* Variante com foto de fundo (desfocada) */
.tcard-photo{ background: #16161A; }
.tcard-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);          /* evita bordas vazias do blur */
  filter: blur(2px) brightness(.82) saturate(1.04);
  z-index: 0;
  -webkit-user-drag: none;
}
.tcard-photo::after{               /* overlay escuro p/ legibilidade do texto */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,12,.52) 0%, rgba(10,10,12,.38) 42%, rgba(10,10,12,.80) 100%);
}
.tcard-photo-body{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px 24px 20px;
}
.tcard-photo .tcard-quote{ text-shadow: 0 1px 12px rgba(0,0,0,.45); flex: 0 0 auto; }
.tcard-photo .tcard-foot{
  margin-top: auto;
  padding-top: 0;
  padding-bottom: 0;
}

/* Variante de texto */
.tcard-text{
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.tcard-avatar{
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--ph, rgba(255,255,255,.08));
  margin-bottom: 22px;
  flex: 0 0 auto;
}
.tcard-quote{
  font-size: clamp(15.5px, 1.3vw, 24px);
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

/* Rodapé (nome + @) — sobreposto no media, no fluxo no texto */
.tcard-media .tcard-foot{
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
}
.tcard-text .tcard-foot{ margin-top: auto; padding-top: 20px; }
.tcard-foot{ display: flex; align-items: center; gap: 12px; }
.tcard-logo{ display: none; }
.tcard-name{
  font-size: 20px;
  font-weight: 800;
  color: #C0F353;
  letter-spacing: -.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  text-transform: uppercase;
}
.tcard-role{ font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.tcard-handle{
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.tcard-handle svg{ color: #FF3D3D; flex: 0 0 auto; }
.tcard-media .tcard-handle{ color: rgba(255,255,255,.8); }

/* Selos de avaliação */
.tst-ratings{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 52px);
  margin-top: clamp(40px, 5vw, 66px);
}
.tst-rate{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,.66);
}
.tst-rate b{ color: #fff; font-weight: 700; }
.tst-rate .ico{ display: inline-flex; align-items: center; justify-content: center; }
.tst-logo{
  height: clamp(20px, 2.4vw, 26px);
  width: auto;
  display: block;
  /* contrast() empurra o anti-aliasing acinzentado (ex.: sacola/wordmark da Shopify)
     pro branco, deixando todos os selos uniformes */
  filter: brightness(0) invert(1) contrast(1.5);
  opacity: 1;
}
/* WooCommerce: balão preto com "Woo" vazado em branco — só inverter
   preserva o vazado (brightness(0) achataria tudo num borrão branco). */
.tst-logo-woo{ filter: invert(1); }

@media (max-width: 980px){
  .tcard{ width: clamp(250px, 70vw, 300px); height: 400px; }
}
@media (prefers-reduced-motion: reduce){
  .tst-track{ transform: none !important; }
}

/* ============================================================
   Planos — cards de pricing (ref: layout Shopify)
   ============================================================ */
.plan-section{
  position: relative;
  z-index: 10;
  margin-top: -48px; /* sobe levemente sobre a seção escura, igual integrações */
  background: #fff;
  color: var(--ds-on);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -34px 70px -28px rgba(0,0,0,.45);
  padding: clamp(64px, 8vw, 110px) 0 clamp(72px, 9vw, 120px);
}
@media (min-width: 768px){ .plan-section{ border-radius: 56px 56px 0 0; } }
.plan-intro{ text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.plan-eyebrow{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ds-accent-700);
  margin: 0 0 16px;
}
.plan-h2{
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--ds-on);
  margin: 0 0 16px;
}
.plan-sub{
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: rgba(10,10,12,.58);
  max-width: 52ch;
  margin: 0 auto;
}

.plan-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan-card{
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(168deg, #F8FAF9 0%, #EEF2F0 100%);
  border: 1px solid rgba(10,10,12,.10);
  border-radius: 22px;
  padding: 1.5rem;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.plan-card:hover{
  border-color: rgba(10,10,12,.18);
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -26px rgba(40,70,40,.2);
}
/* Plus — borda premium */
.plan-card-plus{
  border-color: color-mix(in srgb, var(--ds-accent) 75%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ds-accent) 28%, transparent),
              0 28px 60px -34px rgba(132,180,26,.5);
}
.plan-card-plus:hover{ border-color: var(--ds-accent-600); }

/* Cabeçalho */
.plan-kicker{
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10,10,12,.45);
  margin-bottom: 2px;
}
.plan-namerow{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 12px;
}
.plan-name{ font-size: clamp(22px, 2.1vw, 28px); font-weight: 600; letter-spacing: -.02em; color: var(--ds-on); margin: 0; line-height: 1; }
.plan-price{ text-align: right; white-space: nowrap; }
.plan-price b{ font-size: clamp(21px, 2.1vw, 27px); font-weight: 600; color: var(--ds-on); letter-spacing: -.02em; }
.plan-price .per{ font-size: 13px; font-weight: 500; color: rgba(10,10,12,.45); margin-left: 2px; }
/* Preço em texto (ex.: "Sob consulta") — menor, não compete com o nome */
.plan-price-text b{ font-size: clamp(16px, 1.5vw, 18px); }
.plan-tagline{ font-size: 14px; font-weight: 600; color: var(--ds-accent-700); margin: 8px 0 0; }
.plan-divider{ border: none; border-top: 1px solid rgba(10,10,12,.10); margin: 20px 0 0; }

.plan-btn{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 18px;
  border-radius: 999px;
  border: none;
  background: var(--ds-accent);
  color: #0A0A0C;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.plan-btn:hover{ background: var(--ds-accent-600); transform: translateY(-1px); box-shadow: 0 14px 30px -12px rgba(132,180,26,.5); }

/* Destaque: vendas/mês (principal critério de escolha) */
.plan-sales{
  margin-top: 20px;
  background: rgba(192,243,83,.10);
  border: 1px solid color-mix(in srgb, var(--ds-accent) 30%, transparent);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.plan-sales .lbl{ font-size: 15px; color: rgba(10,10,12,.55); }
.plan-sales b{ font-size: 17px; font-weight: 600; color: var(--ds-on); letter-spacing: -.01em; }
.plan-sales .per{ font-size: 14px; color: rgba(10,10,12,.5); }

/* Créditos */
.plan-credits{
  margin-top: 12px;
  background: rgba(10,10,12,.025);
  border: 1px solid rgba(10,10,12,.08);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: rgba(10,10,12,.6);
}
.plan-credits b{ color: var(--ds-on); font-weight: 600; font-size: 17px; }

/* Enterprise — vendas/créditos "personalizado" em linha única */
.plan-card-ent .plan-sales{ flex-wrap: nowrap; white-space: nowrap; }
.plan-card-ent .plan-sales .lbl{ font-size: 14px; }
.plan-card-ent .plan-sales b{ font-size: 15px; }
.plan-card-ent .plan-credits{
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.plan-card-ent .plan-credits .lbl{ font-size: 14px; color: rgba(10,10,12,.55); }
.plan-card-ent .plan-credits b{ font-size: 15px; }
/* Enterprise — CTA preto com texto verde */
.plan-card-ent .plan-btn{ background: #0A0A0C; color: var(--ds-accent); }
.plan-card-ent .plan-btn:hover{ background: #1A1A1E; box-shadow: 0 14px 30px -12px rgba(10,10,12,.5); }

/* Use como quiser */
.plan-usage{ margin-top: 18px; margin-bottom: 18px; }
.plan-usage .cap{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(10,10,12,.42);
  margin: 0 0 12px;
}
.plan-usage ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan-usage li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(10,10,12,.5);
}
.plan-usage li b{ color: var(--ds-on); font-weight: 700; }
.plan-usage li .ou{ color: rgba(10,10,12,.4); }
.plan-usage svg{ width: 17px; height: 17px; flex: 0 0 17px; color: var(--ds-accent-700); }

/* Garantia de 30 dias — abaixo do botão */
.plan-guarantee{
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.3;
  text-align: center;
  color: rgba(10,10,12,.55);
}
.plan-guarantee svg{ width: 18px; height: 18px; flex: 0 0 18px; color: var(--ds-accent-700); }
.plan-guarantee b{ color: var(--ds-on); font-weight: 700; font-size: 15.5px; }

/* Benefícios "ilimitados" — marquee em loop abaixo do botão */
.plan-extra{
  margin-top: 18px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.plan-extra-track{
  display: flex;
  width: max-content;
  align-items: center;
  animation: mqScroll 16s linear infinite;
}
.plan-extra:hover .plan-extra-track{ animation-play-state: paused; }
.plan-extra-item{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 26px;
  font-size: 14px;
  color: rgba(10,10,12,.72);
  white-space: nowrap;
}
.plan-extra-item::before{
  content: "";
  flex: 0 0 17px;
  width: 17px; height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%239CA0A8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m8 12 2.5 2.5L16 9'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (prefers-reduced-motion: reduce){
  .plan-extra-track{ animation: none; }
}

/* Faixa "Incluído em todos os planos" — grid de mini-cards */
.plan-incluso{ text-align: center; margin-top: clamp(40px, 5vw, 60px); }
.plan-incluso .ttl{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(10,10,12,.42);
  margin: 0 0 28px;
}
.plan-incluso-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}
.plan-incluso-card{
  position:relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, rgba(192,243,83,.05) 0%, rgba(255,255,255,.9) 100%);
  border: 1px solid rgba(10,10,12,.06);
  border-radius: 14px;
  padding: 22px 16px 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan-incluso-card::before{
  content:""; position:absolute; inset:-1px; border-radius:inherit; z-index:-1;
  background:conic-gradient(from var(--angle,0deg), rgba(192,243,83,.15), rgba(132,180,26,.25), rgba(192,243,83,.15), transparent 60%);
  animation:incluso-spin 6s linear infinite;
  opacity:0; transition:opacity .3s ease;
}
.plan-incluso-card:hover::before{ opacity:1; }
.plan-incluso-card:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px -10px rgba(132,180,26,.18);
  border-color: rgba(132,180,26,.3);
}
.plan-incluso-check{
  display:inline-block;
  font-size:11px; font-weight:700;
  color:#84B41A;
  margin-bottom:2px;
}
.plan-incluso-sparkle{
  display:inline-block; vertical-align:middle;
  color:rgba(132,180,26,.5);
  margin-right:4px;
  animation:pulse-ring 3s ease-in-out infinite;
}
.plan-incluso-icon{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,243,83,.18), rgba(132,180,26,.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  animation: pulse-ring 3s ease-in-out infinite;
}
.plan-incluso-icon svg{
  width: 24px; height: 24px;
  stroke: #84B41A;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plan-incluso-card strong{
  display: block;
  font-size: 14.5px;
  font-weight: 650;
  color: rgba(10,10,12,.88);
  margin-bottom: 4px;
}
.plan-incluso-card span{
  font-size: 13px;
  color: rgba(10,10,12,.48);
  line-height: 1.35;
}

@media (max-width: 1180px) and (min-width: 981px){
  .plan-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; margin: 0 auto; }
}

@media (max-width: 980px){
  .plan-grid{ grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* "Incluído em todos os planos" — responsive grid */
@media (max-width: 900px){
  .plan-incluso-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .plan-incluso-grid{ grid-template-columns: 1fr; max-width: 340px; }
}

/* ============================================================
   Rodapé
   ============================================================ */
.site-footer{
  position: relative;
  z-index: 0;
  width: 100%;
}
.footer-inner{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0A0A0C;
  color: rgba(255,255,255,.6);
  padding: clamp(48px, 6vw, 80px) 0 34px;
}
/* Faixa de newsletter (topo do rodapé) */
.footer-news{
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.25fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding-bottom: clamp(34px, 4vw, 52px);
  margin-bottom: clamp(34px, 4vw, 52px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-news-brand img{ height: 55px; width: auto; }
.footer-news-brand p{ font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.5); margin: 14px 0 0; max-width: 30ch; }
.footer-news-head{
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.42;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  margin: 0;
}
.footer-form-row{
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 6px;
  transition: border-color var(--dur-base) var(--ease-out);
}
.footer-form-row:focus-within{ border-color: rgba(192,243,83,.6); }
.footer-form-row input{
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14.5px;
  padding: 12px 14px;
}
.footer-form-row input::placeholder{ color: rgba(255,255,255,.4); }
.footer-form-row button{
  flex: 0 0 auto;
  border: none;
  cursor: pointer;
  background: var(--ds-accent);
  color: #0A0A0C;
  font-weight: 700;
  font-size: 14.5px;
  padding: 0 22px;
  border-radius: 9px;
  transition: background var(--dur-fast) var(--ease-out);
}
.footer-form-row button:hover{ background: var(--ds-accent-600); }
.footer-news-note{ font-size: 12.5px; color: rgba(255,255,255,.45); margin: 10px 0 0; }
.footer-news-note a{ color: var(--ds-accent-300); text-decoration: underline; text-underline-offset: 2px; }
.footer-news-note a:hover{ color: var(--ds-accent); }

@media (max-width: 980px){
  .footer-news{ grid-template-columns: 1fr; gap: 26px; }
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}
.footer-brand-logo{ height: 26px; width: auto; margin-bottom: 16px; }
.footer-tagline{ font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.55); max-width: 30ch; }
/* Selo de garantia/reconhecimento — estilo shield badge */
.seal-badge{
  position: relative;
  max-width: 290px;
  padding: 26px 30px 28px;
  border-radius: 22px;
}
.seal-badge::before{        /* contorno verde com glow ao redor do selo */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(150deg,
    var(--ds-accent) 0%,
    rgba(192,243,83,.18) 24%,
    transparent 46%,
    transparent 60%,
    rgba(192,243,83,.30) 82%,
    var(--ds-accent) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .85;
  pointer-events: none;
}
.seal-shield{
  position: relative;
  width: 100%;
  margin: 0;
  padding: 17px 16px 30px;
  background: #fff;
  color: #16161A;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.seal-source{
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #0A0A0C;
}
.seal-source b{ color: var(--ds-accent-700); font-weight: 800; }
.seal-title{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.32;
  color: #4A4A52;
  max-width: 16ch;
}
.seal-stars{ display: inline-flex; gap: 2px; color: #FF6A3D; }
.seal-stars svg{ width: 14px; height: 14px; }
.seal-year{
  margin-top: 1px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #16161A;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 5px;
  padding: 2px 9px;
}
.footer-col h4{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ds-accent);
  margin: 0 0 16px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a{
  font-size: 14.5px;
  color: rgba(255,255,255,.66);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover{ color: #fff; }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer-social{ display: flex; gap: 12px; }
.footer-social a{
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.footer-social a:hover{ background: var(--ds-accent); color: #0A0A0C; }

@media (max-width: 760px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .footer-brand{
    grid-column: 1 / -1;
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }
  .footer-col{ order: 0; }
}

/* ============================================================
   Footer perspective grid — linhas convergindo para ponto de fuga
   com partículas luminosas viajantes
   ============================================================ */
.footer-inner{ position: relative; }
.footer-content{ pointer-events: none; }
.footer-content a,
.footer-content button,
.footer-content input{ pointer-events: auto; }
.footer-grid-perspective{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(150px, 18vw, 210px);
  overflow: hidden;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to top, #000 26%, rgba(0,0,0,.55) 62%, transparent 100%);
          mask-image: linear-gradient(to top, #000 26%, rgba(0,0,0,.55) 62%, transparent 100%);
}
.footer-grid-svg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@keyframes fp-glide{
  0%   { bottom: 0; opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { bottom: 85%; left: 50%; opacity: 0; }
}
.footer-particle{
  position: absolute;
  bottom: 0;
  left: var(--fp-x, 50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #C0F353;
  box-shadow: 0 0 8px 2px rgba(192,243,83,.5), 0 0 16px 4px rgba(192,243,83,.2);
  animation: fp-glide var(--fp-dur, 7s) ease-in var(--fp-delay, 0s) infinite;
  pointer-events: none;
}
@media (max-width: 980px){
  .footer-grid-perspective{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .footer-grid-perspective{ display: none; }
}

/* ============================================================
   FAQ — acordeão (tema claro, continua a seção de planos)
   ============================================================ */
.faq-section{
  position: relative;
  z-index: 10;
  background: #fff;
  color: var(--ds-on);
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.faq-wrap{ max-width: 1040px; margin: 0 auto; }
.faq-intro{ margin-bottom: clamp(20px, 2.5vw, 36px); }
.faq-h2{
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ds-on);
  margin: 0;
}
.faq-list{ border-top: 1px solid rgba(10,10,12,.12); }
.faq-item{ border-bottom: 1px solid rgba(10,10,12,.12); }
.faq-q{
  cursor: pointer;
  list-style: none;
  padding: 26px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 500;
  color: var(--ds-on);
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-q::-webkit-details-marker{ display: none; }
.faq-q:hover{ color: rgba(10,10,12,.7); }
.faq-toggle{
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ds-on);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.faq-toggle svg{ width: 18px; height: 18px; }
.faq-item[open] .faq-toggle{ transform: rotate(45deg); background: var(--ds-accent-700); }
.faq-a{
  padding: 0 4px 28px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(10,10,12,.6);
  max-width: 82ch;
}
.faq-a a{ color: var(--ds-accent-700); text-decoration: underline; text-underline-offset: 2px; }
.faq-a a:hover{ color: var(--ds-accent-600); }

/* ============================================================
   MOBILE — menu hambúrguer + otimizações responsivas
   ============================================================ */

/* trava de scroll horizontal sem quebrar position:sticky */
html, body{ overflow-x: clip; }

/* Hambúrguer (escondido no desktop) */
.nav-burger{
  display: none;
  position: relative;
  z-index: 80;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.nav-burger span{
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform .26s var(--ease-out), opacity .18s var(--ease-out);
}
.site-header.is-light .nav-burger{ border-color: rgba(10,10,12,.16); background: rgba(10,10,12,.04); }
.site-header.is-light .nav-burger span{ background: #0A0A0C; }
.nav-burger.is-open span{ background: #fff; }   /* sempre branco quando overlay escuro está aberto */
.nav-burger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity: 0; }
.nav-burger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Overlay do menu mobile */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10,10,12,.98);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 34px;
  padding: 88px 30px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: opacity .34s var(--ease-out),
              -webkit-backdrop-filter .34s var(--ease-out),
              backdrop-filter .34s var(--ease-out);
}
.mobile-menu.is-open{
  opacity: 1;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.mobile-menu[hidden]{ display: none; }
.mobile-menu-close{
  position: absolute;
  top: 16px; right: 18px;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 11px;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
}
.mobile-menu-nav{ display: flex; flex-direction: column; }
.mobile-menu-nav a{
  font-size: clamp(24px, 7vw, 30px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--dur-fast) var(--ease-out);
}
.mobile-menu-nav a:hover{ color: var(--ds-accent); }

/* Accordion "Funcionalidades" dentro do menu mobile */
.mm-acc{ border-bottom: 1px solid rgba(255,255,255,.08); }
.mm-acc-trigger{
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: 0;
  padding: 12px 0;
  font-size: clamp(24px, 7vw, 30px);
  font-weight: 600;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.mm-acc-trigger:hover{ color: var(--ds-accent); }
.mm-acc-caret{ flex: none; transition: transform var(--dur-base) var(--ease-out); }
.mm-acc.is-open .mm-acc-caret{ transform: rotate(180deg); }
.mm-acc-panel{
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-base) var(--ease-out);
}
.mm-acc.is-open .mm-acc-panel{ max-height: 520px; }
.mm-acc-panel a{
  display: block;
  font-size: clamp(17px, 4.6vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: 13px 0 13px 2px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--dur-fast) var(--ease-out);
}
.mm-acc-panel a:last-child{ border-bottom: 0; padding-bottom: 6px; }
.mm-acc-panel a:hover{ color: var(--ds-accent); }

.mobile-menu-actions{ display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mobile-menu-actions .btn{ justify-content: center; width: 100%; padding: 16px; font-size: 16px; }

/* Entrada escalonada (stagger) dos itens do menu mobile */
.mobile-menu-nav > a,
.mobile-menu-nav > .mm-acc > .mm-acc-trigger,
.mobile-menu-actions .btn,
.mobile-menu-close{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .42s var(--ease-out), transform .42s var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.mobile-menu.is-open .mobile-menu-nav > a,
.mobile-menu.is-open .mobile-menu-nav > .mm-acc > .mm-acc-trigger,
.mobile-menu.is-open .mobile-menu-actions .btn,
.mobile-menu.is-open .mobile-menu-close{
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu-close{ transition-delay: .06s; }
.mobile-menu.is-open .mobile-menu-nav > .mm-acc:nth-child(1) > .mm-acc-trigger,
.mobile-menu.is-open .mobile-menu-nav > a:nth-child(1){ transition-delay: .10s; }
.mobile-menu.is-open .mobile-menu-nav > a:nth-child(2){ transition-delay: .16s; }
.mobile-menu.is-open .mobile-menu-nav > a:nth-child(3){ transition-delay: .22s; }
.mobile-menu.is-open .mobile-menu-nav > a:nth-child(4){ transition-delay: .28s; }
.mobile-menu.is-open .mobile-menu-nav > a:nth-child(5){ transition-delay: .34s; }
.mobile-menu.is-open .mobile-menu-actions .btn:nth-child(1){ transition-delay: .40s; }
.mobile-menu.is-open .mobile-menu-actions .btn:nth-child(2){ transition-delay: .46s; }

.mobile-menu-social {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: center;
}
.mobile-menu-social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
  opacity: 0;
  transform: translateY(16px);
}
.mobile-menu-social a:hover {
  background: var(--ds-accent);
  color: #0A0A0C;
}
.mobile-menu.is-open .mobile-menu-social a:nth-child(1){ opacity:1; transform:translateY(0); transition-delay:.52s; }
.mobile-menu.is-open .mobile-menu-social a:nth-child(2){ opacity:1; transform:translateY(0); transition-delay:.58s; }

@media (prefers-reduced-motion: reduce){
  .mobile-menu,
  .mobile-menu-nav a,
  .mobile-menu-actions .btn,
  .mobile-menu-social a,
  .mobile-menu-close{
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
    transform: none !important;
  }
}

/* ---- Tablet / phone (<= 760px) ---- */
@media (max-width: 760px){
  .nav-burger{ display: flex; }
  .header-login{ display: none; }                 /* Login vai pro menu mobile */
  .header-cta{ padding: 11px 16px; font-size: 14px; }
  .site-header .max-w-container{ height: 64px; }

  /* Topbar: só announcement centralizado no mobile */
  .topbar-side{ display: none !important; }
  .topbar-announce{ flex: 1; justify-content: center; }
  .topbar-dot{ display: inline-block; }

  /* Hero: sem a emenda vertical (a blob escura é só p/ o layout 2 colunas do desktop) */
  .hero-blob{ display: none; }
  .hero-glow{ background: radial-gradient(680px 460px at 50% -4%, rgba(192,243,83,.18), transparent 62%) !important; }

  /* Hero: conteúdo encostado no topo (sem centralizar vertical) e menos respiro sob o header */
  .hero-sticky{ min-height: auto !important; align-items: flex-start !important; }
  .hero-grid{ padding-top: 16px !important; gap: 24px !important; }

  /* Hero: conteúdo todo centralizado no mobile */
  .hero-copy{ text-align: center; margin-inline: auto; }
  .hero-copy p{ margin-inline: auto; }
  .hero-copy > .flex{ justify-content: center; }

  /* Hero: typed text inline no mobile */

  /* Hero: reduzir espaço da prova social no mobile */
  .hero-proof{ flex-direction: column; align-items: center; justify-content: center; gap: 8px; margin-top: 20px !important; }
  .logo-carousel-group{ gap: 8px; }
  .logo-carousel-group img{ max-height: 20px; }
  .hero-proof > .text-sm{ white-space: normal; text-align: center; }

  /* Hero: mídia menor e centralizada */
  .hero-grid > div:last-child{ max-width: 260px !important; }

  /* Hero: mostrar badges flutuantes no mobile */
  .hero-float-badge{ display: none !important; }
  .hero-inline-badges{ display: block !important; min-height: 72px; }

  /* Footer: social acima do Meta Partner */
  .footer-brand .footer-social-mobile{ display: flex; }
  .footer-brand .footer-social-mobile > a[aria-label]{ display: inline-flex; }
  .footer-bottom .footer-social{ display: none; }

  /* Marcas em números: título acima dos cards (1 coluna) */
  .bn-grid{ grid-template-columns: 1fr; }
  .bn-left{ padding-top: clamp(44px, 11vw, 64px); }   /* respiro após o marquee de logos */
  .bn-card{ padding: 30px 28px; min-height: 180px; border-radius: 26px; }
  .bn-num{ font-size: clamp(52px, 16vw, 84px); }
  /* corrige overlap: a base .tst-section{margin-top:-22vh} vinha depois do media de 980px e o sobrescrevia */
  .tst-section{ margin-top: 0 !important; padding-top: 42px; }

  /* Planos: carrossel horizontal com swipe (mostra ~1 card + peek do próximo) */
  .plan-grid{
    display: flex;
    grid-template-columns: none;
    max-width: none;
    margin: 0;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 42px;
  }
  .plan-grid::-webkit-scrollbar{ display: none; }
  .plan-card{
    flex: 0 0 85%;
    max-width: none;
    scroll-snap-align: start;
  }
  .plan-card:last-child{ scroll-snap-align: end; }

}

/* ---- Phone (<= 480px) ---- */
@media (max-width: 480px){
  /* gutters mais justos em telas pequenas */
  .px-8{ padding-left: 1.25rem !important; padding-right: 1.25rem !important; }

  .topbar-left{ gap: 16px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-news{ gap: 22px; }

  /* hero um pouco menor pra caber melhor */
  .hero-grid h1{ font-size: clamp(34px, 9vw, 44px) !important; }

  /* selos de avaliação: empilha bonitinho */
  .tst-ratings{ gap: 16px 26px; }
}

/* ---- Plan credits toggle ---- */
.plan-credits-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; cursor: pointer; text-align: left;
  font: inherit; color: inherit;
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(10,10,12,.025);
  border: 1px solid rgba(10,10,12,.08);
  border-radius: 12px;
}
.plan-credits-toggle .plan-credits {
  margin: 0; padding: 0; background: none;
  border: none; border-radius: 0;
}
.plan-help-ico {
  flex-shrink: 0;
  color: rgba(10,10,12,.3);
  transition: color .2s;
}
.plan-credits-toggle:hover .plan-help-ico,
.plan-credits-toggle[aria-expanded="true"] .plan-help-ico {
  color: var(--ds-accent-700);
}
.plan-usage {
  overflow: hidden;
  transition: max-height .3s ease, opacity .2s ease;
}
.plan-usage[hidden] { display: block; max-height: 0; opacity: 0; overflow: hidden; }

/* ============================================================
   WOW Effects — Home Page interactivity & micro-animations
   ============================================================ */

/* 1. Cursor Glow no Hero (mouse-following spotlight) */
.hero-cursor-glow{
  position:absolute; inset:0; pointer-events:none; z-index:1;
  background:radial-gradient(600px at var(--mx,50%) var(--my,50%), rgba(192,243,83,.07), transparent 60%);
}

/* 2. Tilt 3D nos Feature Cards (hover magnético) */
.feat-card{ will-change:auto; }
.feat-card.is-tilting{
  transition: box-shadow .3s ease !important;
  will-change:transform;
}
.feat-card.is-tilting:hover{
  box-shadow:0 20px 60px -20px rgba(0,0,0,.18);
}

/* 3. Shimmer text no hero headline */
.hero-shimmer-text{
  background-size:200% 100% !important;
  animation:fpShimmer 4s ease-in-out 2s 1;
}

/* 4. Ring rotation (animated rings no hero) */
.ring-spin-reverse{
  transform-origin:center;
  animation:fcSpinSlow 90s linear infinite reverse;
}

/* 5. Floating badges no hero (escuro, para o tema dark do hero) */
.hero-float-badge{
  position:absolute; z-index:3;
  padding:8px 14px;
  background:rgba(255,255,255,.10);
  -webkit-backdrop-filter:blur(12px) saturate(140%);
          backdrop-filter:blur(12px) saturate(140%);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  font-size:13px; font-weight:600;
  color:rgba(255,255,255,.92);
  box-shadow:0 8px 28px rgba(0,0,0,.22);
  animation:featFloat 3.6s ease-in-out var(--delay,0s) infinite;
  white-space:nowrap;
  pointer-events:none;
}
.hero-float-dot{
  display:inline-block; width:6px; height:6px;
  background:#C0F353; border-radius:50%;
  margin-right:6px; vertical-align:middle;
  animation:cbsPulse 2.4s ease-out infinite;
}

/* prefers-reduced-motion: disable all WOW effects */
@media (prefers-reduced-motion:reduce){
  .hero-cursor-glow{ display:none; }
  .hero-shimmer-text{ animation:none; }
  .ring-spin-reverse{ animation:none; }
  .hero-float-badge{ animation:none; }
  .orbital-ring-1, .orbital-ring-2, .orbital-ring-3{ animation:none; }
  .orbital-diamond-1, .orbital-diamond-2, .orbital-diamond-3{ animation:none; }
}

/* Mobile: reposition hero float badges with smaller font */
@media (max-width:980px){
  .hero-float-badge{
    font-size: 11px;
    padding: 6px 10px;
  }
  .hero-float-badge:nth-of-type(1){
    right: 2% !important;
    top: 2% !important;
  }
  .hero-float-badge:nth-of-type(2){
    left: 2% !important;
    bottom: 8% !important;
  }
  .hero-float-badge:nth-of-type(3){
    right: 2% !important;
    top: 38% !important;
  }
  .hero-float-badge:nth-of-type(4){
    left: 2% !important;
    top: 62% !important;
  }
}
.plan-usage:not([hidden]) { max-height: 200px; opacity: 1; }

/* ============================================================
   UPGRADE: Scroll progress indicator (Fase 6.1)
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--ds-accent); z-index: 9999;
  transform-origin: left; transform: scaleX(0);
  pointer-events: none;
}

/* ============================================================
   UPGRADE: Gradient orbs (Fase 7.1 — Raycast-style)
   ============================================================ */
.gradient-orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
  mix-blend-mode: screen; z-index: -1;
}
.orb-accent {
  width: 700px; height: 700px; opacity: .10;
  background: radial-gradient(circle, #C0F353, transparent 70%);
  animation: orb-float-1 25s ease-in-out infinite alternate;
}
.orb-purple {
  width: 500px; height: 500px; opacity: .07;
  background: radial-gradient(circle, #8B5CF6, transparent 70%);
  animation: orb-float-2 30s ease-in-out infinite alternate;
}
.orb-blue {
  width: 600px; height: 600px; opacity: .06;
  background: radial-gradient(circle, #3B82F6, transparent 70%);
  animation: orb-float-3 28s ease-in-out infinite alternate;
}
@keyframes orb-float-1 { from { transform: translate(-5%, 0); } to { transform: translate(8%, -12%); } }
@keyframes orb-float-2 { from { transform: translate(5%, -5%); } to { transform: translate(-10%, 8%); } }
@keyframes orb-float-3 { from { transform: translate(3%, 5%); } to { transform: translate(-7%, -6%); } }

@media (max-width: 640px) {
  .gradient-orb { opacity: .05 !important; }
}

/* ============================================================
   UPGRADE: Dot grid background (Fase 7.2)
   ============================================================ */
.dot-grid-bg { position: relative; }
.dot-grid-bg::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(192,243,83,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  z-index: 0;
}

/* ============================================================
   UPGRADE: Noise texture global (Fase 7.3)
   ============================================================ */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   UPGRADE: Testimonial card hover glow (Fase 5.1)
   ============================================================ */
.tcard {
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.tcard:hover {
  box-shadow: 0 0 30px rgba(192,243,83,.15);
  border-color: rgba(192,243,83,.2);
}

/* ============================================================
   UPGRADE: FAQ active state (Fase 8.2)
   ============================================================ */
.faq-item.faq-active {
  border-left: 3px solid var(--ds-accent);
  background: rgba(192,243,83,.04);
  padding-left: 16px;
  margin-left: -19px;
  border-radius: 4px 0 0 4px;
}

/* ============================================================
   UPGRADE: Footer CTA glow ring (Fase 9.2)
   ============================================================ */
.footer-cta-glow {
  position: relative;
}
.footer-cta-glow::before {
  content: ''; position: absolute; inset: -8px; border-radius: 12px;
  border: 2px solid var(--ds-accent);
  animation: cta-radar 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes cta-radar {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ============================================================
   UPGRADE: Newsletter input glow focus (Fase 9.3)
   ============================================================ */
.footer-form-row:focus-within {
  border-color: var(--ds-accent);
  box-shadow: 0 0 0 3px rgba(192,243,83,.15);
}

/* ============================================================
   UPGRADE: Typed.js cursor styling (Fase 2.2)
   ============================================================ */
.typed-cursor {
  display: inline-block;
  color: var(--ds-accent);
  font-weight: 300;
  animation: typedBlink .7s infinite;
}
@keyframes typedBlink {
  50% { opacity: 0; }
}
#typed-hero {
  background-image: linear-gradient(100deg,#DCF98C,#C0F353 45%,#DCF98C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: fpShimmer 4s ease-in-out 2s 1;
}

/* ============================================================
   UPGRADE: Card glow border animation (Fase 3.2 — Linear/Raycast style)
   ============================================================ */
@property --card-glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--card-glow-angle), transparent 25%, rgba(192,243,83,.5) 30%, #C0F353 35%, rgba(192,243,83,.5) 40%, transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  animation: card-glow-spin 3s linear infinite;
  animation-play-state: paused;
}

.feat-card.glow-active::before {
  opacity: 1;
  animation-play-state: running;
}
.feat-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@keyframes card-glow-spin {
  to { --card-glow-angle: 360deg; }
}

/* ============================================================
   UPGRADE: Ambient particles for light sections (Fase 7.4)
   ============================================================ */
.ambient-particle--light {
  color: rgba(132,180,26,.35) !important;
}
.ambient-particle--light.ambient-particle--dot {
  background: rgba(132,180,26,.18) !important;
}

/* ============================================================
   UPGRADE: Plan card 3D tilt (Fase 6.4)
   ============================================================ */
.plan-card.is-tilting {
  transition: box-shadow .3s ease !important;
  will-change: transform;
}
.plan-card.is-tilting:hover {
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.15);
}

/* ============================================================
   UPGRADE: Reduced motion — disable all new effects
   ============================================================ */
/* ============================================================
   FAQ CTA link inside answers
   ============================================================ */
.faq-cta{
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #84B41A;
  text-decoration: none;
}
.faq-cta:hover{
  color: #9FD22F;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   Funcionalidades — Ângulo de Dor
   ============================================================ */
.pain-section{
  position: relative;
  z-index: 10;
  background: #16161A;
  padding: clamp(64px, 8vw, 110px) 0;
  overflow: hidden;
}
.pain-section::before{
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(192,243,83,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  z-index: 0;
}
.pain-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: var(--ds-t14); color: var(--ds-accent-300); border: 1px solid var(--ds-t34);
  margin-bottom: 18px;
}
.pain-h2{
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 clamp(36px, 4vw, 56px);
  max-width: 18ch;
}
.pain-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card{
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 28px 24px 26px;
  transition: transform .3s ease, border-color .3s ease;
}
.pain-card:hover{
  transform: translateY(-3px);
}
.pain-card-icon{
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain-card-icon svg{
  width: 22px; height: 22px;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.pain-card h3{
  font-size: 17px;
  font-weight: 650;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}
.pain-card p{
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.52);
  margin: 0;
}
@media (max-width: 900px){
  .pain-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px){
  .pain-grid{ grid-template-columns: 1fr; }
}

/* ============================================================
   Agências / Parceiros
   ============================================================ */
.partners-section{
  position: relative;
  z-index: 10;
  background: #fff;
  padding: clamp(64px, 8vw, 110px) 0;
}
.partners-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.partners-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(192,243,83,.16); color: var(--ds-accent-700); border: 1px solid color-mix(in srgb, var(--ds-accent) 45%, transparent);
  margin-bottom: 18px;
}
.partners-h2{
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #0A0A0C;
  margin: 0 0 14px;
}
.partners-sub{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10,10,12,.56);
  margin: 0 0 28px;
  max-width: 48ch;
}
.partners-benefit{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.partners-benefit-icon{
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(132,180,26,.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-benefit-icon svg{
  width: 20px; height: 20px;
  stroke: #84B41A;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.partners-benefit strong{
  display: block;
  font-size: 15px;
  font-weight: 650;
  color: rgba(10,10,12,.88);
  margin-bottom: 2px;
}
.partners-benefit span{
  font-size: 13.5px;
  color: rgba(10,10,12,.48);
}
.partners-ctas{
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
/* Partner dashboard mock card */
.partner-dash{
  background: #16161A;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 0 60px -20px rgba(192,243,83,.15), 0 20px 50px -20px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.partner-dash-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.partner-dash-avatar{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(192,243,83,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-dash-avatar svg{
  width: 18px; height: 18px;
  stroke: var(--ds-accent);
  fill: none;
  stroke-width: 1.8;
}
.partner-dash-header span{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.partner-dash-metrics{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.partner-dash-metric{
  text-align: center;
}
.partner-dash-metric strong{
  display: block;
  font-size: clamp(16px, 3.8vw, 22px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}
.partner-dash-metric span{
  font-size: 11.5px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.partner-dash-list{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partner-dash-list li{
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}
.partner-dash-badge{
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(126,232,176,.12);
  color: #7EE8B0;
}
/* Partner dash chart (sparkline bars) */
.partner-dash-chart{
  display:flex; align-items:flex-end; gap:5px;
  height:48px; margin-bottom:20px;
  padding:0 4px;
}
.partner-dash-chart i{
  flex:1; border-radius:3px 3px 0 0;
  background:linear-gradient(180deg, rgba(192,243,83,.6), rgba(132,180,26,.25));
  transform:scaleY(0); transform-origin:bottom;
  transition:transform .7s var(--ease-out, ease);
}
.partner-dash-chart i:nth-child(1){ transition-delay:.20s; }
.partner-dash-chart i:nth-child(2){ transition-delay:.26s; }
.partner-dash-chart i:nth-child(3){ transition-delay:.32s; }
.partner-dash-chart i:nth-child(4){ transition-delay:.38s; }
.partner-dash-chart i:nth-child(5){ transition-delay:.44s; }
.partner-dash-chart i:nth-child(6){ transition-delay:.50s; }
.partner-dash-chart i:nth-child(7){ transition-delay:.56s; }
.partner-dash-chart.chart-in i{ transform:scaleY(1); }

/* Partner dash client list enhancements */
.partner-dash-dot{
  display:inline-block; width:6px; height:6px;
  background:#22C55E; border-radius:50%;
  margin-right:8px; vertical-align:middle;
  animation:cbsPulse 2.4s ease-out infinite;
}
.partner-dash-revenue{
  font-size:13px; font-weight:600;
  color:rgba(255,255,255,.85);
  margin-left:auto; margin-right:10px;
}
.partner-dash-delta{
  font-size:10.5px; font-weight:700;
  padding:2px 7px; border-radius:999px;
  background:rgba(34,197,94,.12);
  color:#7EE8B0;
  white-space:nowrap;
}

@media (max-width: 900px){
  .partners-grid{ grid-template-columns: 1fr; }
  .partner-dash{ max-width: 460px; }
}

/* ============================================================
   CTA stat card — glow + orbit animations
   ============================================================ */
@keyframes cta-glow{
  0%,100%{ box-shadow:0 0 30px rgba(192,243,83,.12), 0 0 80px rgba(192,243,83,.06); }
  50%{ box-shadow:0 0 50px rgba(192,243,83,.3), 0 0 120px rgba(192,243,83,.12); }
}
@keyframes cta-orbit{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}
.cta-stat-card{
  animation: cta-glow 3s ease-in-out infinite;
  border-radius: 16px;
}
.cta-stat-card svg circle[stroke-dasharray]{
  transform-origin: 60px 60px;
  animation: cta-orbit 20s linear infinite;
}
.cta-stat-card svg circle[stroke-dasharray] ~ circle:not([fill]){
  animation: cta-orbit 30s linear infinite reverse;
}

/* ============================================================
   Section floating elements — particles + icons
   ============================================================ */
.section-floater{
  position:absolute; inset:0; overflow:hidden;
  pointer-events:none; z-index:0;
}
.float-particle{
  position:absolute;
  width: var(--fp-size, 5px);
  height: var(--fp-size, 5px);
  border-radius:50%;
  background: var(--ds-accent, #C0F353);
  opacity: var(--fp-opacity, 0.1);
  left: var(--fx);
  top: var(--fy);
  animation: float-drift var(--dur, 10s) ease-in-out var(--delay, 0s) infinite alternate,
             float-drift-x calc(var(--dur, 10s) * 1.3) ease-in-out var(--delay, 0s) infinite alternate;
  will-change: transform;
}
.float-particle.glow{
  box-shadow: 0 0 8px rgba(192,243,83,.4), 0 0 20px rgba(192,243,83,.15);
}
.float-icon{
  position:absolute;
  width: var(--fi-size, 18px);
  height: var(--fi-size, 18px);
  opacity: var(--fi-opacity, 0.08);
  color: var(--ds-accent, #C0F353);
  left: var(--fx);
  top: var(--fy);
  animation: float-drift var(--dur, 12s) ease-in-out var(--delay, 0s) infinite alternate,
             float-rotate calc(var(--dur, 12s) * 2.5) linear var(--delay, 0s) infinite;
  will-change: transform;
}
/* Dark sections: brighter particles */
.hero-sticky .float-particle,
.bn-section .float-particle,
.tst-section .float-particle{
  --fp-opacity: 0.18;
}
.hero-sticky .float-particle.glow,
.bn-section .float-particle.glow,
.tst-section .float-particle.glow{
  box-shadow: 0 0 10px rgba(192,243,83,.5), 0 0 25px rgba(192,243,83,.2);
}
/* Light sections: subtler icons */
.feat-section .float-icon,
.plan-section .float-icon{
  --fi-opacity: 0.05;
}

@keyframes float-drift{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(calc(var(--drift-y, -15px))); }
}
@keyframes float-drift-x{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(calc(var(--drift-x, 10px))); }
}
@keyframes float-rotate{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* Mobile: hide some floaters to avoid clutter */
@media (max-width:768px){
  .float-particle:nth-child(n+4),
  .float-icon:nth-child(n+3){ display:none; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .gradient-orb { animation: none !important; }
  .dot-grid-bg::before { display: none; }
  .pain-section::before { display: none; }
  body::after { display: none; }
  .footer-cta-glow::before { animation: none; }
  .typed-cursor { animation: none; }
  #typed-hero { animation: none; }
  .feat-card::before { animation: none; opacity: 0 !important; }
  .ambient-particle--light { display: none; }
  .pain-card, .plan-incluso-card { transition: none; }
  .cta-stat-card { animation: none; }
  .cta-stat-card svg circle { animation: none !important; }
  .float-particle, .float-icon { animation: none !important; display: none; }
  .section-floater { display: none; }
  .popup-backdrop { transition: none !important; }
  .popup-card { transition: none !important; }
  .popup-particles { display: none; }
  .popup-hero-icon { box-shadow: none; }
  .popup-social-proof .hero-float-dot { animation: none; }
  .social-toast-card { transition: none !important; }
  .social-toast .hero-float-dot { animation: none; }
  .sticky-mobile-cta { transition: none !important; }
}

/* ============================================================
   Hero — Guarantee badge
   ============================================================ */
.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.3;
}
.hero-guarantee svg {
  flex-shrink: 0;
  color: var(--ds-accent);
  opacity: .6;
}

/* ============================================================
   Hero — Trust badges row
   ============================================================ */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.hero-trust-badge {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.hero-trust-badge b {
  color: rgba(255,255,255,.7);
}
.hero-trust-badge img {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}
.hero-trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.15);
}
@media (max-width: 480px) {
  .hero-trust-row { gap: 6px; }
  .hero-trust-sep { display: none; }
}

/* ============================================================
   Hero — Inline stat badges (mobile only)
   ============================================================ */
.hero-inline-badges{
  display: none; /* hidden on desktop; shown on mobile as floating */
  position: relative;
  width: 100%;
  min-height: 0;
  margin-top: 14px;
}
.hero-inline-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
          backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
  white-space: nowrap;
  position: absolute;
  animation: featFloat 3.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
.hero-inline-badge:nth-child(1){ top: 4px; left: 2%; animation-delay: 0s; }
.hero-inline-badge:nth-child(2){ top: 2px; right: 3%; animation-delay: .8s; }
.hero-inline-badge:nth-child(3){ top: 42px; left: 6%; animation-delay: 1.6s; }
.hero-inline-badge:nth-child(4){ top: 44px; right: 1%; animation-delay: 2.4s; }

/* ============================================================
   Footer — Social icons in footer-brand (mobile only)
   ============================================================ */
.footer-social-mobile{
  display: block;
  margin-top: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}
/* Desktop: hide social links (they live in footer-bottom) but keep badges visible */
.footer-social-mobile > a[aria-label]{
  display: none;
}
.footer-social-mobile .footer-badges{
  width: 100%;
}

/* Selos de parceria (Meta / Turbo).
   Ficam dentro de .footer-social, então herdariam o círculo de 36px da regra
   `.footer-social a` — este bloco anula isso e deixa o selo no tamanho cheio. */
.footer-badges a{
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  display: inline-block;
  line-height: 0;
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.footer-badges a:hover{
  background: none;
  opacity: .82;
  transform: translateY(-2px);
}
.footer-badges .badge-meta{
  display: block;
  width: 76px;
  height: auto;
}
.footer-badges .badge-turbo{
  display: block;
  width: 132px;
  height: auto;
}
/* No mobile a coluna do rodapé tem ~200px — os dois selos só cabem
   na mesma linha se encolherem juntos. */
@media (max-width: 760px){
  .footer-badges .badge-meta{ width: 56px; }
  .footer-badges .badge-turbo{ width: 114px; }
}

/* ============================================================
   Plan — Todas Funcionalidades Inclusas
   ============================================================ */
.plan-all-features{
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ds-accent-700, #84B41A);
  text-align: center;
  letter-spacing: .02em;
}

/* ============================================================
   Newsletter success message
   ============================================================ */
.footer-news-success {
  font-size: 14px;
  color: var(--ds-accent);
  padding: 12px 0;
}


/* ============================================================
   Exit-Intent Popup
   ============================================================ */
.popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,12,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
}
.popup-backdrop[hidden] { display: none; }
.popup-backdrop.popup-visible { opacity: 1; }

.popup-card {
  position: relative;
  background: #16161A;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 48px 40px 36px;
  max-width: 440px;
  width: calc(100% - 32px);
  text-align: center;
  transform: scale(.95);
  transition: transform .3s ease;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  overflow: hidden;
}
.popup-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(192,243,83,.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.popup-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.popup-card > *:not(.popup-glow):not(.popup-particles) {
  position: relative;
  z-index: 1;
}
.popup-hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(192,243,83,.08);
  box-shadow: 0 0 30px rgba(192,243,83,.15), 0 0 60px rgba(192,243,83,.06);
}
.popup-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 14px 0 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.popup-social-proof .hero-float-dot {
  margin-right: 8px;
}
.popup-visible .popup-card { transform: scale(1); }

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .15s;
}
.popup-close:hover { color: #fff; }

.popup-title {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0;
}
.popup-sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin: 12px 0 0;
  line-height: 1.5;
}
.popup-cta {
  display: inline-flex;
  margin-top: 24px;
  padding: 15px 32px !important;
  font-size: 16px !important;
  box-shadow: 0 8px 24px rgba(192,243,83,.3);
}
.popup-dismiss {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  font-size: 13px;
  cursor: pointer;
  padding: 4px;
  transition: color .15s;
}
.popup-dismiss:hover { color: rgba(255,255,255,.6); }

.popup-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.popup-badge svg { color: var(--ds-accent); opacity: .6; }
.popup-badge img { width: 16px; height: 16px; border-radius: 2px; }

/* ============================================================
   Social Proof Toast Notifications
   ============================================================ */
.social-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  pointer-events: auto;
}
.social-toast[hidden] { display: none; }
.social-toast-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 36px 14px 16px;
  background: rgba(22,22,26,.82);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
          backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  max-width: 360px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .35s ease, transform .35s ease;
}
.social-toast-card .hero-float-dot {
  margin-right: 10px;
  flex-shrink: 0;
}
.social-toast.toast-enter .social-toast-card {
  opacity: 1;
  transform: translateX(0);
}
.social-toast.toast-exit .social-toast-card {
  opacity: 0;
  transform: translateX(-24px);
}
.social-toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  font-size: 18px;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: color .15s;
}
.social-toast-close:hover { color: rgba(255,255,255,.7); }

/* No mobile o toast sobe para não colidir com o CTA sticky (que fica em
   bottom:0 com ~64px de altura) e ocupa a largura útil da tela. */
@media (max-width: 767px) {
  .social-toast {
    left: 12px;
    right: 12px;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
  .social-toast-card {
    max-width: none;
    font-size: 13px;
    padding: 12px 34px 12px 14px;
  }
}

/* ============================================================
   Sticky Mobile CTA
   ============================================================ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(22,22,26,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.06);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.sticky-mobile-cta[hidden] { display: none; }
.sticky-mobile-cta.sticky-visible { transform: translateY(0); }

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.sticky-cta-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-cta-logos {
  display: flex;
  align-items: center;
}
.sticky-cta-logos img {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(22,22,26,.85);
  filter: brightness(0) invert(1);
}
.sticky-cta-logos img + img {
  margin-left: -6px;
}
.sticky-cta-text {
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.sticky-cta-text strong {
  color: #fff;
}
.sticky-cta-btn {
  justify-content: center;
  padding: 14px 24px !important;
  font-size: 16px !important;
  border-radius: 10px !important;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .sticky-cta-btn { width: auto; }
}
@media (max-width: 768px) {
  .sticky-cta-proof { display: none; }
  .sticky-cta-btn { width: 100%; }
}

/* CTA final: botões lado a lado no mobile */
@media (max-width: 768px) {
  .cta-final-buttons .btn {
    padding: 12px 18px !important;
    font-size: 14px !important;
  }
}

/* ============================================================
   LGPD Cookie Consent Banner
   ============================================================ */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #16161A;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.lgpd-banner[hidden] { display: none; }

.lgpd-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.lgpd-text {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 0;
  flex: 1;
  min-width: 240px;
}
.lgpd-text a {
  color: var(--ds-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lgpd-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.lgpd-accept {
  padding: 10px 20px !important;
  font-size: 14px !important;
}
.lgpd-config-btn {
  padding: 10px 16px !important;
  font-size: 14px !important;
}

.lgpd-config-panel {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
}
.lgpd-config-panel[hidden] { display: none; }

.lgpd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
}
.lgpd-toggle input[type="checkbox"] {
  accent-color: var(--ds-accent);
  width: 16px;
  height: 16px;
}
.lgpd-toggle span { font-weight: 500; color: rgba(255,255,255,.8); }
.lgpd-toggle small { color: rgba(255,255,255,.35); font-size: 11px; }

.lgpd-save {
  margin-left: auto;
  padding: 8px 16px !important;
  font-size: 13px !important;
}

@media (max-width: 600px) {
  .lgpd-content { flex-direction: column; align-items: stretch; text-align: center; }
  .lgpd-actions { justify-content: center; }
  .lgpd-config-panel { flex-direction: column; align-items: stretch; }
  .lgpd-save { margin-left: 0; width: 100%; }
}

/* ============================================================
   404 — Registro inativo
   A página trata o endereço quebrado como um registro do próprio
   CRM: status "Inativo" que é reclassificado para "Recuperado".
   ============================================================ */
.nf-wrap{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(56px, 9vw, 104px) 24px;
  position: relative;
  overflow: hidden;
}
.nf-glow{
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  width: min(880px, 130vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(192,243,83,.13), transparent 72%);
  pointer-events: none;
}
.nf-inner{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
}
.nf-eyebrow{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin: 0 0 18px;
}
.nf-title{
  font-size: clamp(30px, 5.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 600;
  margin: 0;
}
.nf-sub{
  margin: 16px 0 0;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 48ch;
}

/* ---- Cartão de registro ---- */
.nf-card{
  margin-top: 34px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  overflow: hidden;
}
.nf-card-head{
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nf-hash{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(20px, 3vw, 26px);
  color: rgba(192,243,83,.45);
  line-height: 1;
}
.nf-id{
  font-size: clamp(42px, 8.5vw, 66px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: .9;
  color: var(--ds-accent);
  text-shadow: 0 8px 44px rgba(192,243,83,.22);
}
.nf-id-label{
  margin-left: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}
.nf-rows{ padding: 6px 22px 20px; }
.nf-row{
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(255,255,255,.07);
}
.nf-row:last-child{ border-bottom: 0; }
.nf-key{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.nf-val{
  font-size: 14.5px;
  color: rgba(255,255,255,.86);
  min-width: 0;
  overflow-wrap: anywhere;
}
.nf-val-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

/* ---- Reclassificação: Inativo -> Recuperado ---- */
.nf-status{
  position: relative;
  display: inline-grid;
  min-height: 26px;
  align-items: center;
}
.nf-chip{
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
}
.nf-chip-off{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  animation: nfChipOut .5s var(--ease-out) 2.1s forwards;
}
.nf-chip-on{
  background: var(--ds-t14);
  border-color: var(--ds-t34);
  color: var(--ds-accent);
  opacity: 0;
  transform: translateY(5px);
  animation: nfChipIn .5s var(--ease-out) 2.35s forwards;
}
.nf-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.nf-chip-on .nf-dot{ box-shadow: 0 0 0 4px var(--ds-t14); }
@keyframes nfChipOut{ to{ opacity: 0; transform: translateY(-5px); } }
@keyframes nfChipIn { to{ opacity: 1; transform: translateY(0); } }

/* linha que varre o cartão no momento da reclassificação */
.nf-sweep{
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ds-accent), transparent);
  opacity: 0;
  animation: nfSweep 1.5s var(--ease-out) 1.5s;
}
@keyframes nfSweep{
  0%   { top: 0;    opacity: 0; }
  15%  { opacity: .85; }
  85%  { opacity: .85; }
  100% { top: 100%; opacity: 0; }
}

/* ---- Ações ---- */
.nf-actions{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nf-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.nf-btn:hover{ transform: translateY(-2px); }
.nf-btn-primary{
  background: var(--ds-accent);
  color: var(--ds-on);
  box-shadow: var(--shadow-accent);
}
.nf-btn-primary:hover{ background: var(--ds-accent-300); }
.nf-btn-ghost{
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
}
.nf-btn-ghost:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); }
.nf-btn:focus-visible{
  outline: 2px solid var(--ds-accent);
  outline-offset: 3px;
}

.nf-links{
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}
.nf-links-label{
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  width: 100%;
}
.nf-links a{
  font-size: 14px;
  color: rgba(220,249,140,.9);
  text-decoration: none;
}
.nf-links a:hover{ color: var(--ds-accent); text-decoration: underline; }

@media (max-width: 560px){
  .nf-row{ grid-template-columns: 1fr; gap: 5px; }
  .nf-actions .nf-btn{ width: 100%; }
  .nf-card-head{ flex-wrap: wrap; }
  .nf-id-label{ margin-left: 0; width: 100%; margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce){
  .nf-chip-off{ display: none; }
  .nf-chip-on{ opacity: 1; transform: none; animation: none; }
  .nf-sweep{ display: none; }
  .nf-btn:hover{ transform: none; }
}

/* ============================================================
   Reveal on scroll
   O site.js adiciona .js-reveal no <html> antes do body renderizar.
   Sem JS, nada é escondido — o conteúdo simplesmente aparece.
   ============================================================ */
.js-reveal [data-reveal]{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.js-reveal [data-reveal].is-revealed{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .js-reveal [data-reveal]{
    opacity: 1;
    transform: none;
    transition: none;
  }
}
