/* ============================================================================
 * Login AffiliateFlow — versao com imagem de fundo.
 * A imagem ja traz toda a composicao visual (cards de produto, linhas neon,
 * icones flutuantes). Aqui adicionamos APENAS overlay de leitura + texto
 * persuasivo na esquerda + card de login sobre o retangulo claro da direita.
 * 100dvh, zero scroll, mobile responsivo.
 * ========================================================================== */

* { box-sizing: border-box; }
[hidden] { display: none !important; }

:root {
  /* Paleta base do briefing */
  --bg-deep: #08051f;
  --bg-mid: #12082e;
  --bg-elev: #1b1246;
  --accent: #8b4dff;          /* roxo principal */
  --accent-2: #6c63ff;         /* roxo secundario */
  --neon-cyan: #4edcff;
  --neon-pink: #ff6fae;
  --text-soft: rgba(255, 255, 255, 0.65);

  /* Gradients principais */
  --grad-btn: linear-gradient(90deg, #6c63ff 0%, #8b3dff 100%);
  --grad-icon: linear-gradient(135deg, #6c63ff 0%, #8b4dff 60%, #6f3dff 100%);
  --grad-text: linear-gradient(135deg, #ffffff 0%, #e9d5ff 50%, #c4b5fd 100%);
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  height: 100dvh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 14.5px;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Body solido escuro como fallback — imagem fica no shell */
  background: var(--bg-deep);
  position: relative;
}

/* ─── Shell — fundo escuro uniforme + grid 2-col ────────────── */
/* Fundo escuro puro (sem imagem competindo) — os elementos neon
   HTML/CSS sao os protagonistas visuais. */
.login-shell {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(460px, 560px);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: 48px clamp(48px, 8vw, 120px) 48px clamp(40px, 5vw, 68px);
  background:
    /* Vinheta sutil pras bordas escurecerem */
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.55) 100%),
    /* Tom roxo profundo no canto direito */
    radial-gradient(circle at 78% 50%, rgba(35, 18, 75, 0.55), transparent 55%),
    /* Base degradê escuro */
    linear-gradient(140deg, #060214 0%, #0a0420 38%, #100726 70%, #160a32 100%);
}

/* Glow ambiente atras dos efeitos — 4 fontes neon + escurecimento na esquerda */
.login-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    /* Glow ciano atras do hub central */
    radial-gradient(circle at 56% 50%, rgba(78, 220, 255, 0.24), transparent 24%),
    /* Glow roxo principal envolvendo hub + lado do card */
    radial-gradient(circle at 63% 44%, rgba(139, 77, 255, 0.30), transparent 30%),
    /* Glow rosa no canto superior direito */
    radial-gradient(circle at 86% 22%, rgba(255, 111, 174, 0.18), transparent 28%),
    /* Glow verde atras dos destinos WhatsApp/Telegram */
    radial-gradient(circle at 84% 72%, rgba(37, 211, 102, 0.10), transparent 26%),
    /* Escurecimento esquerdo pra leitura do texto */
    linear-gradient(90deg, rgba(2, 1, 12, 0.52), transparent 64%);
}

/* ─── ESQUERDA: brand + headline + benefits + trust ──────── */
.login-left {
  position: relative;
  z-index: 3;          /* acima do ::after de glow do shell */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.6vh, 30px);
  max-width: 720px;
}

/* ─── CARD LAYER — grid child, justificado a direita ─────── */
.login-card-layer {
  position: relative;
  z-index: 4;
  width: min(400px, 28vw);
  max-width: 400px;
  min-width: 340px;
  justify-self: end;
  align-self: center;
}

/* Tagline mobile — oculta no desktop por padrao */
.mobile-tagline { display: none; }

/* ─── Tablet intermediario (entre 768 e 1100) ─── */
@media (max-width: 1100px) and (min-width: 769px) {
  .login-shell {
    grid-template-columns: minmax(340px, 1fr) minmax(420px, 480px);
    gap: clamp(24px, 4vw, 48px);
    padding: 40px clamp(28px, 4vw, 48px);
  }
  .headline h1 { font-size: clamp(32px, 4vw, 48px); }
}

/* ─── MOBILE: tela limpa focada no login (<=768px) ─── */
@media (max-width: 768px) {
  html, body { overflow: auto; height: auto; }
  body {
    min-height: 100dvh;
    height: auto;
  }

  /* Shell vira coluna unica centralizada — fundo escuro uniforme */
  .login-shell {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background:
      radial-gradient(ellipse at top, rgba(35, 18, 75, 0.40), transparent 60%),
      linear-gradient(180deg, #060214 0%, #0a0420 50%, #100726 100%);
  }
  .login-shell::after { display: none; }

  /* Esconde lado esquerdo inteiro */
  .login-left { display: none; }

  /* Card layer centralizado no fluxo */
  .login-card-layer {
    position: relative;
    width: min(100%, 420px);
    max-width: 420px;
    min-width: 0;
    justify-self: center;
  }

  .login-card {
    padding: 28px 22px;
    border-radius: 24px;
    max-height: none;
  }

  .mobile-tagline {
    display: block;
    text-align: center;
    margin: 18px 0 0;
    padding: 0 12px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  }
}

/* Mobile pequeno (<=380px) — aperta um pouco mais */
@media (max-width: 380px) {
  .login-card { padding: 24px 18px; border-radius: 20px; }
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-lg);
  background: var(--grad-icon);
  color: white;
  box-shadow: 0 10px 28px rgba(139, 77, 255, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.30);
  flex-shrink: 0;
}
.brand-logo svg { width: 19px; height: 19px; }
.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.40);
}

.headline { max-width: 680px; }
.headline h1 {
  margin: 0 0 clamp(14px, 2vh, 22px);
  font-size: clamp(36px, 4.1vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #f4ecff;
  text-shadow: 0 0 32px rgba(139, 77, 255, 0.18);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.50));
}
.headline p {
  margin: 0;
  font-size: clamp(15px, 0.9vw + 0.4vh, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 650px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.40);
}

/* Benefits — chips em linha */
.benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: rgba(139, 77, 255, 0.14);
  border: 1px solid rgba(139, 77, 255, 0.32);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.chip-check {
  display: inline-flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.24);
  color: #4ade80;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.70);
  flex-shrink: 0;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.30);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
}
.trust-item:nth-child(2) .trust-dot { background: #38bdf8; box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22); }
.trust-item:nth-child(3) .trust-dot { background: #a78bfa; box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.22); }

/* ─── DIREITA: card login ─────────────────────────────────── */
.login-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.login-card {
  width: 100%;
  max-width: none;  /* quem manda a largura agora eh .login-card-layer */
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  /* Glassmorphism roxo escuro premium */
  background: rgba(20, 14, 50, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: clamp(22px, 3vh, 28px) clamp(22px, 2.2vw, 28px) clamp(18px, 2.6vh, 22px);
  /* Glow externo roxo + ciano sutil + highlight inset no topo */
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.50),
    0 0 100px rgba(139, 77, 255, 0.26),
    0 0 48px rgba(78, 220, 255, 0.10),
    0 0 0 1px rgba(167, 139, 250, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}
.login-card::-webkit-scrollbar { width: 5px; }
.login-card::-webkit-scrollbar-track { background: transparent; }
.login-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 3px;
}

.login-card-head {
  text-align: center;
  margin-bottom: clamp(12px, 1.8vh, 16px);
}
.login-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 4.6vh, 48px);
  height: clamp(40px, 4.6vh, 48px);
  border-radius: var(--radius-lg);
  background: var(--grad-icon);
  margin-bottom: clamp(7px, 1vh, 10px);
  box-shadow: 0 16px 38px rgba(139, 77, 255, 0.50),
              inset 0 1px 0 rgba(255, 255, 255, 0.30);
}
.login-card-icon svg { width: clamp(18px, 2vh, 22px); height: clamp(18px, 2vh, 22px); color: white; }
.login-card-head h2 {
  margin: 0 0 3px;
  font-size: clamp(16px, 1.7vh, 19px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: white;
}
.login-card-head p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
}

.login-form { display: flex; flex-direction: column; gap: clamp(11px, 1.5vh, 14px); }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: rgba(255, 255, 255, 0.60);
  padding-left: 2px;
}
.field-input-wrap { position: relative; display: flex; align-items: center; }
.field-input-icon {
  position: absolute;
  left: 14px;
  display: inline-flex;
  color: rgba(255, 255, 255, 0.50);
  pointer-events: none;
}
.field-input-icon svg { width: 16px; height: 16px; }
.field-input-wrap input {
  width: 100%;
  background: rgba(10, 8, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  border-radius: var(--radius-lg);
  /* padding-right alto pra deixar espaco pro icone do gerenciador de senhas
     do Chrome (Google Password Manager) sem sobrepor o texto. */
  padding: 13px 44px 13px 42px;
  font: inherit;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: background 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.field-input-wrap input::placeholder { color: rgba(255, 255, 255, 0.38); }
.field-input-wrap input:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(14, 10, 38, 0.75);
}
.field-input-wrap input:focus {
  outline: none;
  background: rgba(14, 10, 42, 0.85);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 77, 255, 0.28);
}
/* Anula o background amarelado do autofill do Chrome */
.field-input-wrap input:-webkit-autofill,
.field-input-wrap input:-webkit-autofill:hover,
.field-input-wrap input:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0 1000px rgba(10, 8, 30, 0.95) inset;
  caret-color: white;
  transition: background-color 5000s ease-in-out 0s;
}

.forgot-row { display: flex; justify-content: flex-end; margin-top: -2px; }
.forgot-link {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color 0.18s;
}
.forgot-link:hover { color: #c4b5fd; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: clamp(13px, 1.8vh, 15px) 22px;
  margin-top: 6px;
  background: var(--grad-btn);  /* linear-gradient(90deg, #6c63ff, #8b3dff) */
  border: 0;
  border-radius: var(--radius-lg);
  color: white;
  font: inherit;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 16px 32px rgba(139, 77, 255, 0.48),
    0 2px 6px rgba(108, 99, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  transition: transform 0.18s, filter 0.18s, box-shadow 0.22s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.10);
  box-shadow:
    0 22px 44px rgba(139, 77, 255, 0.58),
    0 4px 12px rgba(108, 99, 255, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { width: 16px; height: 16px; }

.login-foot {
  margin-top: clamp(12px, 1.8vh, 16px);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}
.login-foot a { color: #c4b5fd; font-weight: 700; text-decoration: none; }
.login-foot a:hover { text-decoration: underline; }

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: clamp(12px, 1.6vh, 16px);
  padding-top: clamp(10px, 1.4vh, 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.50);
  font-weight: 500;
}
.secure-badge svg { width: 13px; height: 13px; color: #4ade80; }

.flash-stack { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.flash {
  padding: 10px 13px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid transparent;
}
.flash-danger {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}
.flash-success {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.35);
  color: #86efac;
}
.flash-info, .flash-warning {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.35);
  color: #bae6fd;
}

/* ─── Adapta por altura ──────────────────────────────────── */
@media (max-height: 720px) {
  .headline h1 { font-size: clamp(22px, 3vh, 30px); }
}
@media (max-height: 600px) {
  .benefits-row { display: none; }
  .login-left { gap: 14px; }
}
@media (max-height: 500px) {
  .trust-row { display: none; }
}

/* Mobile completo esta no bloco @media (max-width: 768px) acima. */


/* ============================================================================
 * CAMADA NEON DECORATIVA — atras do conteudo principal.
 * Z-INDEX: shell-bg 0 / overlay ::after 1 / .automation-neon-bg 2
 *          .login-left 3 / .login-card-layer 4
 * ========================================================================== */

.automation-neon-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Linhas neon SVG ocupando tela inteira */
.neon-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;  /* mais presenca; halo soft adiciona profundidade extra */
}
.neon-glow-layer { opacity: 0.85; mix-blend-mode: screen; }

/* ─── HUB central de automacao — orb maior + 2 aneis pulsando ─── */
.float-hub {
  position: absolute;
  top: 51%;
  left: 54%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.95;
}
.float-hub-orb {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 77, 255, 0.95), rgba(39, 24, 100, 0.45));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow:
    0 0 36px rgba(139, 77, 255, 0.65),
    0 0 90px rgba(78, 220, 255, 0.28),
    inset 0 0 24px rgba(255, 255, 255, 0.14);
  animation: hubFloat 5s ease-in-out infinite;
}
.float-hub-orb::before,
.float-hub-orb::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(167, 139, 250, 0.50);
  animation: hubRipple 3s ease-out infinite;
}
.float-hub-orb::after { animation-delay: 1.5s; border-color: rgba(78, 220, 255, 0.40); }
.float-hub-orb svg {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.55));
}
.float-hub-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 0 14px rgba(139, 77, 255, 0.75),
    0 0 26px rgba(78, 220, 255, 0.35);
}
@keyframes hubFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes hubRipple {
  0% { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ─── Cards flutuantes de oferta — mais presenca ─── */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(24, 17, 60, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(139, 77, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  width: 230px;
  opacity: 0.86;
  animation: floatY 7s ease-in-out infinite;
}
.float-card.float-ml   { top: 20%; left: 39%; animation-delay: 0s;    opacity: 0.88; }
.float-card.float-sp   { top: 41%; left: 50%; animation-delay: -1.8s; opacity: 0.78; }
.float-card.float-az   { top: 64%; left: 36%; animation-delay: -3.6s; opacity: 0.84; }
.float-card.float-link { top: 62%; left: 58%; animation-delay: -5.4s; opacity: 0.88;
  border-color: rgba(78, 220, 255, 0.34);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(78, 220, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Thumb com iniciais (ML/SH/AMZ/LINK) */
.fc-thumb {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(139, 77, 255, 0.30), rgba(108, 99, 255, 0.18));
  border: 1px solid rgba(139, 77, 255, 0.34);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.fc-thumb-yellow {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.30), rgba(245, 158, 11, 0.18));
  border-color: rgba(250, 204, 21, 0.40);
}
.fc-thumb-pink {
  background: linear-gradient(135deg, rgba(255, 111, 174, 0.32), rgba(255, 111, 174, 0.14));
  border-color: rgba(255, 111, 174, 0.40);
}
.fc-thumb-orange {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.32), rgba(249, 115, 22, 0.16));
  border-color: rgba(251, 146, 60, 0.40);
}
.fc-thumb-cyan {
  background: linear-gradient(135deg, rgba(78, 220, 255, 0.30), rgba(78, 220, 255, 0.12));
  border-color: rgba(78, 220, 255, 0.40);
}
.fc-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.fc-tag {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.60);
}
.fc-title {
  font-size: 12px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fc-meta { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.fc-price {
  font-size: 12px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
}
.fc-mini {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
}
.fc-mini-ok { color: #4ade80; font-weight: 700; }
.fc-discount {
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(251, 146, 60, 0.16);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.32);
}
.fc-discount-pink {
  background: rgba(255, 111, 174, 0.16);
  color: #ff6fae;
  border-color: rgba(255, 111, 174, 0.32);
}
.fc-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.42);
  animation: badgePulse 2.4s ease-in-out infinite;
}
.fc-badge-inline {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2px 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  box-shadow: 0 3px 8px rgba(239, 68, 68, 0.38);
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.42), 0 0 0 0 rgba(239, 68, 68, 0.45);
  }
  50% {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.55), 0 0 0 6px rgba(239, 68, 68, 0);
  }
}
.fc-discount, .fc-discount-pink {
  animation: badgePulse 3s ease-in-out infinite;
}

/* ─── Destinos: WhatsApp / Telegram / Grupo (direita) ─── */
.dest-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  background: rgba(24, 17, 60, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  width: 200px;
  opacity: 0.88;
  animation: floatY 7s ease-in-out infinite;
}
.dest-card .dest-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-card .dest-icon svg { width: 16px; height: 16px; }
.dest-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.dest-title {
  font-size: 11.5px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dest-sub {
  font-size: 9.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
.dest-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  box-shadow:
    0 0 14px rgba(74, 222, 128, 0.70),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

.dest-card.dest-wa {
  top: 23%;
  right: 2.5%;
  border-color: rgba(37, 211, 102, 0.40);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(37, 211, 102, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  animation-delay: 0s;
}
.dest-card.dest-wa .dest-icon {
  color: #25d366;
  background: rgba(37, 211, 102, 0.20);
  border: 1px solid rgba(37, 211, 102, 0.40);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.32);
}

.dest-card.dest-tg {
  top: 54%;
  right: 4%;
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(56, 189, 248, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  animation-delay: -2.5s;
}
.dest-card.dest-tg .dest-icon {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.20);
  border: 1px solid rgba(56, 189, 248, 0.40);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.32);
}

.dest-card.dest-group {
  bottom: 12%;
  right: 2.5%;
  border-color: rgba(167, 139, 250, 0.40);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(139, 77, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  animation-delay: -5s;
}
.dest-card.dest-group .dest-icon {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.20);
  border: 1px solid rgba(167, 139, 250, 0.40);
  box-shadow: 0 0 12px rgba(139, 77, 255, 0.32);
}

/* ─── Mini icones decorativos (preenche o vazio) ─── */
.mini-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0.45;
  animation: floatY 6s ease-in-out infinite;
}
.mini-icon svg { width: 16px; height: 16px; }
.mini-icon.mi-tag  { top: 10%; left: 32%; color: #fb923c; animation-delay: -1s; }
.mini-icon.mi-cart { bottom: 14%; left: 50%; color: #c4b5fd; animation-delay: -3s; }
.mini-icon.mi-box  { top: 50%; left: 28%; color: #93c5fd; animation-delay: -2s; }

/* ─── Particulas neon (14 pontos pequenos animados) ─── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat 6s ease-in-out infinite;
}
/* tamanho default; cada particula sobrescreve cor e size */
.particle { width: 3px; height: 3px; opacity: 0.45; }

.particle.p-1  { top: 18%; left: 24%; width: 4px; height: 4px; background: #4edcff; box-shadow: 0 0 10px #4edcff, 0 0 20px #4edcff; animation-delay: 0s; }
.particle.p-2  { top: 38%; left: 70%; width: 5px; height: 5px; background: #ff6fae; box-shadow: 0 0 10px #ff6fae, 0 0 18px #ff6fae; animation-delay: -1.5s; }
.particle.p-3  { top: 70%; left: 18%; width: 4px; height: 4px; background: #8b4dff; box-shadow: 0 0 10px #8b4dff, 0 0 18px #8b4dff; animation-delay: -3s; }
.particle.p-4  { top: 26%; left: 62%; width: 4px; height: 4px; background: #25d366; box-shadow: 0 0 10px #25d366, 0 0 16px #25d366; animation-delay: -4.5s; }
.particle.p-5  { top: 82%; left: 55%; width: 3px; height: 3px; background: #4edcff; box-shadow: 0 0 8px #4edcff, 0 0 16px #4edcff;  animation-delay: -2s; }
.particle.p-6  { top: 12%; left: 48%; width: 3px; height: 3px; background: #ff6fae; box-shadow: 0 0 8px #ff6fae, 0 0 14px #ff6fae;  animation-delay: -2.8s; }
.particle.p-7  { top: 32%; left: 28%; width: 2px; height: 2px; background: #4edcff; box-shadow: 0 0 6px #4edcff, 0 0 12px #4edcff;  animation-delay: -0.8s; }
.particle.p-8  { top: 52%; left: 28%; width: 3px; height: 3px; background: #8b4dff; box-shadow: 0 0 7px #8b4dff, 0 0 14px #8b4dff;  animation-delay: -3.6s; }
.particle.p-9  { top: 74%; left: 64%; width: 4px; height: 4px; background: #25d366; box-shadow: 0 0 10px #25d366, 0 0 18px #25d366; animation-delay: -1.2s; }
.particle.p-10 { top: 60%; left: 75%; width: 3px; height: 3px; background: #4edcff; box-shadow: 0 0 8px #4edcff, 0 0 14px #4edcff;  animation-delay: -5.4s; }
.particle.p-11 { top: 88%; left: 32%; width: 2px; height: 2px; background: #ff6fae; box-shadow: 0 0 6px #ff6fae, 0 0 12px #ff6fae;  animation-delay: -2.2s; }
.particle.p-12 { top: 8%;  left: 70%; width: 3px; height: 3px; background: #8b4dff; box-shadow: 0 0 7px #8b4dff, 0 0 14px #8b4dff;  animation-delay: -4s; }
.particle.p-13 { top: 44%; left: 80%; width: 2px; height: 2px; background: #25d366; box-shadow: 0 0 5px #25d366, 0 0 10px #25d366;  animation-delay: -3.2s; }
.particle.p-14 { top: 22%; left: 56%; width: 3px; height: 3px; background: #4edcff; box-shadow: 0 0 7px #4edcff, 0 0 12px #4edcff;  animation-delay: -1.8s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.30; }
  50% { transform: translateY(-10px) translateX(4px); opacity: 0.85; }
}

/* ─── Responsive: simplifica em tablet/mobile ────────────────── */
@media (max-width: 1100px) {
  .float-card { transform: scale(0.85); opacity: 0.62; }
  .float-card.float-az,
  .float-card.float-link { display: none; }
  .float-hub-label { display: none; }
  .float-hub-orb { width: 100px; height: 100px; }
  .float-hub-orb svg { width: 38px; height: 38px; }
  .neon-lines { opacity: 0.50; }
  .dest-card { opacity: 0.70; transform: scale(0.90); }
  /* Reduz partículas pela metade */
  .particle.p-6, .particle.p-7, .particle.p-10,
  .particle.p-11, .particle.p-12, .particle.p-14 { display: none; }
}

@media (max-width: 768px) {
  /* Mobile: oculta cards de marketplace e destinos — mantem so glow do hub */
  .automation-neon-bg { opacity: 0.45; }
  .float-card { display: none; }
  .dest-card { display: none; }
  .mini-icon { display: none; }
  .particle { display: none; }
  .float-hub { top: 28%; left: 50%; opacity: 0.45; }
  .float-hub-orb { width: 64px; height: 64px; }
  .float-hub-orb svg { width: 24px; height: 24px; }
  .neon-lines { opacity: 0.30; }
}
