
/* ============================================
   CAPABILITIES — bloco de qualidade/casos de uso
   ============================================ */
.arsenal .capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0 48px;
}
@media (max-width: 880px) {
  .arsenal .capabilities { grid-template-columns: 1fr; }
}

.arsenal .cap-card {
  position: relative;
  background: linear-gradient(180deg, #161616 0%, #101010 100%);
  border: 1px solid #232323;
  border-radius: 16px;
  padding: 28px 28px 24px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s;
}
.arsenal .cap-card::before {
  content: "";
  position: absolute; inset: -1px;
  background: radial-gradient(600px 200px at 0% 0%, rgba(249,115,22,.10), transparent 60%);
  pointer-events: none;
}
.arsenal .cap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.45);
  box-shadow: 0 24px 60px -30px rgba(249,115,22,.35);
}

.arsenal .cap-featured {
  background:
    linear-gradient(180deg, rgba(249,115,22,.08) 0%, rgba(249,115,22,.02) 60%, #101010 100%);
  border-color: rgba(249,115,22,.35);
}
.arsenal .cap-featured::after {
  content: "FLUXO EXCLUSIVO NINJABR";
  position: absolute; top: 16px; right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: .18em;
  color: var(--orange);
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.35);
  padding: 4px 8px; border-radius: 999px;
}

.arsenal .cap-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(249,115,22,.10);
  border: 1px solid rgba(249,115,22,.30);
  border-radius: 12px;
  color: var(--orange);
  margin-bottom: 18px;
}
.arsenal .cap-icon svg { width: 26px; height: 26px; }

.arsenal .cap-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .22em;
  color: var(--orange);
  margin-bottom: 8px;
}
.arsenal .cap-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.arsenal .cap-card p {
  font-size: 14px;
  line-height: 1.55;
  color: #b8b3a8;
  margin-bottom: 16px;
}
.arsenal .cap-card p strong { color: #fff; }

.arsenal .cap-stack {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 14px;
  border-top: 1px dashed #2a2a2a;
}
.arsenal .cap-stack span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: #9c9588;
  background: #1a1a1a;
  border: 1px solid #262626;
  padding: 4px 8px;
  border-radius: 6px;
}

/* divider antes da lista completa */
.arsenal .arsenal-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 12px 0 24px;
}
.arsenal .arsenal-divider .ad-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
}
.arsenal .arsenal-divider .ad-text {
  font-size: 10px; letter-spacing: .25em;
  color: #6a6356;
}

/* Logos reais nos tool-cards */
.arsenal .tool-card .tool-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1c1c1c, #141414);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0;
  margin-bottom: 14px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.arsenal .tool-card .tool-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.arsenal .tool-card:hover .tool-icon {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(249,115,22,.55);
  box-shadow: 0 12px 24px -12px rgba(249,115,22,.45), inset 0 1px 0 rgba(255,255,255,.06);
}

/* ============================================
   CAPABILITIES — refinamento premium
   ============================================ */
.arsenal .cap-card {
  padding: 32px 32px 28px;
  background:
    radial-gradient(800px 300px at 100% 0%, rgba(249,115,22,.06), transparent 55%),
    linear-gradient(180deg, #181818 0%, #0e0e0e 100%);
  border: 1px solid #262626;
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 30px 60px -40px rgba(0,0,0,.8);
}
.arsenal .cap-card::before {
  background: radial-gradient(700px 240px at 0% 0%, rgba(249,115,22,.14), transparent 55%);
}
/* glow line bottom on hover */
.arsenal .cap-card::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,.6), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.arsenal .cap-card:hover::after { opacity: 1; }
.arsenal .cap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,.5);
  box-shadow:
    0 40px 80px -40px rgba(249,115,22,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* Featured card: keep brand label using a different selector since ::after is now used */
.arsenal .cap-featured {
  background:
    radial-gradient(800px 320px at 100% 0%, rgba(249,115,22,.18), transparent 55%),
    linear-gradient(180deg, rgba(249,115,22,.08) 0%, #100c08 100%);
  border-color: rgba(249,115,22,.45);
}
.arsenal .cap-featured::after {
  content: "";
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,.9), transparent);
}
.arsenal .cap-featured .cap-flag {
  position: absolute; top: 18px; right: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: .22em;
  color: var(--orange);
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.4);
  padding: 5px 10px; border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(249,115,22,.25);
}

.arsenal .cap-icon {
  width: 56px; height: 56px;
  background:
    radial-gradient(circle at 30% 30%, rgba(249,115,22,.35), rgba(249,115,22,.05) 70%);
  border: 1px solid rgba(249,115,22,.45);
  border-radius: 14px;
  box-shadow:
    0 12px 28px -12px rgba(249,115,22,.5),
    inset 0 1px 0 rgba(255,255,255,.08);
  margin-bottom: 22px;
}
.arsenal .cap-icon svg { width: 28px; height: 28px; }

.arsenal .cap-card h3 { font-size: 24px; margin-bottom: 12px; }
.arsenal .cap-card p { font-size: 14.5px; color: #c4beb1; }

.arsenal .cap-stack span {
  background: linear-gradient(180deg, #1c1c1c, #161616);
  border: 1px solid #2a2a2a;
  color: #c4beb1;
  transition: border-color .2s, color .2s, transform .2s;
}
.arsenal .cap-stack span:hover {
  border-color: rgba(249,115,22,.5);
  color: var(--orange);
  transform: translateY(-1px);
}

/* tool-use line — frase de uso real */
.arsenal .tool-card .tool-use {
  font-size: 13px;
  line-height: 1.45;
  color: #b8b3a8;
  margin: 8px 0 12px;
  min-height: 38px;
}
/* ===========================================================
   NinjaBR Hub — POLISH OVERLAY
   Camada de refinamento por cima do template existente.
   Aplica imagens cinematográficas, melhor tipografia, glow,
   hover lifts e micro-interações premium.
   =========================================================== */

/* HERO — fundo cinematográfico do command center */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: 96px !important;
  padding-bottom: 120px !important;
  min-height: 92vh;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.85) 60%, #0D0D0D 100%),
    url("/hub-landing/img-hero.jpg") center 25% / cover no-repeat;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(800px 500px at 80% 10%, rgba(249,115,22,0.18), transparent 60%),
    radial-gradient(600px 400px at 10% 70%, rgba(249,115,22,0.08), transparent 60%);
  pointer-events: none;
}

/* Hero typography boost */
.hero-headline {
  font-size: clamp(40px, 5.6vw, 84px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.025em !important;
  font-weight: 700 !important;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  max-width: 1100px;
}
.hero-headline em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(232,230,227,0.85);
}
.hero-sub {
  font-size: clamp(16px, 1.25vw, 19px) !important;
  line-height: 1.65 !important;
  max-width: 720px;
  color: rgba(232,230,227,0.78) !important;
}

/* Hero counters — glass card */
.hero-counters {
  background: linear-gradient(180deg, rgba(20,20,20,0.65), rgba(8,8,8,0.85)) !important;
  border: 1px solid rgba(249,115,22,0.25) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 60px rgba(249,115,22,0.08) inset;
  padding: 28px 32px !important;
}
.counter-number {
  font-size: clamp(48px, 5vw, 72px) !important;
  font-weight: 700 !important;
  background: linear-gradient(180deg, #FFB37A 0%, #F97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(249,115,22,0.35);
}

/* CTA primário — glow magnético */
.btn-primary {
  background: linear-gradient(180deg, #FF8533 0%, #F97316 100%) !important;
  border: none !important;
  color: #0a0a0a !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  box-shadow:
    0 10px 40px -8px rgba(249,115,22,0.55),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease !important;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 16px 60px -6px rgba(249,115,22,0.75),
    inset 0 1px 0 rgba(255,255,255,0.4);
  filter: brightness(1.08);
}
.btn-primary .arrow { transition: transform .25s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  backdrop-filter: blur(10px);
  transition: all .25s ease !important;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(249,115,22,0.5) !important;
}

/* ARSENAL — fundo sutil de constelação */
.arsenal {
  position: relative;
  isolation: isolate;
}
.arsenal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #0D0D0D 0%, rgba(13,13,13,0.7) 30%, rgba(13,13,13,0.7) 70%, #0D0D0D 100%),
    url("/hub-landing/img-arsenal.jpg") center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.section-title {
  font-size: clamp(34px, 3.6vw, 56px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
}
.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(232,230,227,0.7);
}

/* Tool cards — premium hover lift + glow */
.tool-card {
  position: relative;
  background: linear-gradient(180deg, rgba(31,31,31,0.6), rgba(20,20,20,0.4)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(8px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s, background .35s !important;
  overflow: hidden;
}
.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(249,115,22,0.18), transparent 50%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.45) !important;
  box-shadow: 0 24px 60px -20px rgba(249,115,22,0.35), 0 0 0 1px rgba(249,115,22,0.2) inset;
}
.tool-card:hover::before { opacity: 1; }
.tool-card .tool-icon {
  font-size: 32px !important;
  filter: drop-shadow(0 4px 12px rgba(249,115,22,0.4));
  transition: transform .35s;
}
.tool-card:hover .tool-icon { transform: scale(1.15) rotate(-4deg); }
.tool-savings {
  color: #28B362 !important;
  font-weight: 600 !important;
}

/* Tabs — segmentos elegantes */
.arsenal-tabs .tab {
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: rgba(20,20,20,0.6) !important;
  transition: all .25s ease !important;
  letter-spacing: 0.08em;
}
.arsenal-tabs .tab:hover {
  border-color: rgba(249,115,22,0.4) !important;
  color: #FFB37A !important;
}
.arsenal-tabs .tab.active {
  background: linear-gradient(180deg, #FF8533, #F97316) !important;
  color: #0a0a0a !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px -6px rgba(249,115,22,0.6);
}

/* NINJASPY — fundo dashboard */
.ninjaspy {
  position: relative;
  isolation: isolate;
}
.ninjaspy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #0D0D0D 0%, rgba(13,13,13,0.4) 50%, #0D0D0D 100%),
    linear-gradient(180deg, #0D0D0D 0%, rgba(13,13,13,0.6) 30%, rgba(13,13,13,0.6) 70%, #0D0D0D 100%),
    url("/hub-landing/img-spy.jpg") right center / cover no-repeat;
  opacity: 0.7;
  pointer-events: none;
}
.spy-card {
  background: linear-gradient(180deg, rgba(31,31,31,0.7), rgba(15,15,15,0.6)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(10px);
  transition: all .3s ease !important;
}
.spy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.4) !important;
  box-shadow: 0 20px 50px -16px rgba(249,115,22,0.3);
}

/* NUMBERS — seção dos 54, agora WOW */
.numbers {
  position: relative;
  isolation: isolate;
  padding: 140px 0 !important;
}
.numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 50% 50%, rgba(249,115,22,0.18), transparent 60%),
    linear-gradient(180deg, #0D0D0D 0%, rgba(13,13,13,0.5) 40%, rgba(13,13,13,0.5) 60%, #0D0D0D 100%),
    url("/hub-landing/img-54.jpg") center / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
}
.numbers::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(249,115,22,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.number-block {
  background: linear-gradient(180deg, rgba(20,20,20,0.7), rgba(8,8,8,0.85)) !important;
  border: 1px solid rgba(249,115,22,0.18) !important;
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 36px !important;
  transition: all .4s ease;
}
.number-block:hover {
  border-color: rgba(249,115,22,0.5) !important;
  transform: translateY(-4px);
  box-shadow: 0 30px 80px -20px rgba(249,115,22,0.4);
}
.big-number {
  font-size: clamp(72px, 8vw, 128px) !important;
  font-weight: 700 !important;
  line-height: 0.95 !important;
  background: linear-gradient(180deg, #FFC299 0%, #F97316 60%, #C8590E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(249,115,22,0.4);
  letter-spacing: -0.04em !important;
}

/* PRICING — destaque do plano principal */
.pricing-card.featured,
.pricing-card[data-featured="true"] {
  border-color: rgba(249,115,22,0.6) !important;
  box-shadow: 0 30px 80px -20px rgba(249,115,22,0.45);
}
.pricing-card {
  transition: all .35s ease !important;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,0.5) !important;
}

/* Section spacing global */
section { padding: 120px 0 !important; }
.hero { padding-top: 60px !important; }
@media (max-width: 768px) {
  section { padding: 80px 0 !important; }
}

/* Smooth reveal for blocks already using data-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection {
  background: rgba(249,115,22,0.4);
  color: #fff;
}

/* Scrollbar premium */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #F97316, #C8590E);
  border-radius: 8px;
}

/* ============== NICHES SECTION ============== */
.niches {
  max-width: 1280px;
  margin: 80px auto 40px;
  padding: 60px 32px;
  position: relative;
}
.niches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1100px;
  margin: 36px auto 24px;
}
.niche-chip {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(20,20,20,0.9));
  border: 1px solid rgba(249,115,22,0.18);
  color: #f5f5f5;
  transition: all .25s ease;
  cursor: default;
  white-space: nowrap;
}
.niche-chip:hover {
  border-color: rgba(249,115,22,0.55);
  background: linear-gradient(135deg, rgba(249,115,22,0.18), rgba(249,115,22,0.06));
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -8px rgba(249,115,22,0.5);
}
.niches-foot {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-top: 24px;
}

/* ============== PRICING FINEPRINT ============== */
.price-fineprint {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  background: rgba(249,115,22,0.06);
  border: 1px dashed rgba(249,115,22,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 14px 0 16px;
  letter-spacing: 0.01em;
}

/* ============== PRICE LIMITS LIST ============== */
.price-limits li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  font-size: 13px;
  line-height: 1.3;
}
.price-limits li:first-child {
  display: block;
  text-align: center;
  padding: 10px 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(249,115,22,0.25);
  background: rgba(249,115,22,0.06);
  border-radius: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.85);
}
.price-limits li span {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.price-limits li b {
  color: #fff;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  white-space: nowrap;
}
.price-limits li b.hl-unl {
  color: #00FF88;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* ============== NAVBAR ACCESS BUTTON ============== */
.btn-nav-access {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(249,115,22,0.08);
  border: 1.5px solid rgba(249,115,22,0.55);
  box-shadow: 0 0 0 0 rgba(249,115,22,0.4);
  transition: all .25s ease;
  text-decoration: none;
}
.btn-nav-access:hover {
  background: rgba(249,115,22,0.18);
  border-color: #F97316;
  box-shadow: 0 6px 18px -6px rgba(249,115,22,0.55);
  transform: translateY(-1px);
}
.btn-nav-access .arrow { transition: transform .2s ease; }
.btn-nav-access:hover .arrow { transform: translateX(3px); }
