/* ============================================================
   VortqAI — Site Público | Dark Premium Design
   Referências: OpenAI, Linear, Stripe, Vercel, Notion AI
   ============================================================ */

:root {
  --bg:          #0F172A;
  --bg-2:        #1E293B;
  --bg-3:        #0D1526;
  --blue:        #3B5BFF;
  --cyan:        #22D3EE;
  --white:       #F8FAFC;
  --muted:       #94A3B8;
  --muted-2:     #64748B;
  --border:      rgba(255,255,255,0.07);
  --border-2:    rgba(255,255,255,0.12);
  --glass:       rgba(255,255,255,0.04);
  --glass-hover: rgba(255,255,255,0.07);
  --gradient:    linear-gradient(135deg, #3B5BFF, #22D3EE);
  --glow:        0 0 60px rgba(59,91,255,0.15);
  --glow-sm:     0 0 20px rgba(59,91,255,0.2);
  --radius:      14px;
  --radius-sm:   10px;
  --transition:  .2s cubic-bezier(.4,0,.2,1);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ──────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,91,255,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,91,255,.5);
}

.btn-secondary {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,.22);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  font-size: .88rem;
  padding: 10px 20px;
}
.btn-ghost:hover { color: var(--white); border-color: var(--border-2); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(15,23,42,.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}
.brand-icon { font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: var(--glass); }

.nav-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-nav-login {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.btn-nav-login:hover { color: var(--white); }

.btn-nav-cta {
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(59,91,255,.3);
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(59,91,255,.45); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(15,23,42,.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.05rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: var(--glass); }
.nav-mobile .mobile-login { color: var(--white); font-weight: 600; }
.nav-mobile .mobile-cta { background: var(--gradient); color: #fff; font-weight: 700; margin-top: 12px; border: none; text-align: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,91,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,211,238,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,91,255,.12);
  border: 1px solid rgba(59,91,255,.3);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  color: #93C5FD;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #22D3EE;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.2); }
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  color: var(--muted-2);
  margin-bottom: 36px;
  min-height: 28px;
}
.typing-prefix { flex-shrink: 0; }
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--cyan);
  margin-left: 2px;
  animation: blink .75s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
#typing-text { color: var(--cyan); font-weight: 600; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-item strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.stat-item span { font-size: .78rem; color: var(--muted-2); }
.stat-divider { width: 1px; height: 36px; background: var(--border-2); }

/* ── Hero Visual (Mockup CSS) ────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 2;
  height: 480px;
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.mockup-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), var(--glow);
  overflow: hidden;
}

/* Chat mockup */
.mockup-chat {
  left: 0;
  top: 0;
  width: 280px;
  height: 360px;
  padding: 0;
  animation: float1 4s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.chat-header {
  background: linear-gradient(135deg, #3B5BFF22, #22D3EE11);
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar {
  width: 32px; height: 32px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.chat-info .name { font-size: .82rem; font-weight: 600; color: var(--white); }
.chat-info .status { font-size: .68rem; color: #22D3EE; }

.chat-messages { padding: 14px 12px; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble {
  max-width: 85%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: .75rem;
  line-height: 1.45;
}
.bubble-bot { background: rgba(59,91,255,.15); border: 1px solid rgba(59,91,255,.2); color: #CBD5E1; align-self: flex-start; }
.bubble-user { background: var(--gradient); color: #fff; align-self: flex-end; border-radius: 12px 12px 4px 12px; }
.chat-time { font-size: .6rem; color: var(--muted-2); margin-top: 3px; text-align: right; }

/* CRM mockup */
.mockup-crm {
  right: 0;
  top: 60px;
  width: 230px;
  padding: 16px;
  animation: float2 4s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.crm-title { font-size: .72rem; font-weight: 600; color: var(--muted-2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.crm-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  transition: var(--transition);
}
.crm-lead:hover { background: var(--glass-hover); }
.lead-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lead-info .lead-name { font-size: .75rem; font-weight: 600; color: var(--white); }
.lead-info .lead-tag { font-size: .65rem; color: var(--muted-2); }
.lead-score {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

/* Metrics mockup */
.mockup-metrics {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 260px;
  padding: 14px 16px;
  animation: float3 5s ease-in-out infinite;
  animation-delay: -1s;
}
@keyframes float3 { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }

.metrics-row { display: flex; gap: 14px; }
.metric-item { flex: 1; text-align: center; }
.metric-val { font-size: 1.3rem; font-weight: 800; }
.metric-lbl { font-size: .65rem; color: var(--muted-2); margin-top: 2px; }

/* ── Section Titles ──────────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: rgba(255,255,255,0.016); }

.section-tag {
  display: inline-block;
  background: rgba(59,91,255,.12);
  border: 1px solid rgba(59,91,255,.25);
  color: #93C5FD;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── Cards ───────────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}

/* ── Dores ───────────────────────────────────────────────── */
.dores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.dor-card {
  background: var(--glass);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.dor-card:hover { background: rgba(239,68,68,.05); border-color: rgba(239,68,68,.25); }
.dor-icon { font-size: 1.8rem; margin-bottom: 12px; }
.dor-title { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.dor-text { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Solução ──────────────────────────────────────────────── */
.solucao-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.solucao-card {
  background: var(--glass);
  border: 1px solid rgba(34,211,238,.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.solucao-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.solucao-card:hover::before { transform: scaleX(1); }
.solucao-card:hover { background: rgba(34,211,238,.04); border-color: rgba(34,211,238,.2); }
.sol-icon { font-size: 1.6rem; margin-bottom: 14px; }
.sol-title { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.sol-text { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ── Features ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--glass-hover);
  border-color: rgba(59,91,255,.3);
  box-shadow: var(--glow-sm);
}
.feat-icon {
  width: 42px; height: 42px;
  background: rgba(59,91,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.feat-title { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.feat-text { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ── Como Funciona ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  position: relative;
}
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
  width: 52px; height: 52px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(59,91,255,.4);
}
.step-title { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-text { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── Segmentos ────────────────────────────────────────────── */
.segmentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.segmento-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.segmento-card:hover {
  background: var(--glass-hover);
  border-color: rgba(59,91,255,.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}
.seg-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.seg-name { font-size: .85rem; font-weight: 600; color: var(--white); }

/* ── Planos ───────────────────────────────────────────────── */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.plano-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.plano-card:hover { border-color: var(--border-2); transform: translateY(-4px); }

.plano-card.featured {
  border-color: rgba(59,91,255,.5);
  background: rgba(59,91,255,.06);
  box-shadow: 0 0 0 1px rgba(59,91,255,.2), var(--glow);
  transform: scale(1.02);
}
.plano-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.plano-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 40px;
  white-space: nowrap;
  letter-spacing: .5px;
}

.plano-name { font-size: .85rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.plano-preco { margin-bottom: 8px; }
.preco-valor { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.preco-moeda { font-size: 1.2rem; vertical-align: super; }
.preco-periodo { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }
.preco-trial-info { font-size: .82rem; color: #22D3EE; font-weight: 600; margin-bottom: 16px; }

.plano-desc { font-size: .87rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; border-bottom: 1px solid var(--border); padding-bottom: 24px; }

.plano-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.plano-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; color: var(--muted); }
.plano-features li .check { color: #22D3EE; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plano-features li .cross { color: var(--muted-2); flex-shrink: 0; }

.plano-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.plano-cta.primary-cta {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,91,255,.35);
}
.plano-cta.primary-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,91,255,.5); }
.plano-cta.secondary-cta {
  background: var(--glass);
  border: 1px solid var(--border-2);
  color: var(--white);
}
.plano-cta.secondary-cta:hover { background: var(--glass-hover); }

/* ── Comparativo ─────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg-2);
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table td { color: var(--muted); background: var(--bg); text-align: center; }
.compare-table td:first-child { text-align: left; color: var(--white); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--glass); }
.check-yes { color: #22D3EE; font-weight: 700; }
.check-no  { color: var(--muted-2); }
.compare-table .col-featured { background: rgba(59,91,255,.05); }
.compare-table th.col-featured { background: rgba(59,91,255,.15); color: var(--white); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item.open { border-color: rgba(59,91,255,.3); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .93rem;
  color: var(--white);
  user-select: none;
  gap: 16px;
}
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(59,91,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 18px; }

/* ── CTA Final ───────────────────────────────────────────── */
.cta-final {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,91,255,.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 18px; }
.cta-final p { font-size: 1.05rem; color: var(--muted); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; max-width: 260px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--glass-hover); border-color: var(--border-2); }
.footer-links h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
.footer-links a { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 10px; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: var(--muted-2); }

/* ── Modal Cadastro ──────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  animation: modalIn .25s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn { from{transform:scale(.92)translateY(16px);opacity:0} to{transform:scale(1)translateY(0);opacity:1} }

.modal-header {
  padding: 28px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.modal-title { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.modal-subtitle { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.modal-close {
  width: 32px; height: 32px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { color: var(--white); background: var(--glass-hover); }

.modal-plano-badge {
  margin: 16px 28px;
  background: rgba(59,91,255,.1);
  border: 1px solid rgba(59,91,255,.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mpb-name { font-size: .9rem; font-weight: 700; color: var(--white); }
.mpb-price { font-size: .85rem; color: #93C5FD; }

.modal-body { padding: 8px 28px 28px; }

/* ── Form ─────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--muted); }

.form-control {
  background: var(--glass);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--white);
  font-family: var(--font);
  transition: var(--transition);
  width: 100%;
}
.form-control::placeholder { color: var(--muted-2); }
.form-control:focus {
  outline: none;
  border-color: rgba(59,91,255,.6);
  background: rgba(59,91,255,.06);
  box-shadow: 0 0 0 3px rgba(59,91,255,.15);
}
.form-control option { background: var(--bg-2); color: var(--white); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-check input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check a { color: var(--cyan); }

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .97rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
  box-shadow: 0 4px 20px rgba(59,91,255,.35);
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,91,255,.5); }
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-error { color: #F87171; font-size: .8rem; margin-top: 12px; display: none; }
.form-error.show { display: block; }

/* ── Alert boxes ─────────────────────────────────────────── */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.alert-success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); color: #6EE7B7; }
.alert-error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #FCA5A5; }
.alert-warning { background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.3); color: #FCD34D; }
.alert-info    { background: rgba(59,91,255,.1);  border: 1px solid rgba(59,91,255,.25); color: #93C5FD; }

/* ── Page Result (sucesso/pendente/falhou) ───────────────── */
.result-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.result-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
}
.result-icon { font-size: 4rem; margin-bottom: 24px; display: block; }
.result-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; }
.result-text { color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.result-creds {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 0 0 28px;
  text-align: left;
}
.cred-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); }
.cred-row:last-child { border-bottom: none; }
.cred-label { font-size: .82rem; color: var(--muted-2); }
.cred-value { font-size: .9rem; font-weight: 600; color: var(--white); }
.cred-value.senha { font-family: monospace; color: var(--cyan); letter-spacing: 2px; font-size: 1rem; }

.result-btns { display: flex; flex-direction: column; gap: 12px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 64px 0; }
  .planos-grid { grid-template-columns: 1fr; }
  .plano-card.featured { transform: none; }
  .plano-card.featured:hover { transform: translateY(-4px); }
  .form-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: .8rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .result-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a, .hero-ctas button { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; }
  .cta-btns a, .cta-btns button { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXTENDED STYLES — index.php, result pages
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero extended ──────────────────────────────────────────────────── */
.hero { position: relative; padding: 140px 0 80px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(59,91,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59,91,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,91,255,.12); border: 1px solid rgba(59,91,255,.3);
  border-radius: 40px; padding: 6px 14px;
  font-size: .8rem; font-weight: 600; color: #93C5FD;
  margin-bottom: 22px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22D3EE; box-shadow: 0 0 6px #22D3EE;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.08; margin-bottom: 22px;
  color: var(--white);
}
.typing-cursor { color: var(--cyan); animation: blink 1s step-end infinite; }
@keyframes blink { 50%{opacity:0} }
.hero-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px; max-width: 500px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.stat-label  { display: block; font-size: .73rem; color: var(--muted-2); margin-top: 3px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── Hero visual / mockups ──────────────────────────────────────────── */
.hero-visual { position: relative; }
.mockup-wrapper { position: relative; width: 100%; height: 420px; }
.mockup-chat {
  position: absolute; top: 0; left: 0; right: 40px;
  background: var(--bg-2); border-radius: 16px; overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.mockup-chat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.mockup-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.mockup-name { font-size: .85rem; font-weight: 700; color: var(--white); }
.mockup-status { font-size: .72rem; color: #34D399; }
.mockup-messages { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.msg {
  padding: 9px 13px; border-radius: 12px;
  font-size: .8rem; line-height: 1.5; max-width: 80%;
}
.msg-in  { background: rgba(255,255,255,.06); color: var(--muted); align-self: flex-start; border-radius: 4px 12px 12px 12px; }
.msg-out { background: rgba(59,91,255,.25); color: #C7D2FE; align-self: flex-end; border-radius: 12px 4px 12px 12px; }
.msg-typing {
  display: flex; gap: 4px; align-items: center; padding: 10px 14px;
  background: rgba(255,255,255,.04); border-radius: 4px 12px 12px 12px;
  align-self: flex-start; width: 52px;
}
.msg-typing span {
  width: 6px; height: 6px; background: var(--muted-2); border-radius: 50%;
  animation: typing 1.2s infinite;
}
.msg-typing span:nth-child(2){animation-delay:.2s}
.msg-typing span:nth-child(3){animation-delay:.4s}
@keyframes typing { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.mockup-crm {
  position: absolute; bottom: 60px; right: 0; width: 180px;
  background: var(--bg-2); border-radius: 12px; padding: 14px;
  animation: float 6s ease-in-out infinite; animation-delay: 1s;
}
.mockup-crm-title { font-size: .7rem; color: var(--muted-2); margin-bottom: 6px; }
.mockup-crm-name  { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.mockup-crm-tags  { display: flex; gap: 5px; flex-wrap: wrap; }
.tag { font-size: .65rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.tag-blue  { background: rgba(59,91,255,.2); color: #93C5FD; }
.tag-green { background: rgba(16,185,129,.15); color: #6EE7B7; }

.mockup-metrics {
  position: absolute; bottom: 0; left: 20px; width: 160px;
  background: var(--bg-2); border-radius: 12px; padding: 14px;
  display: flex; gap: 16px;
  animation: float 6s ease-in-out infinite; animation-delay: 2s;
}
.mockup-metric { text-align: center; }
.metric-value { display: block; font-size: .9rem; font-weight: 800; color: #22D3EE; }
.metric-label { display: block; font-size: .62rem; color: var(--muted-2); margin-top: 2px; }

/* ── Logos strip ────────────────────────────────────────────────────── */
.logos-strip { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.logos-label { text-align: center; font-size: .75rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.logos-track { overflow: hidden; }
.logos-list {
  display: flex; gap: 48px; white-space: nowrap;
  animation: scroll-logos 20s linear infinite;
  font-size: .88rem; color: var(--muted-2); font-weight: 500;
}
@keyframes scroll-logos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.logos-list span { flex-shrink: 0; }

/* ── Dores ──────────────────────────────────────────────────────────── */
.dores { padding: 100px 0; }
.dores-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
.dor-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: var(--transition);
}
.dor-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
.dor-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.dor-card h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.dor-card p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── Solução ────────────────────────────────────────────────────────── */
.solucao { padding: 100px 0; }
.solucao-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.solucao-lista { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.solucao-lista li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--muted); }
.check { color: #22D3EE; font-weight: 700; font-size: 1rem; }

.solucao-card { background: var(--bg-2); border-radius: 18px; overflow: hidden; }
.solucao-card-header {
  padding: 14px 18px; background: rgba(59,91,255,.08);
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.sc-dot { width: 8px; height: 8px; border-radius: 50%; }
.sc-dot-green { background: #34D399; box-shadow: 0 0 6px #34D399; }
.solucao-flow { padding: 20px; display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; align-items: center; gap: 14px; padding: 14px 0; }
.flow-step + .flow-step { border-top: 1px solid var(--border); }
.flow-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(59,91,255,.12); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.flow-info { display: flex; flex-direction: column; gap: 2px; }
.flow-info strong { font-size: .85rem; color: var(--white); }
.flow-info span   { font-size: .77rem; color: var(--muted); }
.flow-arrow { text-align: center; color: var(--muted-2); font-size: .8rem; padding: 0 0 0 20px; }

/* ── Features ───────────────────────────────────────────────────────── */
.features { padding: 100px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.feature-card { padding: 28px 24px; transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(59,91,255,.3); }
.feature-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── Como Funciona ──────────────────────────────────────────────────── */
.como-funciona { padding: 100px 0; }
.steps-track { display: flex; flex-direction: column; gap: 0; margin-top: 56px; max-width: 700px; margin-left: auto; margin-right: auto; }
.step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-number {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(59,91,255,.35);
}
.step-content { flex: 1; }
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-content p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── Segmentos extended ─────────────────────────────────────────────── */
.segmentos { padding: 100px 0; }
.segmento-card h3 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.segmento-card p  { font-size: .8rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.seg-cta { font-size: .78rem; font-weight: 700; color: var(--cyan); }

/* ── Planos extended ────────────────────────────────────────────────── */
.planos { padding: 100px 0; }
.plano-header { margin-bottom: 28px; }
.plano-nome { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.plano-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; font-size: .7rem; font-weight: 700;
  padding: 4px 16px; border-radius: 40px; white-space: nowrap;
}
.plano-badge-gold {
  background: linear-gradient(135deg, #F59E0B, #EF4444);
}
.feat-check { color: #22D3EE; font-weight: 700; }
.btn-plano {
  display: block; width: 100%; padding: 14px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .95rem;
  text-align: center; cursor: pointer; transition: var(--transition); border: none; font-family: var(--font);
}
.btn-primary-plano {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 20px rgba(59,91,255,.35);
}
.btn-primary-plano:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,91,255,.5); }
.btn-ghost-plano {
  background: var(--glass); border: 1px solid var(--border-2); color: var(--white);
}
.btn-ghost-plano:hover { background: var(--glass-hover); }
.planos-nota { text-align: center; font-size: .82rem; color: var(--muted-2); margin-top: 28px; }

/* ── Comparativo extended ───────────────────────────────────────────── */
.comparativo { padding: 100px 0; }
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin-top: 48px; }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td {
  padding: 14px 20px; font-size: .87rem;
  border-bottom: 1px solid var(--border); text-align: center;
}
.comp-table th { background: var(--bg-2); font-weight: 700; color: var(--white); }
.comp-table th:first-child { text-align: left; }
.comp-table td { color: var(--muted); background: var(--bg); }
.comp-table td:first-child { text-align: left; color: var(--white); font-weight: 500; }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--glass); }
.col-vortq { background: rgba(59,91,255,.07) !important; }
.comp-table th.col-vortq { background: rgba(59,91,255,.2) !important; color: #93C5FD; }
.comp-yes { color: #22D3EE; font-weight: 700; }
.comp-no  { color: var(--muted-2); }

/* ── FAQ extended ───────────────────────────────────────────────────── */
.faq { padding: 100px 0; }
.faq-question { background: none; border: none; font-family: var(--font); width: 100%; }

/* ── CTA Final extended ─────────────────────────────────────────────── */
.cta-inner {
  padding: 72px 60px; border-radius: 24px; position: relative; overflow: hidden;
  border: 1px solid rgba(59,91,255,.2);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(59,91,255,.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 16px; }
.cta-desc  { font-size: 1rem; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.cta-guarantee { font-size: .8rem; color: var(--muted-2); }
.btn-lg { padding: 16px 36px !important; font-size: 1rem !important; }

/* ── Modal extended ─────────────────────────────────────────────────── */
.modal-box {
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 20px; width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  animation: modalIn .25s cubic-bezier(.4,0,.2,1);
  position: relative; padding: 36px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 30px; height: 30px; background: var(--glass);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--muted); font-size: 1rem;
  transition: var(--transition); line-height: 1;
}
.modal-close:hover { color: var(--white); background: var(--glass-hover); }
.modal-head { margin-bottom: 24px; padding-right: 28px; }
.modal-brand { font-size: .9rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.modal-title { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.modal-subtitle { font-size: .85rem; color: var(--muted); line-height: 1.5; }
.modal-plan-name { color: var(--cyan); }

/* ── Form in modal ──────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--muted); }
.form-group input, .form-group select {
  background: var(--glass); border: 1px solid var(--border-2);
  border-radius: 8px; padding: 11px 14px; font-size: .9rem;
  color: var(--white); font-family: var(--font); width: 100%; transition: var(--transition);
}
.form-group input::placeholder { color: var(--muted-2); }
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: rgba(59,91,255,.6);
  background: rgba(59,91,255,.06); box-shadow: 0 0 0 3px rgba(59,91,255,.15);
}
.form-group input.error, .form-group select.error { border-color: #F87171; }
.form-group select option { background: var(--bg-2); color: var(--white); }
.field-error { font-size: .75rem; color: #F87171; min-height: 14px; }

.check-group { margin-bottom: 20px; }
.check-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .83rem; color: var(--muted); line-height: 1.5; cursor: pointer;
}
.check-custom {
  width: 16px; height: 16px; border: 1px solid var(--border-2);
  border-radius: 4px; background: var(--glass); flex-shrink: 0; margin-top: 2px;
}
.check-label input[type=checkbox] { display: none; }
.check-label input:checked ~ .check-custom { background: var(--blue); border-color: var(--blue); }
.check-label a { color: var(--cyan); text-decoration: underline; }

.btn-modal-submit {
  width: 100%; padding: 15px; background: var(--gradient);
  border: none; border-radius: var(--radius-sm); color: #fff;
  font-size: .97rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  font-family: var(--font); box-shadow: 0 4px 20px rgba(59,91,255,.35);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-modal-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,91,255,.5); }
.btn-modal-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.modal-footer-note { text-align: center; font-size: .77rem; color: var(--muted-2); margin-top: 12px; }
.modal-erro-box {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3);
  border-radius: 8px; padding: 12px 16px; font-size: .85rem; color: #FCA5A5;
  margin-bottom: 16px; display: none;
}
.spinner {
  width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to{transform:rotate(360deg)} }

/* ── Result pages extended ──────────────────────────────────────────── */
.result-success { border-color: rgba(34,211,238,.2); }
.result-error   { border-color: rgba(239,68,68,.2); }
.result-warning { border-color: rgba(245,158,11,.2); }
.result-pending { border-color: rgba(59,91,255,.2); }
.result-icon-animated { animation: bounceIn .6s cubic-bezier(.36,.07,.19,.97); }
@keyframes bounceIn { 0%{transform:scale(.3)} 50%{transform:scale(1.1)} 70%{transform:scale(.9)} 100%{transform:scale(1)} }
.result-badge {
  display: inline-block; padding: 4px 16px;
  background: rgba(34,211,238,.12); border: 1px solid rgba(34,211,238,.3);
  border-radius: 40px; font-size: .75rem; font-weight: 700; color: #22D3EE;
  margin-bottom: 16px;
}
.result-card h1 { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.result-card p  { color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-size: .92rem; }
.result-desc { font-size: .95rem !important; }

.result-credentials {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin: 20px 0 28px; text-align: left;
}
.cred-title { font-size: .77rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.cred-row   { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.cred-row:last-of-type { border-bottom: none; }
.cred-label { font-size: .8rem; color: var(--muted-2); }
.cred-value { font-size: .88rem; font-weight: 600; color: var(--white); }
.cred-senha { font-family: monospace; color: var(--cyan); letter-spacing: 2px; font-size: 1rem; }
.cred-note  { font-size: .77rem; color: var(--muted-2); margin-top: 14px; line-height: 1.6; }

.result-steps {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; margin: 24px 0; text-align: left;
}
.result-steps h3 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.result-steps ol { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.result-steps li { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.result-suporte { font-size: .8rem; color: var(--muted-2); margin-top: 16px; }
.result-suporte a { color: var(--cyan); }
.result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.pending-info {
  background: var(--glass); border-radius: 12px; padding: 18px 20px;
  margin: 20px 0; display: flex; flex-direction: column; gap: 12px; text-align: left;
}
.pending-item { display: flex; align-items: center; gap: 12px; }
.pending-icon { font-size: 1.2rem; width: 36px; text-align: center; }
.pending-item strong { display: block; font-size: .85rem; color: var(--white); }
.pending-item span   { font-size: .77rem; color: var(--muted); }

.pending-status {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  padding: 12px 18px; background: rgba(59,91,255,.08);
  border: 1px solid rgba(59,91,255,.2); border-radius: 10px;
  font-size: .83rem; color: var(--muted); margin: 20px 0;
}
.status-spinner {
  width: 14px; height: 14px; border: 2px solid rgba(59,91,255,.3);
  border-top-color: var(--blue); border-radius: 50%; animation: spin .7s linear infinite; flex-shrink: 0;
}
.pending-status.status-ok { border-color: rgba(34,211,238,.3); background: rgba(34,211,238,.08); color: #22D3EE; }
.pending-status.status-err { border-color: rgba(239,68,68,.3); background: rgba(239,68,68,.08); color: #F87171; }

.error-reasons {
  list-style: disc; padding-left: 20px; text-align: left;
  display: flex; flex-direction: column; gap: 6px;
  margin: 12px 0 20px; font-size: .87rem; color: var(--muted);
}
.error-alt {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
  font-size: .83rem; color: var(--muted-2);
}
.error-alt a { color: var(--cyan); }

/* ── Buttons global ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient); color: #fff;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: var(--transition); border: none; font-family: var(--font);
  box-shadow: 0 4px 20px rgba(59,91,255,.35); text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(59,91,255,.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1px solid var(--border-2); color: var(--white);
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: var(--transition); font-family: var(--font); text-decoration: none;
}
.btn-ghost:hover { background: var(--glass-hover); }

/* ── Responsive extended ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .solucao-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 120px 0 64px; }
  .dores, .solucao, .features, .como-funciona, .segmentos, .planos, .comparativo, .faq { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 28px; }
  .result-card { padding: 36px 24px; }
  .cta-final { text-align: left; }
  .cta-buttons { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .mockup-wrapper { height: 300px; }
  .modal-box { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM HERO v2 — Holographic AI Orb + Navbar Premium
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Navbar v2 overrides ────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  background: transparent;
}
.navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,23,42,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.navbar.scrolled::before {
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(24px) saturate(180%);
  border-color: rgba(255,255,255,.07);
}
.nav-container {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px; height: 66px;
  display: flex; align-items: center; gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 9px;
  flex-shrink: 0; text-decoration: none;
}
.nav-brand-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(59,91,255,.15); border: 1px solid rgba(59,91,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: .2s cubic-bezier(.4,0,.2,1);
}
.nav-brand:hover .nav-brand-icon {
  background: rgba(59,91,255,.28);
  box-shadow: 0 0 18px rgba(59,91,255,.4);
}
.nav-brand-name { font-size: 1.08rem; font-weight: 800; color: #F8FAFC; letter-spacing: -.3px; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  padding: 7px 14px; border-radius: 8px; font-size: .875rem;
  color: #94A3B8; font-weight: 500;
  transition: .2s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover { color: #F8FAFC; background: rgba(255,255,255,.06); }

.nav-ctas { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-nav-login {
  padding: 8px 16px; border-radius: 8px; font-size: .875rem;
  font-weight: 500; color: #94A3B8;
  transition: .2s; background: none; border: none; cursor: pointer; font-family: var(--font);
}
.btn-nav-login:hover { color: #F8FAFC; }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 8px;
  background: linear-gradient(135deg, #3B5BFF, #22D3EE);
  color: #fff; font-size: .875rem; font-weight: 600; border: none;
  box-shadow: 0 2px 16px rgba(59,91,255,.4);
  transition: .2s cubic-bezier(.4,0,.2,1); cursor: pointer; font-family: var(--font);
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(59,91,255,.55); }

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; padding: 6px; margin-left: auto;
  width: 36px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: #F8FAFC; border-radius: 2px;
  transition: .2s cubic-bezier(.4,0,.2,1); transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: 66px; left: 0; right: 0; bottom: 0; z-index: 998;
}
.nav-mobile-inner {
  background: rgba(15,23,42,.97); backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 20px 32px; display: flex; flex-direction: column; gap: 2px;
  height: 100%; overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile-inner a {
  padding: 13px 16px; border-radius: 10px; font-size: .97rem;
  color: #94A3B8; display: block;
  transition: .2s; border: none;
}
.nav-mobile-inner a:hover { color: #F8FAFC; background: rgba(255,255,255,.05); }
.nav-mobile-sep { height: 1px; background: rgba(255,255,255,.07); margin: 8px 0; }
.mobile-login { color: #F8FAFC !important; font-weight: 600 !important; }
.mobile-cta {
  width: 100%; margin-top: 8px; padding: 14px;
  background: linear-gradient(135deg, #3B5BFF, #22D3EE);
  color: #fff; font-weight: 700; border: none; border-radius: 10px;
  font-size: .97rem; font-family: var(--font); cursor: pointer;
  box-shadow: 0 4px 20px rgba(59,91,255,.35);
}

/* ── Hero layout v2 ─────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; overflow: hidden; padding: 0;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-bg-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(59,91,255,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(34,211,238,.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 5% 20%, rgba(59,91,255,.08) 0%, transparent 50%);
}
.hero-bg-grid-premium {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 75%);
}
.hero-bg-noise { display: none; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  padding-top: 90px; padding-bottom: 20px;
  min-height: calc(100vh - 120px);
  max-width: 1160px; margin: 0 auto; padding-left: 24px; padding-right: 24px;
}

/* ── Left copy ──────────────────────────────────────────────────────────── */
.hero-left { display: flex; flex-direction: column; }

.hero-badge-v2 {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 13px 5px 10px;
  background: rgba(59,91,255,.1);
  border: 1px solid rgba(59,91,255,.25);
  border-radius: 40px; width: fit-content; margin-bottom: 28px;
}
.hbadge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22D3EE; box-shadow: 0 0 8px #22D3EE; flex-shrink: 0;
  animation: hbdot 2.5s ease-in-out infinite;
}
@keyframes hbdot { 0%,100%{opacity:1} 50%{opacity:.4} }
.hbadge-label { font-size: .77rem; font-weight: 600; color: #93C5FD; }
.hbadge-sep   { color: rgba(255,255,255,.18); }
.hbadge-new {
  font-size: .63rem; font-weight: 700; color: #22D3EE;
  background: rgba(34,211,238,.15); padding: 2px 7px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
}

.hero-h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 900; letter-spacing: -2px; line-height: 1.07;
  color: #F8FAFC; margin-bottom: 22px;
}
.hero-typing-wrap { display: block; }

.hero-p {
  font-size: 1.05rem; color: #94A3B8; line-height: 1.78;
  margin-bottom: 34px; max-width: 460px; font-weight: 400;
}

.hero-actions {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 40px; flex-wrap: wrap;
}

/* Primary button with animated border glow */
.btn-hero-primary {
  position: relative; overflow: hidden; display: inline-flex;
  border: none; cursor: pointer; border-radius: 11px;
  font-family: var(--font); padding: 2px;
  background: linear-gradient(135deg, #3B5BFF, #22D3EE);
  animation: bpglow 4s linear infinite;
}
@keyframes bpglow {
  0%   { box-shadow: 0 0 20px rgba(59,91,255,.5); }
  50%  { box-shadow: 0 0 30px rgba(34,211,238,.5); }
  100% { box-shadow: 0 0 20px rgba(59,91,255,.5); }
}
.btn-hero-glow { display: none; }
.btn-hero-inner {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2d4de6 0%, #1ab8d4 100%);
  color: #fff; font-size: .95rem; font-weight: 700;
  padding: 13px 26px; border-radius: 9px;
  transition: .2s cubic-bezier(.4,0,.2,1);
}
.btn-hero-primary:hover .btn-hero-inner {
  background: linear-gradient(135deg, #3B5BFF 0%, #22D3EE 100%);
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: #94A3B8; font-size: .92rem; font-weight: 500;
  padding: 12px 22px; border-radius: 10px;
  transition: .2s cubic-bezier(.4,0,.2,1);
  cursor: pointer; font-family: var(--font);
}
.btn-hero-ghost:hover {
  color: #F8FAFC; background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.btn-hero-ghost svg { transition: transform .2s; }
.btn-hero-ghost:hover svg { transform: translateX(3px); }

/* Social proof */
.hero-social-proof {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hsp-avatars { display: flex; }
.hsp-av {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; color: #fff;
  border: 2px solid #0F172A; margin-right: -8px; flex-shrink: 0;
}
.hsp-text { font-size: .8rem; color: #94A3B8; padding-left: 14px; }
.hsp-count { color: #F8FAFC; font-weight: 600; }
.hsp-sep   { width: 1px; height: 18px; background: rgba(255,255,255,.1); }
.hsp-rating { display: flex; align-items: center; gap: 5px; }
.hsp-stars  { color: #FBBF24; font-size: .82rem; letter-spacing: -1px; }
.hsp-score  { font-size: .8rem; font-weight: 700; color: #F8FAFC; }

/* ── Stats bar ──────────────────────────────────────────────────────────── */
.hero-stats-bar {
  position: relative; z-index: 1;
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.022);
  max-width: 100%;
}
.hsbar-item {
  padding: 22px 44px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.hsbar-item:last-child { border-right: none; }
.hsbar-val {
  display: block; font-size: 1.55rem; font-weight: 800;
  color: #F8FAFC; line-height: 1.15; margin-bottom: 3px;
}
.hsbar-label { font-size: .73rem; color: #64748B; font-weight: 500; }
.hsbar-divider { display: none; }

/* ── Orb scene ──────────────────────────────────────────────────────────── */
.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.orb-scene {
  position: relative; width: 500px; height: 500px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Ambient glow */
.orb-ambient {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(59,91,255,.22) 0%, rgba(34,211,238,.1) 32%, transparent 65%);
  filter: blur(30px);
  animation: orb-breathe 5s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%,100%{ transform:scale(1); opacity:1; }
  50%    { transform:scale(1.1); opacity:.75; }
}

/* Rings */
.orb-ring {
  position: absolute; border-radius: 50%; border-style: solid; border-color: transparent;
}
.orb-ring-outer-1 {
  width: 410px; height: 410px; border-width: 1px;
  border-top-color: rgba(59,91,255,.4); border-right-color: rgba(59,91,255,.08);
  transform: rotateX(75deg);
  animation: rring1 14s linear infinite;
}
.orb-ring-outer-2 {
  width: 450px; height: 450px; border-width: 1px;
  border-top-color: rgba(34,211,238,.22); border-left-color: rgba(34,211,238,.06);
  transform: rotateX(70deg) rotateZ(55deg);
  animation: rring2 22s linear infinite reverse;
}
.orb-ring-mid-1 {
  width: 330px; height: 330px; border-width: 1px;
  border-top-color: rgba(59,91,255,.55); border-bottom-color: rgba(59,91,255,.12);
  transform: rotateX(68deg) rotateZ(25deg);
  animation: rring1 10s linear infinite;
}
.orb-ring-mid-2 {
  width: 280px; height: 280px; border-width: 1px;
  border-right-color: rgba(34,211,238,.5); border-left-color: rgba(34,211,238,.1);
  transform: rotateX(80deg) rotateZ(90deg);
  animation: rring2 16s linear infinite;
}
@keyframes rring1 { to{ transform: rotateX(75deg) rotateZ(360deg); } }
@keyframes rring2 { to{ transform: rotateX(70deg) rotateZ(-300deg); } }

/* Particles */
.orb-particles { position: absolute; inset: 0; pointer-events: none; }
.orb-p {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s); border-radius: 50%;
  background: radial-gradient(circle, rgba(59,91,255,.95), rgba(34,211,238,.5));
  box-shadow: 0 0 6px rgba(59,91,255,.85);
  animation: pfloat var(--d) ease-in-out infinite alternate;
}
@keyframes pfloat {
  0%   { transform: translate(0,0); opacity: .7; }
  100% { transform: translate(4px,-9px); opacity: .15; }
}

/* Core */
.orb-core {
  position: relative; z-index: 10;
  width: 190px; height: 190px;
}
.orb-core-inner {
  width: 100%; height: 100%; border-radius: 50%;
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 38% 30%,
    rgba(75,105,255,.5) 0%, rgba(15,23,42,.95) 50%, rgba(8,14,32,1) 100%);
  border: 1px solid rgba(59,91,255,.5);
  box-shadow:
    0 0 0 1px rgba(34,211,238,.1),
    0 0 55px rgba(59,91,255,.55),
    0 0 110px rgba(59,91,255,.28),
    0 0 200px rgba(59,91,255,.1),
    inset 0 0 45px rgba(59,91,255,.18),
    inset 0 -20px 40px rgba(34,211,238,.06);
  animation: cpulse 4s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}
@keyframes cpulse {
  0%,100%{box-shadow:0 0 0 1px rgba(34,211,238,.1),0 0 55px rgba(59,91,255,.55),0 0 110px rgba(59,91,255,.28),inset 0 0 45px rgba(59,91,255,.18);}
  50%    {box-shadow:0 0 0 1px rgba(34,211,238,.2),0 0 75px rgba(59,91,255,.7),0 0 150px rgba(59,91,255,.35),inset 0 0 65px rgba(59,91,255,.28);}
}

.orb-core-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 32%, rgba(59,91,255,.65) 0%, transparent 55%);
}
.orb-core-surface {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.orb-logo-v {
  font-size: 3.6rem; font-weight: 900; line-height: 1; letter-spacing: -3px;
  background: linear-gradient(145deg, #ffffff 0%, #93C5FD 45%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(59,91,255,1)) drop-shadow(0 0 8px rgba(34,211,238,.85));
  animation: vglow 4s ease-in-out infinite;
  font-family: var(--font);
}
@keyframes vglow {
  0%,100%{ filter: drop-shadow(0 0 18px rgba(59,91,255,.9)) drop-shadow(0 0 8px rgba(34,211,238,.6)); }
  50%    { filter: drop-shadow(0 0 32px rgba(59,91,255,1)) drop-shadow(0 0 14px rgba(34,211,238,1)); }
}
.orb-core-reflection {
  position: absolute; top: 9%; left: 18%; right: 42%; height: 34%;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, transparent 100%);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0; z-index: 3;
}

/* Scan line */
.orb-scan {
  position: absolute; z-index: 11;
  left: calc(50% - 95px); width: 190px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.55) 40%,
    rgba(34,211,238,.9) 50%, rgba(34,211,238,.55) 60%, transparent);
  animation: scanmov 3.5s ease-in-out infinite;
  filter: blur(.6px);
}
@keyframes scanmov {
  0%  { top: calc(50% - 97px); opacity: 0; }
  8%  { opacity: 1; }
  92% { opacity: 1; }
  100%{ top: calc(50% + 97px); opacity: 0; }
}

/* ── Floating cards ─────────────────────────────────────────────────────── */
.hcard {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(15,23,42,.88);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 10px 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.06) inset;
  white-space: nowrap; z-index: 20;
}
.hcard-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.hcard-icon-fire  { background: rgba(239,68,68,.14);  border: 1px solid rgba(239,68,68,.22); }
.hcard-icon-ai    { background: rgba(59,91,255,.14);   border: 1px solid rgba(59,91,255,.28); }
.hcard-icon-chart { background: rgba(16,185,129,.12);  border: 1px solid rgba(16,185,129,.22); }
.hcard-icon-auto  { background: rgba(34,211,238,.11);  border: 1px solid rgba(34,211,238,.22); }
.hcard-title { font-size: .77rem; font-weight: 600; color: #F8FAFC; line-height: 1.25; }
.hcard-sub   { font-size: .67rem; color: #64748B; margin-top: 1px; }

.hcard-1 { top: 10%;  left: -4%;  animation: hcf 5s ease-in-out infinite; }
.hcard-2 { top: 30%;  right: -6%; animation: hcf 6s ease-in-out infinite 1.2s; }
.hcard-3 { bottom: 30%; left: -7%; animation: hcf 5.5s ease-in-out infinite .6s; }
.hcard-4 { bottom: 10%; right: -4%; animation: hcf 7s ease-in-out infinite 1.8s; }
@keyframes hcf {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-10px); }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .orb-scene { width: 430px; height: 430px; }
  .orb-ring-outer-1 { width: 355px; height: 355px; }
  .orb-ring-outer-2 { width: 390px; height: 390px; }
  .orb-ring-mid-1 { width: 290px; height: 290px; }
  .orb-ring-mid-2 { width: 245px; height: 245px; }
  .hcard-1,.hcard-3 { left: 0; }
  .hcard-2,.hcard-4 { right: 0; }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr; gap: 40px;
    padding-top: 90px; text-align: center;
  }
  .hero-left { align-items: center; }
  .hero-p    { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-right { order: -1; }
  .orb-scene { width: 320px; height: 320px; }
  .orb-core  { width: 140px; height: 140px; }
  .orb-logo-v { font-size: 2.6rem; }
  .orb-scan  { left: calc(50% - 70px); width: 140px; }
  .orb-ring-outer-1 { width: 265px; height: 265px; }
  .orb-ring-outer-2 { width: 295px; height: 295px; }
  .orb-ring-mid-1 { width: 210px; height: 210px; }
  .orb-ring-mid-2 { width: 178px; height: 178px; }
  @keyframes scanmov {
    0%{top:calc(50% - 72px);opacity:0}
    8%{opacity:1} 92%{opacity:1}
    100%{top:calc(50% + 72px);opacity:0}
  }
  @keyframes rring1 { to{ transform: rotateX(75deg) rotateZ(360deg); } }
  @keyframes rring2 { to{ transform: rotateX(70deg) rotateZ(-300deg); } }
  .hcard-1 { top: 2%;  left: 0; }
  .hcard-2 { top: 22%; right: 0; }
  .hcard-3 { bottom: 22%; left: 0; }
  .hcard-4 { bottom: 2%; right: 0; }
  .hsbar-item { padding: 18px 24px; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); letter-spacing: -1px; }
  .hero-p  { font-size: .97rem; }
  .orb-scene { width: 270px; height: 270px; }
  .orb-core  { width: 116px; height: 116px; }
  .orb-logo-v{ font-size: 2.1rem; }
  .orb-scan  { left: calc(50% - 58px); width: 116px; }
  .orb-ring-outer-1 { width: 220px; height: 220px; }
  .orb-ring-outer-2 { width: 248px; height: 248px; }
  .orb-ring-mid-1   { width: 176px; height: 176px; }
  .orb-ring-mid-2   { width: 148px; height: 148px; }
  @keyframes scanmov {
    0%{top:calc(50% - 60px);opacity:0}
    8%{opacity:1} 92%{opacity:1}
    100%{top:calc(50% + 60px);opacity:0}
  }
  .hcard-1,.hcard-3 { left: -1%; }
  .hcard-2,.hcard-4 { right: -1%; }
  .hero-badge-v2 { font-size: .72rem; }
  .hsbar-item { padding: 16px 14px; }
  .hsbar-val  { font-size: 1.2rem; }
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ORB v3 — Núcleo de IA com símbolo oficial VortqAI
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Scene depth ──────────────────────────────────────────────────────── */
.orb-scene {
  position: relative;
  width: 500px; height: 500px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  /* Perspective for 3D ring effect */
  perspective: 900px;
  transform-style: preserve-3d;
}

/* Glow principal (azul) */
.orb-ambient {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(59,91,255,.28) 0%,
    rgba(34,211,238,.12) 35%,
    transparent 65%
  );
  filter: blur(28px);
  animation: orb-breathe 5s ease-in-out infinite;
}
/* Glow secundário (cyan, deslocado) */
.orb-ambient-2 {
  position: absolute;
  width: 70%; height: 70%;
  top: 15%; left: 15%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 38%,
    rgba(34,211,238,.16) 0%,
    transparent 60%
  );
  filter: blur(20px);
  animation: orb-breathe 7s ease-in-out infinite reverse;
}
@keyframes orb-breathe {
  0%,100%{ transform: scale(1);    opacity: 1; }
  50%    { transform: scale(1.12); opacity: .75; }
}

/* ── Rings ────────────────────────────────────────────────────────────── */
.orb-ring {
  position: absolute; border-radius: 50%;
  border-style: solid; border-color: transparent;
  transform-style: preserve-3d;
}

/* Ring externo 1 — inclinado, gira lento */
.orb-ring-outer-1 {
  width: 415px; height: 415px; border-width: 1px;
  border-top-color: rgba(59,91,255,.45);
  border-right-color: rgba(59,91,255,.12);
  border-bottom-color: rgba(59,91,255,.06);
  transform: rotateX(74deg) rotateZ(0deg);
  animation: rring1 15s linear infinite;
  box-shadow: inset 0 0 30px rgba(59,91,255,.04);
}
/* Ring externo 2 — inclinado diferente, gira reverso */
.orb-ring-outer-2 {
  width: 456px; height: 456px; border-width: 1px;
  border-top-color: rgba(34,211,238,.28);
  border-left-color: rgba(34,211,238,.08);
  transform: rotateX(68deg) rotateZ(50deg);
  animation: rring2 24s linear infinite reverse;
}
/* Ring médio 1 — brilhante */
.orb-ring-mid-1 {
  width: 335px; height: 335px; border-width: 1.5px;
  border-top-color: rgba(59,91,255,.6);
  border-bottom-color: rgba(59,91,255,.18);
  border-right-color: rgba(59,91,255,.08);
  transform: rotateX(66deg) rotateZ(22deg);
  animation: rring1 11s linear infinite;
}
/* Ring médio 2 — cyan, perpendicular */
.orb-ring-mid-2 {
  width: 284px; height: 284px; border-width: 1px;
  border-right-color: rgba(34,211,238,.55);
  border-left-color: rgba(34,211,238,.12);
  transform: rotateX(80deg) rotateZ(88deg);
  animation: rring2 17s linear infinite;
}

@keyframes rring1 { to{ transform: rotateX(74deg) rotateZ(360deg); } }
@keyframes rring2 { to{ transform: rotateX(68deg) rotateZ(-310deg); } }

/* ── Orbital nodes (pontos que orbitam nos anéis) ─────────────────────── */
.orb-ring-node {
  position: absolute;
  width: 7px; height: 7px; border-radius: 50%;
  top: -4px; left: 50%;
  transform: translateX(-50%);
}
.orb-rn-1 {
  background: rgba(59,91,255,1);
  box-shadow: 0 0 12px rgba(59,91,255,1), 0 0 24px rgba(59,91,255,.5);
}
.orb-rn-2 {
  width: 5px; height: 5px; top: -3px;
  background: rgba(34,211,238,1);
  box-shadow: 0 0 10px rgba(34,211,238,1), 0 0 20px rgba(34,211,238,.5);
}
.orb-rn-3 {
  width: 6px; height: 6px; top: -3px;
  background: rgba(59,91,255,.9);
  box-shadow: 0 0 10px rgba(59,91,255,.9), 0 0 18px rgba(59,91,255,.4);
}

/* ── Data stream lines (linhas de dados saindo do núcleo) ─────────────── */
.orb-data-lines {
  position: absolute; inset: 0; pointer-events: none;
}
.odl {
  position: absolute;
  left: 50%; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(59,91,255,.5), transparent);
  transform-origin: left center;
  animation: odl-fade 3s ease-in-out infinite;
}
.odl-1 { width: 90px;  transform: rotate(45deg);  animation-delay: 0s; }
.odl-2 { width: 70px;  transform: rotate(135deg); animation-delay: .75s; }
.odl-3 { width: 110px; transform: rotate(225deg); animation-delay: 1.5s;
         background: linear-gradient(90deg, rgba(34,211,238,.4), transparent); }
.odl-4 { width: 80px;  transform: rotate(315deg); animation-delay: 2.25s; }
@keyframes odl-fade {
  0%,100%{ opacity: 0; }
  25%,75% { opacity: 1; }
}

/* ── Particles ────────────────────────────────────────────────────────── */
.orb-particles { position: absolute; inset: 0; pointer-events: none; }
.orb-p {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: var(--c, rgba(59,91,255,.9));
  box-shadow: 0 0 6px var(--c, rgba(59,91,255,.8));
  animation: pfloat var(--d) ease-in-out infinite alternate;
}
@keyframes pfloat {
  0%  { transform: translate(0,0) scale(1);   opacity: .75; }
  100%{ transform: translate(5px,-10px) scale(.6); opacity: .1; }
}

/* ── Core sphere ──────────────────────────────────────────────────────── */
.orb-core {
  position: relative; z-index: 10;
  width: 196px; height: 196px;
}
.orb-core-inner {
  width: 100%; height: 100%; border-radius: 50%;
  position: relative; overflow: hidden;
  /* Gradiente de fundo da esfera: profundidade */
  background:
    radial-gradient(circle at 36% 30%,
      rgba(55,90,255,.52) 0%,
      rgba(20,32,80,.85) 45%,
      rgba(8,13,32,1) 100%
    );
  /* Borda da esfera */
  border: 1.5px solid rgba(59,91,255,.55);
  /* Sombras: outer glow + inner depth */
  box-shadow:
    /* Outer glow azul */
    0 0 0 1px rgba(34,211,238,.14),
    0 0 45px rgba(59,91,255,.6),
    0 0 90px rgba(59,91,255,.3),
    0 0 160px rgba(59,91,255,.12),
    /* Inner depth */
    inset 0 0 50px rgba(59,91,255,.22),
    inset 0 -30px 50px rgba(15,23,42,.6),
    inset 0 30px 40px rgba(59,91,255,.08);
  animation: cpulse 4.5s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}
@keyframes cpulse {
  0%,100%{
    box-shadow:
      0 0 0 1px rgba(34,211,238,.14),
      0 0 45px rgba(59,91,255,.6),
      0 0 90px rgba(59,91,255,.3),
      inset 0 0 50px rgba(59,91,255,.22);
  }
  50%{
    box-shadow:
      0 0 0 1px rgba(34,211,238,.25),
      0 0 65px rgba(59,91,255,.75),
      0 0 130px rgba(59,91,255,.4),
      inset 0 0 70px rgba(59,91,255,.35);
  }
}

/* Brilho interno do fundo (ponto quente azul) */
.orb-core-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 38% 32%,
    rgba(59,91,255,.7) 0%,
    rgba(34,211,238,.15) 35%,
    transparent 60%
  );
  pointer-events: none;
}

/* Anel interno (borda interna da esfera, linha de energia) */
.orb-core-inner-ring {
  position: absolute; inset: 8px; border-radius: 50%;
  border: 1px solid rgba(59,91,255,.2);
  background: transparent;
}

/* ── Símbolo V oficial ────────────────────────────────────────────────── */
.orb-symbol-wrap {
  position: relative; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 108px; height: 108px;
}
.orb-symbol-img {
  width: 100%; height: 100%;
  object-fit: contain;
  /* Filtro: aumenta brilho, adiciona glow, remove qualquer pixel muito escuro */
  filter:
    brightness(1.15)
    saturate(1.3)
    drop-shadow(0 0 16px rgba(59,91,255,.95))
    drop-shadow(0 0 32px rgba(59,91,255,.6))
    drop-shadow(0 0 8px rgba(34,211,238,.7));
  animation: symglow 4.5s ease-in-out infinite;
  /* Anti-aliasing */
  image-rendering: -webkit-optimize-contrast;
}
@keyframes symglow {
  0%,100%{
    filter:
      brightness(1.15) saturate(1.3)
      drop-shadow(0 0 14px rgba(59,91,255,.9))
      drop-shadow(0 0 28px rgba(59,91,255,.55))
      drop-shadow(0 0 7px rgba(34,211,238,.65));
    transform: scale(1);
  }
  50%{
    filter:
      brightness(1.25) saturate(1.5)
      drop-shadow(0 0 22px rgba(59,91,255,1))
      drop-shadow(0 0 44px rgba(59,91,255,.7))
      drop-shadow(0 0 12px rgba(34,211,238,.9));
    transform: scale(1.03);
  }
}

/* Brilho sobre o símbolo (efeito holográfico, reflexo de luz) */
.orb-symbol-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,.12) 0%,
    transparent 40%,
    transparent 70%,
    rgba(34,211,238,.06) 100%
  );
  border-radius: 4px;
  pointer-events: none;
}

/* Reflexo de vidro no topo da esfera */
.orb-core-glass {
  position: absolute;
  top: 6%; left: 14%; right: 38%; height: 38%;
  background: linear-gradient(170deg,
    rgba(255,255,255,.14) 0%,
    rgba(255,255,255,.05) 50%,
    transparent 100%
  );
  border-radius: 50% 50% 40% 40% / 55% 55% 35% 35%;
  pointer-events: none; z-index: 4;
}

/* Aro de brilho na borda da esfera */
.orb-core-rim {
  position: absolute; inset: -1px; border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(59,91,255,.4), rgba(34,211,238,.3)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none; z-index: 5;
}

/* ── Scan lines ───────────────────────────────────────────────────────── */
/* Scan vertical */
.orb-scan {
  position: absolute; z-index: 11;
  left: calc(50% - 98px); width: 196px; height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(34,211,238,.5) 35%,
    rgba(34,211,238,.95) 50%,
    rgba(34,211,238,.5) 65%,
    transparent
  );
  filter: blur(.5px);
  animation: scanv 4s ease-in-out infinite;
}
@keyframes scanv {
  0%  { top: calc(50% - 99px); opacity: 0; }
  7%  { opacity: 1; }
  93% { opacity: 1; }
  100%{ top: calc(50% + 99px); opacity: 0; }
}

/* Scan horizontal (perpendicular, mais raro) */
.orb-scan-h {
  position: absolute; z-index: 11;
  top: calc(50% - 1px); height: 1px;
  left: calc(50% - 98px); width: 196px;
  background: linear-gradient(90deg,
    transparent,
    rgba(59,91,255,.4) 40%,
    rgba(59,91,255,.7) 50%,
    rgba(59,91,255,.4) 60%,
    transparent
  );
  animation: scanh 8s ease-in-out infinite 3s;
  opacity: 0;
}
@keyframes scanh {
  0%,100%{ opacity: 0; }
  10%,90%{ opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HUD CARDS v3 — Premium floating modules
   ══════════════════════════════════════════════════════════════════════════ */
.hcard {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  /* Glassmorphism premium */
  background: rgba(13,19,40,.82);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 11px 14px;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 8px 32px rgba(0,0,0,.55),
    0 2px 0 rgba(255,255,255,.05) inset,
    0 0 0 1px rgba(255,255,255,.04);
  white-space: nowrap; z-index: 20;
  min-width: 168px;
  transition: box-shadow .3s, border-color .3s;
}
.hcard:hover {
  border-color: rgba(59,91,255,.35);
  box-shadow:
    0 12px 40px rgba(0,0,0,.6),
    0 0 20px rgba(59,91,255,.15),
    0 2px 0 rgba(255,255,255,.06) inset;
}

/* LED de status (indicador ativo) */
.hcard-led {
  position: absolute; top: 10px; right: 12px;
  width: 6px; height: 6px; border-radius: 50%;
  animation: led-pulse 2s ease-in-out infinite;
}
.hcard-led-red   { background: #F87171; box-shadow: 0 0 6px #F87171; }
.hcard-led-blue  { background: #93C5FD; box-shadow: 0 0 6px #93C5FD; }
.hcard-led-green { background: #6EE7B7; box-shadow: 0 0 6px #6EE7B7; }
.hcard-led-cyan  { background: #22D3EE; box-shadow: 0 0 6px #22D3EE; }
@keyframes led-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* Ícone container */
.hcard-icon-wrap {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hcard-iw-fire  { background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.2); }
.hcard-iw-ai    { background: rgba(59,91,255,.12);  border: 1px solid rgba(59,91,255,.25); }
.hcard-iw-chart { background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.2); }
.hcard-iw-auto  { background: rgba(34,211,238,.1);  border: 1px solid rgba(34,211,238,.2); }

/* Corpo do card */
.hcard-body { flex: 1; min-width: 0; }
.hcard-title {
  font-size: .74rem; font-weight: 700;
  color: #F8FAFC; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hcard-sub {
  font-size: .63rem; color: #64748B; margin-top: 2px; font-weight: 500;
}

/* Score badge (card 1) */
.hcard-score {
  font-size: .65rem; font-weight: 800;
  padding: 2px 7px; border-radius: 20px;
  flex-shrink: 0;
}
.hcard-score-red {
  background: rgba(239,68,68,.15);
  color: #FCA5A5; border: 1px solid rgba(239,68,68,.25);
}

/* Pulsing dot (card 4 — sistema ativo) */
.hcard-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22D3EE; flex-shrink: 0;
  animation: pdot 1.5s ease-in-out infinite;
}
@keyframes pdot {
  0%,100%{ transform: scale(1);    opacity: 1;  box-shadow: 0 0 0 0 rgba(34,211,238,.6); }
  50%    { transform: scale(1.15); opacity: .9; box-shadow: 0 0 0 5px rgba(34,211,238,0); }
}

/* Posições e animações dos cards */
.hcard-1 { top: 8%;   left: -3%;  animation: hcf 5.2s ease-in-out infinite; }
.hcard-2 { top: 33%;  right: -5%; animation: hcf 6.1s ease-in-out infinite 1.1s; }
.hcard-3 { bottom: 33%; left: -5%; animation: hcf 5.7s ease-in-out infinite .5s; }
.hcard-4 { bottom: 8%; right: -3%; animation: hcf 7.3s ease-in-out infinite 1.7s; }
@keyframes hcf {
  0%,100%{ transform: translateY(0px); }
  50%    { transform: translateY(-11px); }
}

/* ── Responsive orb v3 ────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .orb-scene { width: 440px; height: 440px; }
  .orb-ring-outer-1 { width: 366px; height: 366px; }
  .orb-ring-outer-2 { width: 400px; height: 400px; }
  .orb-ring-mid-1   { width: 296px; height: 296px; }
  .orb-ring-mid-2   { width: 250px; height: 250px; }
  .hcard-1 { left: 0; }
  .hcard-2 { right: 0; }
  .hcard-3 { left: 0; }
  .hcard-4 { right: 0; }
}
@media (max-width: 900px) {
  .orb-scene { width: 330px; height: 330px; }
  .orb-core  { width: 148px; height: 148px; }
  .orb-symbol-wrap { width: 82px; height: 82px; }
  .orb-ring-outer-1 { width: 275px; height: 275px; }
  .orb-ring-outer-2 { width: 306px; height: 306px; }
  .orb-ring-mid-1   { width: 218px; height: 218px; }
  .orb-ring-mid-2   { width: 184px; height: 184px; }
  .orb-scan,
  .orb-scan-h { left: calc(50% - 74px); width: 148px; }
  @keyframes scanv {
    0%{top:calc(50% - 75px);opacity:0}
    7%{opacity:1} 93%{opacity:1}
    100%{top:calc(50% + 75px);opacity:0}
  }
  .hcard-1 { top: 2%;  left: 0; }
  .hcard-2 { top: 24%; right: 0; }
  .hcard-3 { bottom: 24%; left: 0; }
  .hcard-4 { bottom: 2%; right: 0; }
  .hcard { min-width: 148px; padding: 9px 11px; }
  .hcard-title { font-size: .7rem; }
  .odl { display: none; }
}
@media (max-width: 600px) {
  .orb-scene { width: 272px; height: 272px; }
  .orb-core  { width: 120px; height: 120px; }
  .orb-symbol-wrap { width: 66px; height: 66px; }
  .orb-ring-outer-1 { width: 224px; height: 224px; }
  .orb-ring-outer-2 { width: 252px; height: 252px; }
  .orb-ring-mid-1   { width: 178px; height: 178px; }
  .orb-ring-mid-2   { width: 150px; height: 150px; }
  .orb-scan,
  .orb-scan-h { left: calc(50% - 60px); width: 120px; }
  @keyframes scanv {
    0%{top:calc(50% - 61px);opacity:0}
    7%{opacity:1} 93%{opacity:1}
    100%{top:calc(50% + 61px);opacity:0}
  }
  .hcard { min-width: 136px; padding: 8px 10px; gap: 8px; }
  .hcard-title { font-size: .67rem; }
  .hcard-sub   { font-size: .6rem; }
  .hcard-icon-wrap { width: 28px; height: 28px; }
  .orb-ring-node { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NUCLEUS v4 — logov.png oficial com mix-blend-mode:multiply
   Substitui qualquer .orb-core anterior.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Núcleo central ──────────────────────────────────────────────────────── */
.orb-nucleus {
  position: absolute;
  z-index: 10;
  width: 250px; height: 250px;
  display: flex; align-items: center; justify-content: center;
  /* Isolation: garante que o blend mode não sangre para fora */
  isolation: isolate;
}

/* Halo: glow azul grande e suave atrás da esfera */
.nucleus-halo {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(59,91,255,.32)  0%,
    rgba(34,211,238,.14) 38%,
    transparent          68%
  );
  filter: blur(28px);
  animation: nucleus-halo-breathe 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes nucleus-halo-breathe {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%     { transform: scale(1.1); opacity: .78; }
}

/* ── A esfera principal ──────────────────────────────────────────────────── */
.nucleus-sphere {
  position: relative;
  width: 250px; height: 250px;
  border-radius: 50%;

  /* FUNDO CLARO NO CENTRO → ESCURO NAS BORDAS
     Branco do PNG × branco da esfera = desaparece (multiply)
     Azul/cyan do V × branco = azul/cyan preservado perfeitamente */
  background: radial-gradient(circle at 50% 44%,
    #FFFFFF           0%,
    #EEF5FF          16%,
    #C8DDFF          32%,
    rgba(100,155,255,.85) 52%,
    rgba(30, 50,120,.92)  70%,
    rgba(10, 16, 38,.97)  86%,
    rgba( 8, 13, 30, 1)  100%
  );

  /* Overflow: recorta logo e layers internas em círculo */
  overflow: hidden;

  /* Borda + glow externo */
  box-shadow:
    0 0 0 1.5px rgba(59,91,255,.55),
    0 0 0 3px   rgba(34,211,238,.14),
    0 0  70px   rgba(59,91,255,.7),
    0 0 140px   rgba(59,91,255,.35),
    0 0 240px   rgba(59,91,255,.15),
    inset 0 0 30px rgba(59,91,255,.08);

  animation: nucleus-sphere-pulse 5s ease-in-out infinite;
}
@keyframes nucleus-sphere-pulse {
  0%,100% {
    box-shadow:
      0 0 0 1.5px rgba(59,91,255,.55),
      0 0 0 3px   rgba(34,211,238,.14),
      0 0  70px   rgba(59,91,255,.7),
      0 0 140px   rgba(59,91,255,.35),
      inset 0 0 30px rgba(59,91,255,.08);
  }
  50% {
    box-shadow:
      0 0 0 1.5px rgba(59,91,255,.75),
      0 0 0 3px   rgba(34,211,238,.28),
      0 0  95px   rgba(59,91,255,.85),
      0 0 190px   rgba(59,91,255,.50),
      inset 0 0 45px rgba(59,91,255,.16);
  }
}

/* ── Logo oficial logov.png ──────────────────────────────────────────────── */
.nucleus-logo {
  /* Ocupa todo o espaço circular — será recortada pelo overflow:hidden */
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;      /* preserva proporção, sem distorção */
  object-position: 52% 54%; /* pequeno ajuste para centralizar o V */

  /*
    MIX-BLEND-MODE: MULTIPLY
    ─────────────────────────
    Branco do PNG (255,255,255) × fundo branco da esfera (255,255,255)
    → resultado = branco → INVISÍVEL contra o fundo claro ✓

    Azul do V (#3B5BFF = 59,91,255) × fundo branco (255,255,255)
    → resultado = (59,91,255) = #3B5BFF → AZUL PRESERVADO ✓

    Nas bordas (fundo escuro):
    Azul × escuro → azul mais escuro → vinheta natural premium ✓
  */
  mix-blend-mode: multiply;

  z-index: 2;

  /* Pulsação suave — escala leve para "respirar" */
  animation: nucleus-logo-breathe 5s ease-in-out infinite;

  /* Sharpness */
  image-rendering: -webkit-optimize-contrast;
  -webkit-transform: translateZ(0); /* GPU layer */
}
@keyframes nucleus-logo-breathe {
  0%,100% { transform: scale(1);    }
  50%     { transform: scale(1.03); }
}

/* ── Atmospheric edge — escurece as bordas internas da esfera ────────────── */
.nucleus-atm {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    transparent         40%,
    rgba(8,13,30,.22)   65%,
    rgba(8,13,30,.55)   85%,
    rgba(8,13,30,.80)  100%
  );
  z-index: 3;
  pointer-events: none;
}

/* ── Reflexo de vidro — brilho no topo da esfera ────────────────────────── */
.nucleus-glass {
  position: absolute;
  top: 5%; left: 10%;
  width: 50%; height: 40%;
  background: radial-gradient(ellipse at 35% 28%,
    rgba(255,255,255,.22) 0%,
    rgba(255,255,255,.08) 48%,
    transparent          100%
  );
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  z-index: 4;
  pointer-events: none;
}

/* ── Aro de borda luminosa (fora da esfera, não recortado) ───────────────── */
.nucleus-rim {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  /* Gradiente de borda: azul brilhante no topo, cyan sutil no fundo */
  background: linear-gradient(
    145deg,
    rgba(59,91,255,.7)  0%,
    rgba(34,211,238,.5) 35%,
    transparent         60%,
    rgba(59,91,255,.2)  100%
  ) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  animation: nucleus-rim-spin 12s linear infinite;
}
@keyframes nucleus-rim-spin {
  to { transform: rotate(360deg); }
}

/* ── Scan lines atualizadas para a nova esfera (250px) ───────────────────── */
.orb-scan {
  position: absolute; z-index: 11;
  left: calc(50% - 125px); width: 250px; height: 1.5px;
  background: linear-gradient(90deg,
    transparent,
    rgba(34,211,238,.45) 32%,
    rgba(34,211,238,.9)  50%,
    rgba(34,211,238,.45) 68%,
    transparent
  );
  filter: blur(.4px);
  animation: scan-v4 4s ease-in-out infinite;
}
@keyframes scan-v4 {
  0%  { top: calc(50% - 126px); opacity: 0; }
  6%  { opacity: 1; }
  94% { opacity: 1; }
  100%{ top: calc(50% + 126px); opacity: 0; }
}

.orb-scan-h {
  position: absolute; z-index: 11;
  top: calc(50% - 1px); left: calc(50% - 125px);
  width: 250px; height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(59,91,255,.35) 38%,
    rgba(59,91,255,.65) 50%,
    rgba(59,91,255,.35) 62%,
    transparent
  );
  animation: scan-h4 9s ease-in-out infinite 4s;
  opacity: 0;
}
@keyframes scan-h4 {
  0%,100% { opacity: 0; }
  12%,88% { opacity: 1; }
}

/* ── HUD Cards v4 — glassmorphism premium ────────────────────────────────── */
.hcard {
  position: absolute;
  display: flex; align-items: center; gap: 10px;

  background: rgba(10,17,40,.84);
  border-top:   1px solid rgba(255,255,255,.15);
  border-left:  1px solid rgba(255,255,255,.09);
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.05);
  border-radius: 14px;
  padding: 11px 15px;

  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);

  box-shadow:
    0 10px 40px rgba(0,0,0,.55),
    0 2px 0 rgba(255,255,255,.06) inset,
    0 0 0 1px rgba(255,255,255,.03);

  white-space: nowrap;
  z-index: 20;
  min-width: 168px;
  transition: box-shadow .35s ease, border-color .35s ease, transform .35s ease;
}
.hcard:hover {
  border-top-color: rgba(59,91,255,.45);
  border-left-color: rgba(59,91,255,.3);
  transform: translateY(-2px) !important;
  box-shadow:
    0 16px 48px rgba(0,0,0,.6),
    0 0 24px rgba(59,91,255,.2),
    0 2px 0 rgba(255,255,255,.07) inset;
}

/* LED de status */
.hcard-led {
  position: absolute; top: 11px; right: 13px;
  width: 6px; height: 6px; border-radius: 50%;
  animation: led-blink 2.2s ease-in-out infinite;
}
.hcard-led-red   { background: #F87171; box-shadow: 0 0 8px rgba(248,113,113,.7); }
.hcard-led-blue  { background: #93C5FD; box-shadow: 0 0 8px rgba(147,197,253,.7); }
.hcard-led-green { background: #6EE7B7; box-shadow: 0 0 8px rgba(110,231,183,.7); }
.hcard-led-cyan  { background: #22D3EE; box-shadow: 0 0 8px rgba(34,211,238,.7); }
@keyframes led-blink {
  0%,100%{ opacity: 1; }
  45%,55%{ opacity: .25; }
}

/* Ícone wrapper */
.hcard-icon-wrap {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hcard-iw-fire  { background: rgba(239,68,68,.11);  border: 1px solid rgba(239,68,68,.22); }
.hcard-iw-ai    { background: rgba(59,91,255,.12);  border: 1px solid rgba(59,91,255,.28); }
.hcard-iw-chart { background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.22); }
.hcard-iw-auto  { background: rgba(34,211,238,.1);  border: 1px solid rgba(34,211,238,.22); }

/* Texto */
.hcard-body { flex: 1; min-width: 0; }
.hcard-title {
  font-size: .74rem; font-weight: 700; color: #F8FAFC;
  line-height: 1.3; letter-spacing: -.01em;
}
.hcard-sub {
  font-size: .63rem; color: #64748B; margin-top: 2px;
  font-weight: 500; letter-spacing: .01em;
}

/* Score badge */
.hcard-score {
  font-size: .64rem; font-weight: 800;
  padding: 2px 7px; border-radius: 20px; flex-shrink: 0;
}
.hcard-score-red {
  background: rgba(239,68,68,.14); color: #FCA5A5;
  border: 1px solid rgba(239,68,68,.24);
}

/* Pulse dot */
.hcard-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22D3EE; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,211,238,.5);
  animation: pdot-v4 1.8s ease-out infinite;
}
@keyframes pdot-v4 {
  0%  { box-shadow: 0 0 0 0   rgba(34,211,238,.6); }
  70% { box-shadow: 0 0 0 7px rgba(34,211,238,0);  }
  100%{ box-shadow: 0 0 0 0   rgba(34,211,238,0);  }
}

/* Posições + float por card */
.hcard-1 { top: 8%;   left: -5%;  animation: hcf4 5.2s ease-in-out infinite;        }
.hcard-2 { top: 33%;  right: -6%; animation: hcf4 6.4s ease-in-out infinite 1.1s;   }
.hcard-3 { bottom: 30%; left: -6%; animation: hcf4 5.8s ease-in-out infinite .55s;  }
.hcard-4 { bottom: 7%; right: -4%; animation: hcf4 7.1s ease-in-out infinite 1.75s; }

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

/* ── Partículas v4 com cor individual ────────────────────────────────────── */
.orb-p {
  background: var(--c, rgba(59,91,255,.85));
  box-shadow: 0 0 8px var(--c, rgba(59,91,255,.7));
}

/* ── Responsive nucleus v4 ───────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .orb-nucleus   { width: 220px; height: 220px; }
  .nucleus-sphere{ width: 220px; height: 220px; }
  .nucleus-halo  { width: 330px; height: 330px; }
  .orb-scan, .orb-scan-h { left: calc(50% - 110px); width: 220px; }
  @keyframes scan-v4 {
    0%  { top: calc(50% - 111px); opacity: 0; }
    6%  { opacity: 1; } 94%{ opacity: 1; }
    100%{ top: calc(50% + 111px); opacity: 0; }
  }
  .hcard-1 { left: 0; } .hcard-3 { left: 0; }
  .hcard-2 { right:0; } .hcard-4 { right:0; }
}
@media (max-width: 900px) {
  .orb-scene     { width: 340px; height: 340px; }
  .orb-nucleus   { width: 190px; height: 190px; }
  .nucleus-sphere{ width: 190px; height: 190px; }
  .nucleus-halo  { width: 280px; height: 280px; }
  .orb-scan, .orb-scan-h { left: calc(50% - 95px); width: 190px; }
  @keyframes scan-v4 {
    0%  { top: calc(50% - 96px); opacity: 0; }
    6%  { opacity: 1; } 94%{ opacity: 1; }
    100%{ top: calc(50% + 96px); opacity: 0; }
  }
  /* Rings adjust */
  .orb-ring-outer-1 { width: 285px; height: 285px; }
  .orb-ring-outer-2 { width: 320px; height: 320px; }
  .orb-ring-mid-1   { width: 228px; height: 228px; }
  .orb-ring-mid-2   { width: 192px; height: 192px; }

  .hcard-1 { top: 2%;  left: 0; }
  .hcard-2 { top: 24%; right: 0; }
  .hcard-3 { bottom: 22%; left: 0; }
  .hcard-4 { bottom: 2%; right: 0; }
  .hcard   { min-width: 148px; padding: 9px 12px; }
  .hcard-title { font-size: .7rem; }
  .hcard-sub   { font-size: .61rem; }
  .odl         { display: none; }
}
@media (max-width: 600px) {
  .orb-scene     { width: 288px; height: 288px; }
  .orb-nucleus   { width: 158px; height: 158px; }
  .nucleus-sphere{ width: 158px; height: 158px; }
  .nucleus-halo  { width: 230px; height: 230px; }
  .orb-scan, .orb-scan-h { left: calc(50% - 79px); width: 158px; }
  @keyframes scan-v4 {
    0%  { top: calc(50% - 80px); opacity: 0; }
    6%  { opacity: 1; } 94%{ opacity: 1; }
    100%{ top: calc(50% + 80px); opacity: 0; }
  }
  .orb-ring-outer-1 { width: 238px; height: 238px; }
  .orb-ring-outer-2 { width: 270px; height: 270px; }
  .orb-ring-mid-1   { width: 190px; height: 190px; }
  .orb-ring-mid-2   { width: 160px; height: 160px; }

  .hcard           { min-width: 140px; padding: 8px 11px; gap: 8px; }
  .hcard-icon-wrap { width: 28px; height: 28px; }
  .hcard-title     { font-size: .67rem; }
  .hcard-sub       { font-size: .59rem; }
  .orb-ring-node   { display: none; }
  .hcard-1 { left: -2%; }
  .hcard-3 { left: -2%; }
  .hcard-2 { right: -2%; }
  .hcard-4 { right: -2%; }
}
