/* Mapa nativo do banner da Central de Automacao. */
.dashboard-flow-map {
  --flow-orange: #ff8a00;
  --flow-gold: #ffd400;
  --flow-blue: #2AABEE;
  --flow-green: #25D366;
  --flow-red: #ff3434;
  --flow-magenta: #e86cff;
  position: relative;
  width: min(100%, 980px);
  height: clamp(520px, 42vw, 600px);
  min-width: 0;
  margin-left: 0;
  margin-right: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 49%, rgba(255, 138, 0, 0.18), transparent 45%),
    radial-gradient(circle at 22% 80%, rgba(32, 232, 117, 0.08), transparent 24%),
    radial-gradient(circle at 78% 80%, rgba(24, 168, 255, 0.08), transparent 24%);
}

.dashboard-flow-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 20%, transparent 78%);
  pointer-events: none;
}

.dashboard-flow-map::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 30%;
  height: 50%;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.085);
  filter: blur(34px);
  pointer-events: none;
}

.dashboard-flow-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-title {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 36px;
  border-radius: 12px;
  color: #ffb13a;
  background: rgba(8, 10, 15, 0.72);
  border: 1px solid rgba(255, 138, 0, 0.7);
  box-shadow: 0 0 22px rgba(255, 138, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: clamp(0.82rem, 1.15vw, 1.16rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.flow-title-market {
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-title-channel {
  /* Centralizado no eixo X, alinhado verticalmente ao centro dos cards de canal */
  bottom: 40px;      /* cards a bottom:20px + height:76px → centro em bottom:58px; título(36px) → 58-18=40px */
  left: 50%;
  transform: translateX(-50%);
  color: #47ff83;
  border-color: rgba(37, 211, 102, 0.72);
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flow-orbit {
  fill: none;
  stroke: rgba(255, 180, 0, 0.16);
  stroke-width: 1.2;
}

.flow-orbit-main {
  stroke-dasharray: 10 12;
}

.flow-orbit-soft {
  stroke: rgba(255, 214, 0, 0.16);
}

.flow-line {
  fill: none;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.86;
  filter: url(#flowGlow);
}

.flow-line-orange { stroke: var(--flow-orange); }
.flow-line-green { stroke: var(--flow-green); }
.flow-line-blue { stroke: var(--flow-blue); }

.flow-dot {
  filter: url(#flowGlow);
}

.flow-dot-orange { fill: var(--flow-orange); }
.flow-dot-green { fill: var(--flow-green); }
.flow-dot-blue { fill: var(--flow-blue); }

.flow-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: #fff;
  background: rgba(6, 9, 14, 0.62);
  border: 1px solid rgba(255, 138, 0, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

/* ── Grid wrappers — garantem espaçamento idêntico entre os cards ── */
.flow-market-grid {
  position: absolute;
  z-index: 3;
  top: 54px;
  left: 3%;
  right: 3%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-top: 22px; /* espaço para os badges acima dos cards */
}

.flow-channel-grid {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;                          /* mais aberto — empurra WA/TG para as laterais */
  display: grid;
  grid-template-columns: 220px 220px;
  justify-content: space-between;      /* espaço máximo no centro para o título */
}

.flow-market {
  position: relative;
  width: 100%;
  height: 96px;
  flex-direction: column;
  gap: 5px;
  padding: 18px 8px 8px;
  border-radius: 16px;
  text-align: center;
}

.flow-channel {
  position: relative;
  width: 100%;
  bottom: auto;
  height: 76px;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 16px;
}

.flow-card strong,
.flow-card small {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}

.flow-card strong {
  font-size: clamp(0.88rem, 1.25vw, 1.35rem);
  font-weight: 900;
}

.flow-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.62rem, 0.82vw, 0.88rem);
  font-weight: 800;
}

.flow-step {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.95), rgba(180, 78, 0, 0.96));
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.38);
  font-size: 0.88rem;
  font-weight: 900;
}

.flow-market .flow-step {
  top: -18px;       /* badge acima do card com 8px de clearance do ícone */
  left: 50%;
  transform: translateX(-50%);
}

.flow-market .flow-icon {
  margin-top: 10px; /* clearance mínimo 8px entre base do badge e topo do ícone */
}

.flow-channel .flow-step {
  top: -18px;
  left: 50%;        /* centralizado e espelhado nos dois cards */
  transform: translateX(-50%);
}

.flow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
  box-shadow: 0 0 18px color-mix(in srgb, currentColor 28%, transparent);
}

.shopee-card {
  border-color: rgba(255, 101, 30, 0.75);
}

.shopee-card .flow-icon {
  background: linear-gradient(135deg, #ff7a28, #f0441f);
}

.magalu-card {
  border-color: rgba(0, 174, 255, 0.75);
}

.magalu-card .flow-step,
.telegram-card .flow-step {
  background: linear-gradient(135deg, #27b9ff, #066dff);
  box-shadow: 0 0 24px rgba(24, 168, 255, 0.34);
}

.magalu-card .flow-icon {
  background: linear-gradient(135deg, #168dff, #005eea);
}

.mercado-card {
  border-color: rgba(255, 218, 0, 0.76);
}

.mercado-card .flow-step {
  background: linear-gradient(135deg, #ffe66a, #d6a800);
}

.mercado-card .flow-icon {
  color: #10213a;
  background: linear-gradient(135deg, #fff100, #ffc400);
}

.amazon-card {
  border-color: rgba(255, 154, 0, 0.72);
}

.amazon-card .flow-icon {
  color: #ffae20;
  background: #131b2b;
  font-family: Georgia, serif;
  font-size: 1.75rem;
}

.shein-card {
  border-color: rgba(255, 108, 234, 0.76);
}

.shein-card .flow-step {
  background: linear-gradient(135deg, #ff8bf0, #8d27a7);
  box-shadow: 0 0 24px rgba(232, 108, 255, 0.34);
}

.shein-card .flow-icon {
  background: linear-gradient(135deg, #111, #000);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.6rem;
}

.aliexpress-card {
  border-color: rgba(255, 52, 52, 0.78);
}

.aliexpress-card .flow-step {
  background: linear-gradient(135deg, #ff4747, #c90d0d);
  box-shadow: 0 0 24px rgba(255, 52, 52, 0.34);
}

.aliexpress-card .flow-icon {
  background: linear-gradient(135deg, #ff7a18, #ff2323);
  font-size: 0.78rem;
}

.flow-hub {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 205px;
  width: 176px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 175, 0, 0.18), transparent 36%),
    rgba(8, 9, 13, 0.86);
  border: 1px solid rgba(255, 160, 0, 0.78);
  box-shadow:
    0 0 0 12px rgba(255, 138, 0, 0.09),
    0 0 0 24px rgba(255, 138, 0, 0.045),
    0 0 68px rgba(255, 145, 0, 0.42),
    inset 0 0 20px rgba(255, 145, 0, 0.14);
}

.flow-hub-logo {
  display: block;
  width: 88%;
  height: auto;
  max-height: 88%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.flow-hub strong {
  position: relative;
  z-index: 1;
  font-size: clamp(2.15rem, 3.1vw, 3.35rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 211, 25, 0.38);
}

.flow-hub span {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: #fff7bf;
  font-size: clamp(0.72rem, 0.9vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-hub b {
  position: absolute;
  right: 10%;
  bottom: 28%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff3c25, #d90000);
  transform: rotate(-16deg);
  box-shadow: 0 0 18px rgba(255, 31, 31, 0.35);
}

.whatsapp-card {
  border-color: rgba(32, 232, 117, 0.72);
  background: rgba(7, 31, 22, 0.62);
}

.whatsapp-card .flow-step {
  background: linear-gradient(135deg, #32ff7d, #05a84c);
  box-shadow: 0 0 24px rgba(32, 232, 117, 0.34);
}

.whatsapp-card .flow-icon {
  background: linear-gradient(135deg, #25d366, #0ea85b);
}

.telegram-card {
  border-color: rgba(24, 168, 255, 0.74);
  background: rgba(8, 29, 43, 0.62);
}

.telegram-card .flow-icon {
  background: linear-gradient(135deg, #27b9ff, #0b7ddd);
}

@media (max-width: 1500px) {
  .dashboard-flow-map {
    width: min(100%, 760px);
    height: 460px;
  }

  .flow-title {
    height: 26px;
    padding: 0 20px;
  }

  .flow-market-grid {
    top: 40px;
    left: 2%;
    right: 2%;
    gap: 10px;
    padding-top: 18px;
  }

  .flow-channel-grid {
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    grid-template-columns: 165px 165px;
    justify-content: space-between;
    gap: 0;
  }

  .flow-hub {
    top: 160px;
    width: 150px;
  }

  .flow-market {
    height: 82px;
    padding: 14px 5px 7px;
    border-radius: 12px;
  }

  .flow-channel {
    height: 62px;
    gap: 8px;
    padding: 8px 12px;
  }

  .flow-step {
    width: 26px;
    height: 26px;
    font-size: 0.66rem;
  }

  .flow-market .flow-step {
    top: -14px;
  }

  .flow-channel .flow-step {
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
  }

  .flow-title-channel {
    bottom: 26px; /* centro dos cards de 62px a bottom:14px → bottom:45px; título 26px → 45-13=32px ≈ 26px */
  }

  .flow-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .flow-card strong {
    font-size: clamp(0.58rem, 0.8vw, 0.82rem);
  }

  .flow-card small {
    font-size: clamp(0.48rem, 0.62vw, 0.62rem);
  }
}

@media (max-width: 1100px) {
  .dashboard-flow-map {
    width: 100%;
    margin: 28px auto 0;
  }
}

@media (max-width: 768px) {
  .dashboard-flow-map {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 18px;
  }

  .dashboard-flow-lines,
  .flow-title {
    display: none;
  }

  .flow-market-grid,
  .flow-channel-grid {
    position: relative;
    inset: auto;
    display: contents; /* deixa os cards filhos participarem do grid do pai */
  }

  .flow-card,
  .flow-hub {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .flow-market,
  .flow-channel {
    width: 100%;
    height: 72px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 9px;
    padding: 9px 10px;
  }

  .flow-step {
    display: none;
  }

  .flow-hub {
    grid-column: 1 / -1;
    justify-self: center;
    width: 150px;
    order: 7;
    margin: 6px 0;
  }

  .whatsapp-card { order: 8; }
  .telegram-card { order: 9; }
}

@media (prefers-reduced-motion: reduce) {
  .flow-line,
  .flow-dot {
    filter: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM GOLD — núcleo com novo logo oficial (Missão Visual)
   Overrides apenas visuais; IDs e JS intactos.
   ══════════════════════════════════════════════════════════════ */

/* Núcleo central: logo premium (fundo preto do próprio logo preenche o círculo) */
.flow-hub {
  width: 184px;
  background: #05060a;
  border: 1px solid rgba(245, 181, 27, .8);
  box-shadow:
    0 0 0 10px rgba(245, 181, 27, .07),
    0 0 0 20px rgba(245, 181, 27, .035),
    0 0 56px rgba(245, 181, 27, .30),
    inset 0 0 18px rgba(245, 181, 27, .10);
}
.flow-hub-logo {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;    /* logo 1:1 preenche o círculo sem deformar nem cortar */
}

/* Títulos das seções alinhados ao dourado premium */
.flow-title { border-color: rgba(245, 181, 27, .55); color: #f5c04a; }
.flow-title-channel {
  color: #47ff83;
  border-color: rgba(37, 211, 102, .72);   /* preserva identidade verde dos canais */
}

/* Órbita mais discreta */
.flow-orbit { stroke: rgba(245, 181, 27, .13); }
.flow-orbit-soft { stroke: rgba(245, 181, 27, .10); }

/* Cards: transição suave, sem exagero */
.flow-card { transition: border-color .18s ease, box-shadow .18s ease; }
.flow-card:hover { border-color: rgba(245, 181, 27, .55); }

/* Responsivo: hub reduzido volta a valer em telas menores */
@media (max-width: 1500px) {
  .flow-hub { width: 156px; }
}

/* ══ AJUSTE FINAL DO PILOTO (aprovado com ajustes — 21/07/2026) ══ */

/* 1-2. Mais respiro entre os 6 cards; mesma largura/altura via grid */
.flow-market-grid { gap: 18px; left: 2.5%; right: 2.5%; }

/* 3. Mercado Livre: exatamente 2 linhas (uma por segmento do <br>) */
.mercado-card strong { white-space: nowrap; font-size: clamp(0.72rem, 0.92vw, 0.98rem); letter-spacing: .01em; }

/* 4. Subtítulos "Marketplace" na MESMA altura em todos os cards:
      área do nome ocupa o espaço flexível; small ancorado na base com folga */
.flow-market { padding-bottom: 11px; }
.flow-market > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  min-height: 0;
}
/* (v3) strong sem flex-centering — texto ancorado na base, nunca invade o ícone */
.flow-market > span:last-child small { margin-top: 3px; }

/* 7. Amazon: ícone serif menor — elimina impressão de card mais baixo */
.amazon-card .flow-icon { font-size: 1.3rem; line-height: 1; }

/* 9. Glow laranja do núcleo −20% (logo central mantém o tamanho) */
.dashboard-flow-map {
  background:
    radial-gradient(circle at 50% 49%, rgba(255, 138, 0, 0.12), transparent 45%),
    radial-gradient(circle at 22% 80%, rgba(32, 232, 117, 0.08), transparent 24%),
    radial-gradient(circle at 78% 80%, rgba(24, 168, 255, 0.08), transparent 24%);
}
.dashboard-flow-map::after { background: rgba(255, 138, 0, 0.06); }
.flow-hub {
  box-shadow:
    0 0 0 10px rgba(245, 181, 27, .056),
    0 0 0 20px rgba(245, 181, 27, .028),
    0 0 45px rgba(245, 181, 27, .24),
    inset 0 0 15px rgba(245, 181, 27, .08);
}

/* Legibilidade: subtítulos dos cards do mapa com mais contraste */
.flow-card small { color: rgba(255, 255, 255, 0.78); }

/* ══════════════════════════════════════════════════════════════
   MAPA v2 — ESCALA DA REFERÊNCIA (cacapromo_fluxo_marketplaces_canais)
   Cards, ícones, badges, núcleo e canais maiores; linhas mais fortes.
   Só visual — IDs, classes de JS e redrawFlowLines intactos.
   ══════════════════════════════════════════════════════════════ */

.dashboard-flow-map { height: clamp(600px, 48vw, 720px); }

/* Títulos maiores com linhas decorativas laterais + ponto (como na referência) */
.flow-title { height: 40px; padding: 0 42px; font-size: clamp(0.95rem, 1.3vw, 1.3rem); }
.flow-title::before, .flow-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 46px;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, transparent, rgba(245, 181, 27, .85));
  border-radius: 2px;
  box-shadow: 44px 0 0 1px rgba(245, 181, 27, .9);
}
.flow-title::before { right: 100%; margin-right: 12px; }
.flow-title::after  { left: 100%;  margin-left: 12px; transform: scaleX(-1); }
.flow-title-channel::before, .flow-title-channel::after {
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, .85));
  box-shadow: 44px 0 0 1px rgba(37, 211, 102, .9);
}

/* 6 marketplaces grandes */
.flow-market-grid { top: 68px; padding-top: 26px; gap: 13px; left: 1.2%; right: 1.2%; }
.flow-market { height: 158px; padding: 20px 10px 12px; border-radius: 18px; }
.flow-icon { width: 58px; height: 58px; border-radius: 14px; font-size: 1.6rem; }
.flow-icon svg { width: 100%; height: 100%; display: block; border-radius: inherit; }
.flow-market .flow-icon { margin-top: 8px; }
.flow-card strong { font-size: clamp(1rem, 1.35vw, 1.4rem); }
.flow-card small { font-size: clamp(0.7rem, 0.9vw, 0.95rem); }
.flow-step { width: 44px; height: 44px; font-size: 1rem; }
.flow-market .flow-step { top: -22px; }

/* Linhas mais presentes */
.flow-line { stroke-width: 2.6; }

/* Núcleo ~30% maior */
.flow-hub { width: 238px; top: clamp(244px, 43%, 318px); }

/* Canais maiores e simétricos */
.flow-channel-grid { grid-template-columns: 258px 258px; width: 96%; bottom: 24px; }
.flow-channel { height: 96px; gap: 16px; padding: 12px 20px; border-radius: 18px; }
.flow-channel .flow-icon { width: 56px; height: 56px; }
.flow-channel .flow-step { top: -20px; }
/* cards: bottom 24 + h96 → centro 72; título 40px → 72−20 */
.flow-title-channel { bottom: 62px; }

@media (max-width: 1500px) {
  .dashboard-flow-map { height: clamp(500px, 52vw, 600px); }
  .flow-market-grid { top: 52px; gap: 12px; padding-top: 22px; }
  .flow-market { height: 118px; padding: 16px 6px 10px; border-radius: 14px; }
  .flow-icon, .flow-channel .flow-icon { width: 44px; height: 44px; border-radius: 10px; }
  .flow-step { width: 32px; height: 32px; font-size: .78rem; }
  .flow-market .flow-step { top: -16px; }
  .flow-hub { width: 186px; top: clamp(198px, 42%, 252px); }
  .flow-channel-grid { grid-template-columns: 205px 205px; width: 92%; bottom: 18px; }
  .flow-channel { height: 78px; gap: 10px; padding: 9px 14px; }
  .flow-channel .flow-step { top: -16px; }
  .flow-title { height: 32px; padding: 0 26px; }
  .flow-title::before, .flow-title::after { width: 30px; box-shadow: 28px 0 0 1px rgba(245,181,27,.9); }
  .flow-title-channel::before, .flow-title-channel::after { box-shadow: 28px 0 0 1px rgba(37,211,102,.9); }
  .flow-title-channel { bottom: 50px; }
  .flow-card strong { font-size: clamp(.72rem, .95vw, .95rem); }
  .flow-card small { font-size: clamp(.55rem, .7vw, .72rem); }
}

/* ══ v5 — ML compacto + ambiente futurista animado ══ */

/* Ícone ML com folga interna (a elipse encostava na moldura do ícone) */
.mercado-card .flow-icon { padding: 5px; }

/* Órbitas "girando": tracejado em movimento contínuo (leve, GPU-friendly) */
@keyframes cp-orbit-flow { to { stroke-dashoffset: -440; } }
.flow-orbit-main {
  stroke: rgba(245, 181, 27, .22);
  stroke-dasharray: 10 12;
  animation: cp-orbit-flow 12s linear infinite;
}
.flow-orbit-soft {
  stroke: rgba(245, 181, 27, .18);
  stroke-dasharray: 3 12;
  animation: cp-orbit-flow 8s linear infinite reverse;
}

/* Núcleo respirando: pulso suave do halo dourado */
@keyframes cp-hub-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 10px rgba(245, 181, 27, .056),
      0 0 0 20px rgba(245, 181, 27, .028),
      0 0 45px rgba(245, 181, 27, .24),
      inset 0 0 15px rgba(245, 181, 27, .08);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(245, 181, 27, .085),
      0 0 0 24px rgba(245, 181, 27, .04),
      0 0 62px rgba(245, 181, 27, .34),
      inset 0 0 20px rgba(245, 181, 27, .12);
  }
}
.flow-hub { animation: cp-hub-pulse 4.5s ease-in-out infinite; }

/* Energia sutil nas linhas e pontos de conexão */
@keyframes cp-line-glow { 0%, 100% { opacity: .74; } 50% { opacity: 1; } }
.flow-line { animation: cp-line-glow 3.8s ease-in-out infinite; }
@keyframes cp-dot-pulse { 0%, 100% { opacity: .75; } 50% { opacity: 1; } }
.flow-dot { animation: cp-dot-pulse 2.6s ease-in-out infinite; }

/* (v8) trava de reduced-motion removida a pedido do dono — movimento sempre ativo */

/* ══ v6 — anéis girando em volta do núcleo (movimento visível) ══ */
@keyframes cp-spin { to { transform: rotate(360deg); } }

/* O logo é 1:1 com fundo preto: recorte circular no próprio img permite
   liberar o overflow do hub para os anéis externos girarem em volta. */
.flow-hub { overflow: visible; }
.flow-hub .flow-hub-logo { border-radius: 50%; }

.flow-hub::before,
.flow-hub::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
/* Anel tracejado girando (horário) */
.flow-hub::before {
  inset: -14px;
  border: 3px dashed rgba(245, 181, 27, .72);
  animation: cp-spin 10s linear infinite;
}
/* Anel "cometa" girando ao contrário — cabeça dourada brilhante */
.flow-hub::after {
  inset: -28px;
  border: 2px solid rgba(245, 181, 27, .14);
  border-top-color: #ffd76a;
  border-right-color: rgba(245, 181, 27, .55);
  box-shadow: 0 -4px 18px -4px rgba(245, 181, 27, .75);
  animation: cp-spin 5.5s linear infinite reverse;
}

@media (max-width: 1500px) {
  .flow-hub::before { inset: -10px; }
  .flow-hub::after  { inset: -19px; }
}


