/* ── Routing Hero (gateways page component) ── */

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hubPulse {
  0%   { opacity: 0.9; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.25); }
}

/* ── Hero Visuals (oc-*, ch-*, fl-*, br-*, sc-*, tp2-, api-vis) ── */
.oc-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* A — CHECKOUT HUB + PAYMENT METHOD ORBITS */
.ch-orbit { position: relative; width: 540px; height: 540px; }
.ch-orbit::before, .ch-orbit::after {
  content:""; position:absolute; border-radius:50%;
  border:1px dashed rgba(64,15,242,0.22);
  top:50%; left:50%;
}
.ch-orbit::before { width: 67%; aspect-ratio:1; transform: translate(-50%,-50%); animation: chSpin 90s linear infinite; }
.ch-orbit::after  { width: 93%; aspect-ratio:1; opacity: .5; transform: translate(-50%,-50%); animation: chSpin 140s linear infinite reverse; }
@keyframes chSpin { from{transform:translate(-50%,-50%) rotate(0)} to{transform:translate(-50%,-50%) rotate(360deg)} }

.ch-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 4;
  width: 268px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #02023C, #04017B);
  border: 1px solid rgba(152,132,255,0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 30px 60px rgba(3,2,30,0.28),
    0 0 0 8px rgba(255,255,255,0.55);
  color: #fff;
}
@keyframes chPulse { 0%{opacity:.9;transform:scale(1)} 100%{opacity:0;transform:scale(1.18)} }

/* B — STACKED CHECKOUT FLOW CARDS */
.fl-stage { position: relative; width: 560px; height: 540px; }
.fl-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.78) 60%, rgba(245,242,251,0.85) 100%);
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(64,15,242,0.06),
    0 20px 50px rgba(64,15,242,0.16),
    0 4px 12px rgba(3,2,30,0.06);
  padding: 18px 20px;
  width: 320px;
}
.fl-card__head { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.fl-card__tag {
  font-family: var(--font-mono); font-size: 9px; letter-spacing:.16em; text-transform:uppercase;
  color: var(--azul-paytime);
  display:inline-flex; align-items:center; gap: 6px;
}
.fl-card__tag .num {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, #5a28ff, #400FF2);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-size: 9px; font-weight: 700; font-family: var(--font-heading);
  letter-spacing: 0;
}
.fl-card__time { font-family: var(--font-mono); font-size:9.5px; color: var(--ink-mute); }
.fl-card__title { font-size:14px; font-weight:600; color:var(--ink); letter-spacing:-0.01em; margin-bottom:14px;}

/* Card 1 — Cart */
.fl-1 { top: 30px; left: 20px; z-index: 1; }
.fl-row {
  display:flex; align-items:center; gap: 10px;
  padding: 8px 0;
  border-top: 1px dashed rgba(64,15,242,0.10);
  font-size: 12px; color: var(--ink-soft);
}
.fl-row:first-of-type { border-top: none; }
.fl-row .thumb {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #D9CDFD, #9884FF);
  flex-shrink: 0;
  position: relative; overflow:hidden;
}
.fl-row .thumb::after {
  content:""; position:absolute; inset:0;
  background: repeating-linear-gradient(45deg, transparent 0 6px, rgba(255,255,255,0.18) 6px 7px);
}
.fl-row .name { flex:1; color: var(--ink); font-weight:500; font-size:12px;}
.fl-row .qty { font-family:var(--font-mono); font-size:10px; color:var(--ink-mute); }
.fl-row .price { font-weight:600; color: var(--ink); font-size:12px;}
.fl-total {
  display:flex; justify-content:space-between; align-items:baseline;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(64,15,242,0.10);
}
.fl-total .lbl { font-family:var(--font-mono); font-size:9.5px; letter-spacing:.12em; color: var(--ink-mute); text-transform:uppercase;}
.fl-total .val { font-size: 22px; font-weight:700; letter-spacing:-0.02em; color: var(--ink);}

/* Card 2 — Payment */
.fl-2 { top: 150px; left: 130px; z-index: 2; }
.fl-pay-method {
  display:flex; align-items:center; gap: 12px;
  padding: 12px 14px;
  background: rgba(64,15,242,0.04);
  border: 1px solid rgba(64,15,242,0.10);
  border-radius: 12px;
  margin-bottom: 10px;
}
.fl-pay-method .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: #000;
  color: #fff; display:flex; align-items:center; justify-content:center;
  font-size: 16px;
}
.fl-pay-method .nm { font-size: 13px; font-weight: 600; color: var(--ink); }
.fl-pay-method .sb { font-family:var(--font-mono); font-size:10px; color: var(--ink-mute); margin-top:2px;}
.fl-pay-method .chk {
  margin-left:auto;
  width: 22px; height:22px; border-radius:50%;
  background: linear-gradient(135deg, #5a28ff, #400FF2);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-size: 11px;
}
.fl-pay-bio {
  display:flex; align-items:center; gap:10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(110,229,166,0.10), rgba(110,229,166,0.04));
  border: 1px solid rgba(0,135,92,0.20);
  border-radius: 12px;
  font-size: 12px;
  color: #00875c;
  font-weight:500;
}
.fl-pay-bio i { font-size: 14px; }

/* Card 3 — Success */
.fl-3 { top: 290px; left: 220px; z-index: 3; }
.fl-success {
  text-align:center; padding: 6px 0 4px;
}
.fl-success__ring {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #6BE5A6 0%, #00875c 100%);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(0,135,92,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.fl-success__title { font-size: 16px; font-weight: 700; letter-spacing:-0.015em; color: var(--ink); margin-bottom: 4px;}
.fl-success__sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-mute); letter-spacing:.04em; }

/* Floating timer chip */
.fl-timer {
  position: absolute;
  top: 8%; right: -10px;
  z-index: 5;
  display:inline-flex; align-items:center; gap: 10px;
  padding: 10px 14px 10px 12px;
  border-radius: 100px;
  background: linear-gradient(135deg, #02023C, #04017B);
  border: 1px solid rgba(152,132,255,0.3);
  color: #fff;
  box-shadow: 0 16px 32px rgba(3,2,30,0.25);
}
.fl-timer .num {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #C4B8FF, #9884FF);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fl-timer .lbl { font-family:var(--font-mono); font-size: 9.5px; letter-spacing:.12em; text-transform:uppercase; color: rgba(233,228,237,0.7); }

/* Flow arrows between cards */

/* C — DEVICE DUO (BROWSER + PHONE) */

/* Phone */

/* Floating chips */

/* D — PAYMENT SPOTLIGHT */
@keyframes tpRingSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes tpPulse { 0%{opacity:.8;transform:scale(1)} 100%{opacity:0;transform:scale(1.30)} }

/* E — SMART CHECKOUT (Mobile screens) */
.sc-stage { position: relative; width: 680px; height: 580px; }

/* F — TAP ON PHONE */
.tp2-stage {
  position: relative;
  width: 560px;
  height: 600px;
}
.tp2-stage::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 460px; height: 460px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(152,132,255,0.32) 0%, rgba(64,15,242,0.10) 32%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.tp2-phone {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 540px;
  border-radius: 44px;
  background: #03021E;
  padding: 10px;
  box-shadow:
    0 24px 56px rgba(3,2,30,0.34),
    0 10px 24px rgba(3,2,30,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  z-index: 2;
}
.tp2-phone__screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  background: #FAF8FE;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tp2-phone__notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 24px;
  border-radius: 100px;
  background: #000;
  z-index: 3;
}
.tp2-close {
  position: absolute;
  top: 56px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(3,2,30,0.06);
  color: rgba(3,2,30,0.55);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  z-index: 3;
}
.tp2-amount {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -40%);
  width: 200px;
  background: #fff;
  border: 1px solid rgba(3,2,30,0.06);
  border-radius: 18px;
  padding: 22px 18px 20px;
  text-align: center;
  z-index: 4;
  box-shadow: 0 10px 24px rgba(3,2,30,0.08), 0 2px 6px rgba(3,2,30,0.04);
}
.tp2-amount__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9F2D 0%, #F08000 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
  font-size: 17px;
  box-shadow: 0 4px 10px rgba(240,128,0,0.35);
}
.tp2-amount__merchant {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--ink-mute);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.tp2-amount__value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
@keyframes tp2Twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.6); }
  50%      { opacity: 1;    transform: scale(1.15); }
}
.tp2-card {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 140px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f6fb 60%, #ece9f5 100%);
  border: 1px solid rgba(3,2,30,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(3,2,30,0.05),
    0 30px 60px rgba(64,15,242,0.18),
    0 8px 16px rgba(3,2,30,0.10);
  z-index: 5;
  overflow: hidden;
  animation: tp2Tap 3.2s ease-in-out infinite;
}
@keyframes tp2Tap {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.tp2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 20%, rgba(152,132,255,0.10), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 90%, rgba(64,15,242,0.06), transparent 60%);
  pointer-events: none;
}
.tp2-card__chip {
  position: absolute;
  bottom: 26px; left: 20px;
  width: 28px; height: 22px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, #ffe089, #d4ad4f);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10);
}
.tp2-card__chip::before, .tp2-card__chip::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px;
  height: 1px; background: rgba(0,0,0,0.18);
}
.tp2-card__chip::before { top: 7px; }
.tp2-card__chip::after  { top: 14px; }
.tp2-card__nfc {
  position: absolute;
  bottom: 30px; left: 56px;
  width: 18px; height: 18px;
  color: var(--ink-soft);
  font-size: 16px;
  transform: rotate(90deg);
}
.tp2-card__brand {
  position: absolute;
  bottom: 22px; right: 18px;
  display: flex;
  align-items: center;
}
.tp2-card__brand .circ {
  width: 22px; height: 22px; border-radius: 50%;
  background: #EB001B;
}
.tp2-card__brand .circ + .circ {
  background: #F79E1B;
  margin-left: -8px;
  mix-blend-mode: multiply;
}
.tp2-badge {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px 10px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,1);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 28px rgba(64,15,242,0.16), inset 0 1px 0 rgba(255,255,255,1);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.tp2-badge .ic {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.tp2-badge.b-nfc    { top: 70px;  right: -10px; }
.tp2-badge.b-nfc .ic { background: linear-gradient(135deg, #5a28ff, #400FF2); color: #fff; }
.tp2-badge.b-fee    { top: 200px; left: -30px; }
.tp2-badge.b-fee .ic { background: linear-gradient(135deg, #6BE5A6, #00875c); color: #fff; }
.tp2-badge.b-card   { top: 280px; right: -20px; }
.tp2-badge.b-card .ic { background: rgba(64,15,242,0.10); color: var(--azul-paytime); }
.tp2-pulse {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
.tp2-pulse span {
  position: absolute;
  left: 50%;
  top: 0;
  width: 60px; height: 60px;
  margin-left: -30px;
  border: 2px solid rgba(152,132,255,0.55);
  border-radius: 50%;
  opacity: 0;
  animation: tp2Pulse 2.2s ease-out infinite;
}
.tp2-pulse span:nth-child(2) { animation-delay: .7s; }
.tp2-pulse span:nth-child(3) { animation-delay: 1.4s; }
@keyframes tp2Pulse {
  0%   { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* G — API HERO */
.api-stage {
  position: relative;
  width: 640px;
  height: 580px;
  font-family: var(--font-mono);
}
@keyframes apiBlink { 50% { opacity: 0; } }

/* ── No-Code Builder (nc-*) ── */
.nc-stage {
  position: relative;
  width: 580px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Go-live floating chip */

/* ── Builder card (left panel) ── */

@keyframes ncPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Logo row */

/* Color swatches */

/* Module toggles */

/* Publish button */

/* Arrow connector pill */

/* ── Phone mockup (right panel) ── */

/* Notch */

/* Phone header */

/* Balance card */

/* Icon row */

/* Recentes section */

/* Transaction rows */

/* Bottom chip on phone */

/* ── H — PRESENCIAL DUO (Smart POS + Tap on Phone) ── */

/* Duo stage wrapper */

/* ── POS Phone ── */

/* POS header row */

/* POS amount area */

/* POS payment method pills */

/* POS skeleton bars */

/* ── Tap Phone ── */

/* Tap header */

/* Tap NFC circle */

/* Tap amount area */

/* ── Shared floating chips ── */

/* POS chip: below the phone, horizontally centered */

/* Tap chip: top-right, outside phone */

/* Hero Visuals section layout */


/* No-Code Builder — versão clean (DS showcase) */


/* ══════════════════════════════════════════════════════════════════
   OVERRIDES — componentes que eram para fundo escuro, agora em
   artboards claras (.hv-artboard-bg)
   ══════════════════════════════════════════════════════════════════ */

/* 1) Floating Hero Cards (.hero-card) */

/* 2) Balance Bar (.balance-bar-demo) */

/* 3) Marquee — fundo claro */

/* 4) Stat Strip — números azuis em vez de branco */

/* 5) Trust Badges — versão clara */

/* 6) Routing Block (.routing-demo) — fundo claro */


/* ══════════════════════════════════════════════════════════════════
   AJUSTES extras para artboards claras
   ══════════════════════════════════════════════════════════════════ */

/* 1) Credit Card Stack — sem rotação */

/* 2) Hero Card API — mesma aparência dos outros (bg branco) + eyebrow melhor */

/* 3) Stat Strip (Stat Num) — números azuis, labels escuros */

/* ══════════════════════════════════════════════════════════════════
   MOBILE — esconder componentes visuais decorativos
   (eles têm tamanhos fixos que estouram em telas pequenas)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  
  .tp2-stage,
  .sc-stage,
  .api-stage,
  .nc-stage,
  .ch-hub,
  .ch-orbit,
  .routing-engine-vis,
  .device-stack {
    display: none !important;
  }
  /* Esconde também o container .oc-visual quando ele só envolve um stage */
  .oc-visual:has(> .tp-stage),
  .oc-visual:has(> .tp2-stage),
  .oc-visual:has(> .sc-stage),
  .oc-visual:has(> .api-stage),
  .oc-visual:has(> .nc-stage) {
    display: none !important;
  }
  /* Grids 2-col que tinham um visual à direita colapsam pra 1 col */
  /* O wrapper do visual fica vazio — esconde ele também */
}

/* ══════════════════════════════════════════════════════
   DASHBOARD MOCKUP (Pix Live Monitor) — preservado do hero da home
   pra ficar reutilizável como componente do design system.
══════════════════════════════════════════════════════ */
.dashboard-mock { width: 100%; max-width: 560px; padding: 24px; position: relative; }
.dash-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(64, 15, 242, 0.10); margin-bottom: 24px; }
.dash-head .title { font-size: 14px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: #00b96d; box-shadow: 0 0 0 4px rgba(0, 185, 109, 0.18); animation: livePulse 2s infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.dash-head .pills { display: flex; gap: 4px; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.dash-head .pills span { padding: 4px 8px; border-radius: 100px; background: rgba(64, 15, 242, 0.08); color: var(--azul-paytime); }
.dash-head .pills span.active { background: var(--azul-paytime); color: #fff; }
.dash-balance { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); }
.dash-balance-amount { font-size: 44px; font-weight: 700; letter-spacing: -0.025em; color: var(--ink); margin-top: 6px; margin-bottom: 4px; line-height: 1; }
.dash-balance-amount .currency { font-size: 22px; opacity: 0.5; margin-right: 4px; }
.dash-balance-amount .cents { font-size: 22px; opacity: 0.5; }
.dash-balance-trend { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #00b96d; font-weight: 600; }
.dash-chart { margin: 16px 0; height: 120px; position: relative; }
.dash-chart svg { width: 100%; height: 100%; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.dash-mini { padding: 12px; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(255, 255, 255, 0.95); border-radius: 12px; display: flex; justify-content: space-between; align-items: center; }
.dash-mini .lbl { font-size: 11px; color: var(--ink-mute); margin-bottom: 4px; }
.dash-mini .val { font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.dash-mini .ico { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--azul-paytime), var(--lilas)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
@keyframes floatA { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }

/* ══════════════════════════════════════════════════════
   HERO VISUALS — novos componentes (recorrência, gestão,
   taxas, compliance, indústrias). Layout split + keyframes hx-*.
   Componentes usam estilos inline; só precisam destes keyframes.
   ══════════════════════════════════════════════════════ */
.hx-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
/* Em desktops mais estreitos os componentes (até 560px) escalam pra caber */
@media (min-width: 961px) and (max-width: 1180px) {
  .hx-visual { transform: scale(0.86); transform-origin: center; }
}
@media (max-width: 960px) {
  .hx-visual { display: none; }
}

@keyframes hx-live{0%,100%{opacity:1}50%{opacity:.45}}
@keyframes hx-spin{to{transform:rotate(360deg)}}
@keyframes hx-s1{0%,30%{opacity:1}36%,94%{opacity:0}100%{opacity:1}}
@keyframes hx-s2{0%,30%{opacity:0}36%,58%{opacity:1}64%,100%{opacity:0}}
@keyframes hx-s3{0%,58%{opacity:0}64%,93%{opacity:1}99%,100%{opacity:0}}
@keyframes hx-feed{0%{transform:translateY(0)}100%{transform:translateY(-50%)}}
@keyframes hx-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes hx-pulse{0%,100%{box-shadow:0 0 0 0 rgba(64,15,242,0.20)}60%{box-shadow:0 0 0 12px rgba(64,15,242,0)}}
@keyframes hx-pulseg{0%,100%{box-shadow:0 0 0 0 rgba(22,163,74,0.25)}60%{box-shadow:0 0 0 8px rgba(22,163,74,0)}}
@keyframes hx-eA{0%,10%{stroke-dashoffset:170;opacity:1}32%,90%{stroke-dashoffset:0;opacity:1}97%,100%{stroke-dashoffset:0;opacity:0}}
@keyframes hx-eB{0%,36%{stroke-dashoffset:206;opacity:1}58%,90%{stroke-dashoffset:0;opacity:1}97%,100%{stroke-dashoffset:0;opacity:0}}
@keyframes hx-gLeaf{0%,2%{box-shadow:0 8px 20px rgba(11,18,32,0.07);border-color:#E6E8EE}6%,18%{box-shadow:0 0 0 2px rgba(64,15,242,0.28),0 10px 28px rgba(64,15,242,0.30);border-color:rgba(64,15,242,0.55)}30%,100%{box-shadow:0 8px 20px rgba(11,18,32,0.07);border-color:#E6E8EE}}
@keyframes hx-gInt{0%,26%{box-shadow:0 10px 26px rgba(11,18,32,0.08);border-color:#E6E8EE}34%,46%{box-shadow:0 0 0 2px rgba(64,15,242,0.28),0 12px 30px rgba(64,15,242,0.30);border-color:rgba(64,15,242,0.55)}58%,100%{box-shadow:0 10px 26px rgba(11,18,32,0.08);border-color:#E6E8EE}}
@keyframes hx-gParent{0%,54%{box-shadow:0 12px 30px rgba(64,15,242,0.12)}62%,78%{box-shadow:0 0 0 3px rgba(64,15,242,0.30),0 16px 40px rgba(64,15,242,0.42)}92%,100%{box-shadow:0 12px 30px rgba(64,15,242,0.12)}}


/* keyframes hx-* adicionais (heros 06-12) */
@keyframes hx-wipe{to{left:118%}}
@keyframes hx-spinRev{to{transform:rotate(-360deg)}}
@keyframes hx-ray{to{stroke-dashoffset:-56}}

/* bancos-digitais — fade suave na troca de cor */


/* ── glass-card / glass-tags (portado do site: heroes que usam balões de vidro) ── */
.glass-tags .orbit-chip,
.glass-tags .ch-chip,
.glass-tags .dv-chip,
.glass-tags .tp-float,
.glass-tags .sc-chip,
.glass-tags .tp2-badge,
.glass-tags .api-chip,
.glass-tags .nc-chip,
.glass-tags .pres-chip,
.glass-tags .fl-timer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 12px 30px rgba(64, 15, 242, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.glass-tags .fl-timer { color: var(--ink); }
.glass-tags .fl-timer .num {
  background: linear-gradient(135deg, #5a28ff, #400FF2);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-tags .fl-timer .lbl { color: var(--ink-mute); }
.glass-tags .fl-card,
.glass-tags .glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.30)) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  -webkit-backdrop-filter: blur(8px) saturate(150%) !important;
  backdrop-filter: blur(8px) saturate(150%) !important;
  box-shadow: 0 18px 40px rgba(64, 15, 242, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}
.glass-tags .glass-card.glass-over {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.62)) !important;
  box-shadow: -26px 22px 50px rgba(3, 2, 30, 0.20), 0 14px 30px rgba(64, 15, 242, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.75) !important;
}
@media (max-width: 768px)  {
  .feature-card,
  .audience-card,
  .solution-card,
  .why-item,
  .info-card,
  .glass-card,
  .card {
    padding: 20px !important;
  }
}

/* .hero-chip-ic — quadradinho lilás com ícone roxo (padrão dos heros da home),
   usado dentro das tags flutuantes para uniformizar o ícone. */
.hero-chip-ic {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  background: rgba(64, 15, 242, .10); color: var(--azul-paytime, #400FF2);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-chip-ic svg { width: 13px; height: 13px; }
