@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&family=DM+Sans:wght@300;400;500&display=swap');
:root {
  --bg: #080810;
  --bg2: #0d0d1a;
  --bg3: #12121f;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --pink: #ff1d6e;
  --pink2: #ff4d8f;
  --purple: #7c3aed;
  --purple2: #9d5cf6;
  --cyan: #00d4ff;
  --amber: #f59e0b;
  --green: #10b981;
  --text: #ffffff;
  --text2: #a0a0b8;
  --nav-bg: rgba(8,8,16,0.88);
  --nav-link-hover: rgba(255,255,255,0.06);
  --modal-shadow: 0 40px 80px rgba(0,0,0,0.8);
  --input-placeholder: #444;
  --social-btn-bg: rgba(255,255,255,0.03);
  --social-btn-hover: rgba(255,255,255,0.07);
  --modal-close-bg: rgba(255,255,255,0.05);
  --modal-close-hover: rgba(255,255,255,0.1);
  --card-hover: rgba(255,29,110,0.05);
}
html[data-theme="light"] {
  --bg: #f2f1fc;
  --bg2: #ffffff;
  --bg3: #e8e6f8;
  --border: rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.13);
  --pink: #e8005a;
  --pink2: #f0326e;
  --purple: #6d28d9;
  --purple2: #7c3aed;
  --cyan: #0099cc;
  --amber: #d97706;
  --green: #059669;
  --text: #0f0e1a;
  --text2: #5a587a;
  --nav-bg: rgba(242,241,252,0.92);
  --nav-link-hover: rgba(0,0,0,0.05);
  --modal-shadow: 0 40px 80px rgba(0,0,0,0.18);
  --input-placeholder: #aaa;
  --social-btn-bg: rgba(0,0,0,0.03);
  --social-btn-hover: rgba(0,0,0,0.06);
  --modal-close-bg: rgba(0,0,0,0.04);
  --modal-close-hover: rgba(0,0,0,0.08);
  --card-hover: rgba(232,0,90,0.04);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 18px; line-height: 1.65; overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.mono { font-family: 'DM Mono', monospace; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
  padding: 0 5vw;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}
nav.scrolled { border-bottom-color: var(--border2); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.5px; }
.nav-logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--pink), var(--purple)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 6px 14px; border-radius: 8px; font-size: 14px; color: var(--text2); transition: all .2s; font-weight: 500; }
.nav-links a:hover { color: var(--text); background: var(--nav-link-hover); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-ghost { padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text2); border: 1px solid var(--border2); transition: all .2s; cursor: pointer; background: transparent; font-family: 'DM Sans', sans-serif; }
.btn-ghost:hover { color: var(--text); border-color: var(--border2); filter: brightness(1.2); }
.btn-primary { padding: 8px 22px; border-radius: 8px; font-size: 14px; font-weight: 600; color: #fff; background: var(--pink); border: none; cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif; position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); opacity: 0; transition: opacity .2s; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 25px rgba(255,29,110,0.4); }
.btn-primary:hover::before { opacity: 1; }

/* ─── HERO ─── */
#hero {
  /* min-height removido — criava vão preto entre a busca e esta seção */
  padding: 80px 5vw 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(124,58,237,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 30%, rgba(255,29,110,0.08) 0%, transparent 70%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(255,29,110,0.3);
  background: rgba(255,29,110,0.08);
  font-size: 12px; font-weight: 500; color: var(--pink2);
  margin-bottom: 28px;
  font-family: 'DM Mono', monospace;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); animation: pulse 2s infinite; position: relative; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.5; transform:scale(1.3); } }
.hero h1 { font-size: clamp(1.8rem, 3.2vw, 3.4rem); font-weight: 800; line-height: 1.0; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--pink); }
.hero p { font-size: 19px; color: var(--text2); line-height: 1.7; margin-bottom: 36px; max-width: 480px; font-weight: 300; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-lg { padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Syne', sans-serif; transition: all .2s; border: none; }
.btn-lg.primary { background: linear-gradient(135deg, var(--pink), #c2185b); color: #fff; box-shadow: 0 10px 30px rgba(255,29,110,0.35); }
.btn-lg.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,29,110,0.5); }
.btn-lg.secondary { background: rgba(255,255,255,0.06); border: 1px solid var(--border2); color: var(--text); }
.btn-lg.secondary:hover { background: rgba(255,255,255,0.1); }
.hero-social-proof { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.avatars { display: flex; }
.avatars span { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-right: -8px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.hero-dashboard { position: relative; z-index: 1; }

/* ─── DASHBOARD MOCKUP ─── */
.dashboard-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.dashboard-card::before {
  content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,29,110,0.6), rgba(124,58,237,0.6), transparent);
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-title { font-size: 12px; color: var(--text2); font-family: 'DM Mono', monospace; }
.dash-badge { font-size: 10px; padding: 3px 8px; border-radius: 4px; background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); font-family: 'DM Mono', monospace; }
.dash-score-row { display: flex; gap: 12px; margin-bottom: 16px; }
.score-box { flex: 1; background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.score-label { font-size: 10px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-family: 'DM Mono', monospace; }
.score-value { font-size: 24px; font-weight: 800; font-family: 'Syne', sans-serif; }
.score-value.pink { color: var(--pink); }
.score-value.green { color: var(--green); }
.score-value.amber { color: var(--amber); }
.score-delta { font-size: 10px; color: var(--green); margin-top: 2px; }
.dash-chart { background: var(--bg3); border-radius: 12px; border: 1px solid var(--border); padding: 14px; margin-bottom: 14px; height: 80px; position: relative; overflow: hidden; }
.chart-bars { display: flex; align-items: flex-end; gap: 3px; height: 50px; }
.chart-bars span { flex: 1; border-radius: 3px 3px 0 0; background: rgba(255,29,110,0.3); position: relative; overflow: hidden; transition: all 1s; }
.chart-bars span::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--pink), var(--purple2)); }
.chart-label { font-size: 9px; color: var(--text2); margin-top: 6px; font-family: 'DM Mono', monospace; }
.dash-row { display: flex; gap: 8px; }
.dash-ai-item { flex: 1; background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 10px; display: flex; align-items: center; gap: 8px; }
.ai-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ai-info { flex: 1; min-width: 0; }
.ai-name { font-size: 10px; font-weight: 600; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-top: 4px; overflow: hidden; }
.ai-bar-fill { height: 100%; border-radius: 2px; }
.dash-float {
  position: absolute; top: -20px; right: -20px;
  background: var(--bg2); border: 1px solid var(--border2); border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.float-score { font-size: 28px; font-weight: 800; font-family: 'Syne', sans-serif; color: var(--green); }
.float-label { font-size: 10px; color: var(--text2); font-family: 'DM Mono', monospace; }

/* ─── TICKER ─── */
#ticker { padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
.ticker-inner { display: flex; gap: 80px; animation: ticker 30s linear infinite; white-space: nowrap; width: max-content; }
.ticker-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text2); }
.ticker-item strong { color: var(--text); font-weight: 600; }
.ticker-sep { color: var(--border2); }
@keyframes ticker { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* ─── SECTIONS COMMON ─── */
section { padding: 60px 5vw; position: relative; z-index: 1; }
.section-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--pink); font-family: 'DM Mono', monospace; margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -1px; line-height: 1.0; margin-bottom: 12px; }
.section-title em { font-style: normal; color: var(--pink); }
.section-sub { font-size: 17px; color: var(--text2); max-width: 560px; font-weight: 300; margin-bottom: 36px; }
.section-header-centered { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ─── PROBLEMS ─── */
#problemas { background: var(--bg2); }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  position: relative; overflow: hidden; transition: all .3s;
}
.problem-card:hover { border-color: rgba(255,29,110,0.3); transform: translateY(-4px); }
.problem-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,29,110,0.05), transparent 60%); opacity: 0; transition: opacity .3s; }
.problem-card:hover::before { opacity: 1; }
.problem-icon { font-size: 28px; margin-bottom: 16px; }
.problem-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; font-family: 'Syne', sans-serif; }
.problem-desc { font-size: 16px; color: var(--text2); line-height: 1.6; }
.problem-loss { font-size: 11px; color: #ff4444; margin-top: 12px; padding: 4px 10px; background: rgba(255,68,68,0.1); border-radius: 4px; display: inline-block; font-family: 'DM Mono', monospace; border: 1px solid rgba(255,68,68,0.2); }

/* ─── COMO FUNCIONA ─── */
#como-funciona { position: relative; overflow: hidden; }
.how-bg { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%); pointer-events: none; }
.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps-container::before {
  content: '';
  position: absolute;
  top: 36px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--purple2), var(--cyan), transparent);
}
.step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; font-family: 'Syne', sans-serif;
  position: relative; z-index: 1;
}
.step-num-1 { background: rgba(255,29,110,0.15); border: 1px solid rgba(255,29,110,0.4); color: var(--pink); }
.step-num-2 { background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.4); color: var(--purple2); }
.step-num-3 { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); color: var(--cyan); }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 16px; color: var(--text2); line-height: 1.6; }

/* ─── IAs ─── */
#inteligencias { background: var(--bg2); }
.ia-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ia-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px;
  cursor: pointer; transition: all .3s; position: relative; overflow: hidden;
}
.ia-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.ia-card-glow { position: absolute; inset: 0; opacity: 0; transition: opacity .3s; border-radius: 16px; }
.ia-card:hover .ia-card-glow { opacity: 1; }
.ia-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.ia-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; font-family: 'Syne', sans-serif; }
.ia-card p { font-size: 15px; color: var(--text2); line-height: 1.5; }
.ia-tag { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; font-family: 'DM Mono', monospace; }

/* ─── STATS ─── */
#stats { padding: 40px 5vw; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat-item { text-align: center; flex: 1; }
.stat-number { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; font-family: 'Syne', sans-serif; letter-spacing: -1px; line-height: 1; }
.stat-number.pink { color: var(--pink); }
.stat-number.purple { color: var(--purple2); }
.stat-number.cyan { color: var(--cyan); }
.stat-number.amber { color: var(--amber); }
.stat-label { font-size: 13px; color: var(--text2); margin-top: 6px; }

/* ─── WOW ─── */
/* ─── WOW / KEYWORD ENGINE ─── */
#wow { position: relative; overflow: hidden; padding-top: calc(60px + 40px); padding-bottom: 60px; }
.wow-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,0.07) 0%, transparent 70%); pointer-events: none; }

.kw-engine { max-width: 900px; margin: 0 auto; }

/* Platform tabs */
.kw-platform-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.kw-ptab {
  display: flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 50px;
  border: 1px solid var(--border2); background: var(--bg2); color: var(--text2);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.kw-ptab:hover { border-color: var(--border2); color: var(--text); filter: brightness(1.1); }
.kw-ptab.active { color: #fff; border-color: transparent; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.kw-ptab[data-platform="mercadolivre"].active { background: linear-gradient(135deg, #d4a000, #f0c000); color: #000; }
.kw-ptab[data-platform="shopee"].active { background: linear-gradient(135deg, #e8530a, #f97316); }
.kw-ptab[data-platform="google"].active { background: linear-gradient(135deg, #1a73e8, #4285f4); }
.kw-ptab-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* Search area */
.kw-search-area { background: var(--bg2); border: 1px solid var(--border2); border-radius: 20px; padding: 20px 24px; box-shadow: 0 0 50px rgba(124,58,237,0.1); margin-bottom: 24px; }
.kw-input-row { display: flex; gap: 12px; align-items: center; }
.kw-input-wrap { flex: 1; display: flex; align-items: center; gap: 12px; background: var(--bg); border: 1px solid var(--border2); border-radius: 12px; padding: 12px 16px; position: relative; }
.kw-input-icon { font-size: 20px; flex-shrink: 0; }
.kw-real-input { flex: 1; background: transparent; border: none; outline: none; font-size: 16px; color: var(--text); font-family: 'DM Sans', sans-serif; }
.kw-real-input::placeholder { color: var(--text2); }
.kw-analyze-btn {
  padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border: none;
  cursor: pointer; font-family: 'Syne', sans-serif; transition: all .2s; white-space: nowrap;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.kw-analyze-btn:hover { box-shadow: 0 8px 24px rgba(255,29,110,0.4); transform: translateY(-1px); }
.kw-analyze-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.kw-btn-icon { font-size: 16px; }
.kw-searches-left { font-size: 12px; color: var(--text2); margin-top: 10px; font-family: 'DM Mono', monospace; text-align: center; }

/* Autocomplete */
.kw-autocomplete-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 200;
  background: var(--bg2); border: 1px solid var(--border2); border-radius: 12px;
  overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.3); display: none;
}
.kw-autocomplete-dropdown.open { display: block; }
.kw-ac-item { padding: 10px 16px; font-size: 14px; color: var(--text); cursor: pointer; display: flex; align-items: center; gap: 8px; transition: background .15s; }
.kw-ac-item:hover { background: var(--bg3); }
.kw-ac-icon { font-size: 12px; color: var(--text2); }

/* Loading panel */
.kw-loading-panel { text-align: center; padding: 50px 20px; }
.kw-spinner-ring {
  width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--pink);
  animation: kw-spin 0.8s linear infinite; margin: 0 auto 20px;
}
@keyframes kw-spin { to { transform: rotate(360deg); } }
.kw-loading-msg { font-size: 14px; color: var(--text2); font-family: 'DM Mono', monospace; margin-bottom: 20px; min-height: 20px; }
.kw-progress-track { height: 3px; background: var(--bg3); border-radius: 2px; overflow: hidden; max-width: 300px; margin: 0 auto; }
.kw-progress-bar { height: 100%; background: linear-gradient(90deg, var(--pink), var(--purple)); border-radius: 2px; transition: width .4s ease; width: 0%; }

/* Results panel */
.kw-results-panel { opacity: 0; transform: translateY(16px); transition: opacity .4s ease, transform .4s ease; }
.kw-results-panel.kw-results-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:translateY(0); } }
.kw-product-img-placeholder { width: 56px; height: 56px; border-radius: 8px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }

/* Score row */
.kw-scores-row { display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start; }
.kw-score-main { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.kw-score-ring { position: relative; width: 80px; height: 80px; }
.kw-score-ring svg { width: 80px; height: 80px; }
.kw-score-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; font-family: 'Syne', sans-serif; }
.kw-score-main-label { font-size: 11px; color: var(--text2); text-align: center; font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.5px; }
.kw-score-cards { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.kw-scard { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; }
.kw-scard-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); font-family: 'DM Mono', monospace; margin-bottom: 4px; }
.kw-scard-val { font-size: 20px; font-weight: 800; font-family: 'Syne', sans-serif; }
.kw-scard-sub { font-size: 11px; color: var(--text2); margin-top: 2px; }
.kw-scard-sub.estimated { color: var(--amber); }
.kw-scard { transition: border-color .2s, box-shadow .2s; }
.kw-scard:hover { border-color: var(--border2); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.kw-scard-bar { height: 4px; background: var(--bg3); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.kw-scard-fill { height: 100%; border-radius: 2px; transition: width 1s ease; width: 0%; }

/* Sections */
.kw-section-block { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.kw-block-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; font-family: 'Syne', sans-serif; }
.kw-block-badge { font-size: 9px; padding: 2px 8px; border-radius: 4px; background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.25); font-family: 'DM Mono', monospace; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Tags */
.kw-tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.kw-tag { padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 500; background: var(--bg3); border: 1px solid var(--border2); color: var(--text); cursor: pointer; transition: all .15s; font-family: 'DM Sans', sans-serif; }
.kw-tag:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,29,110,0.06); }

/* Products grid */
.kw-products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.kw-product-card { display: flex; gap: 12px; background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-decoration: none; color: var(--text); transition: all .2s; }
.kw-product-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.kw-product-img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: var(--bg2); flex-shrink: 0; }
.kw-product-info { flex: 1; min-width: 0; }
.kw-product-title { font-size: 12px; font-weight: 600; line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 4px; }
.kw-product-price { font-size: 14px; font-weight: 800; color: var(--green); font-family: 'Syne', sans-serif; }
.kw-product-sold { font-size: 10px; color: var(--text2); margin-top: 2px; }

/* Gate */
.kw-gate-panel { text-align: center; padding: 60px 20px; background: var(--bg2); border: 1px solid var(--border2); border-radius: 20px; animation: fadeUp .4s ease; }
.kw-gate-icon { font-size: 48px; margin-bottom: 16px; }
.kw-gate-title { font-size: 24px; font-weight: 800; font-family: 'Syne', sans-serif; margin-bottom: 10px; letter-spacing: -0.5px; }
.kw-gate-sub { font-size: 15px; color: var(--text2); max-width: 420px; margin: 0 auto 28px; line-height: 1.6; }
.kw-gate-btn { padding: 16px 36px; border-radius: 12px; background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; font-size: 16px; font-weight: 700; border: none; cursor: pointer; font-family: 'Syne', sans-serif; transition: all .2s; }
.kw-gate-btn:hover { box-shadow: 0 8px 24px rgba(255,29,110,0.4); transform: translateY(-2px); }
.kw-gate-hint { font-size: 12px; color: var(--text2); margin-top: 12px; font-family: 'DM Mono', monospace; }

/* Light mode overrides */
html[data-theme="light"] .kw-search-area { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
html[data-theme="light"] .kw-autocomplete-dropdown { box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
html[data-theme="light"] .kw-product-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* Responsive */
@media (max-width: 640px) {
  .kw-input-row { flex-direction: column; }
  .kw-analyze-btn { width: 100%; justify-content: center; }
  .kw-scores-row { flex-direction: column; align-items: center; }
  .kw-score-cards { width: 100%; }
  .kw-products-grid { grid-template-columns: 1fr; }
}

/* ─── COMPARATIVO ─── */
#comparativo { background: var(--bg2); }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.compare-table th { padding: 20px 28px; font-size: 15px; font-weight: 700; font-family: 'Syne', sans-serif; }
.compare-table th:first-child { text-align: left; }
.compare-table th:not(:first-child) { text-align: center; width: 180px; }
.compare-table td { padding: 14px 28px; border-top: 1px solid var(--border); font-size: 14px; }
.compare-table td:first-child { color: var(--text2); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table thead tr { background: var(--bg3); }
.col-them { color: var(--text2); }
.col-arcane { color: var(--pink); }
th.col-arcane { background: rgba(255,29,110,0.08); border-top: 2px solid var(--pink); }
td.col-arcane { background: rgba(255,29,110,0.03); }
.check { color: var(--green); font-size: 16px; }
.cross { color: #555; font-size: 16px; }
.badge-check { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--green); font-family: 'DM Mono', monospace; }

/* ─── DEPOIMENTOS ─── */
#depoimentos { position: relative; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  position: relative; transition: all .3s;
}
.testimonial:hover { border-color: var(--border2); }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-role { font-size: 12px; color: var(--text2); }
.stars { color: var(--amber); font-size: 12px; margin-bottom: 12px; }
.testimonial p { font-size: 14px; color: var(--text2); line-height: 1.7; }
.testimonial-metric { margin-top: 16px; padding: 10px 14px; background: var(--bg); border-radius: 8px; border: 1px solid var(--border); }
.metric-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); font-family: 'DM Mono', monospace; }
.metric-value { font-size: 18px; font-weight: 800; font-family: 'Syne', sans-serif; }

/* ─── PLANOS ─── */
#planos { position: relative; overflow: hidden; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 32px;
  position: relative; overflow: hidden; transition: all .3s;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured {
  border: 1px solid rgba(255,29,110,0.4);
  background: linear-gradient(135deg, rgba(255,29,110,0.05), rgba(124,58,237,0.05));
  box-shadow: 0 0 60px rgba(255,29,110,0.1);
}
.plan-popular { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--pink), var(--purple)); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 5px 20px; border-radius: 0 0 10px 10px; font-family: 'DM Mono', monospace; }
.plan-name { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--text2); font-family: 'DM Mono', monospace; margin-bottom: 8px; }
.plan-price { margin-bottom: 6px; }
.plan-price-prefix { font-size: 16px; color: var(--text2); font-weight: 400; }
.plan-price-value { font-size: 48px; font-weight: 800; font-family: 'Syne', sans-serif; letter-spacing: -3px; }
.plan-price-suffix { font-size: 13px; color: var(--text2); }
.plan-desc { font-size: 13px; color: var(--text2); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan-features { list-style: none; margin-bottom: 28px; flex: 1; }
.plan-features li { font-size: 13px; color: var(--text2); padding: 7px 0; display: flex; align-items: flex-start; gap: 10px; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.plan-btn { width: 100%; padding: 14px; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Syne', sans-serif; transition: all .2s; border: none; text-align: center; }
.plan-btn.outline { background: transparent; border: 1px solid var(--border2); color: var(--text); }
.plan-btn.outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }
.plan-btn.filled { background: linear-gradient(135deg, var(--pink), #c2185b); color: #fff; box-shadow: 0 8px 24px rgba(255,29,110,0.3); }
.plan-btn.filled:hover { box-shadow: 0 12px 32px rgba(255,29,110,0.5); transform: translateY(-1px); }

/* ─── CTA FINAL ─── */
#cta-final {
  background: var(--bg2);
  text-align: center;
  padding: 70px 5vw;
  position: relative;
  overflow: hidden;
}
#cta-final::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(255,29,110,0.08) 0%, transparent 70%); pointer-events: none; }
#cta-final h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -2px; margin-bottom: 20px; position: relative; }
#cta-final h2 em { font-style: normal; color: var(--pink); }
#cta-final p { font-size: 18px; color: var(--text2); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; font-weight: 300; }

/* ─── FOOTER ─── */
footer {
  padding: 60px 5vw 40px;
  border-top: 1px solid var(--border);
}
.footer-top { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 60px; flex-wrap: wrap; }
.footer-cols-wrap { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 280px; }
.footer-brand p { font-size: 13px; color: var(--text2); margin-top: 12px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text2); font-family: 'DM Mono', monospace; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: var(--text2); transition: color .2s; }
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text2); flex-wrap: wrap; gap: 12px; }

/* ─── MODALS ─── */
.modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85); z-index: 9999;
  align-items: center; justify-content: center;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.modal-overlay.arcane-open {
  display: flex;
}
.modal {
  background: var(--bg2); border: 1px solid var(--border2); border-radius: 24px; padding: 40px;
  width: 90%; max-width: 440px; position: relative;
  transform: translateY(30px) scale(0.97); transition: all .3s;
  box-shadow: var(--modal-shadow);
}
.modal-overlay.active .modal { transform: none; }
.modal::before {
  content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--purple), transparent);
}
.modal-close { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; border-radius: 8px; background: var(--modal-close-bg); border: 1px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text2); transition: all .2s; }
.modal-close:hover { background: var(--modal-close-hover); color: var(--text); }
.modal h2 { font-size: 24px; font-weight: 800; letter-spacing: -1px; margin-bottom: 6px; }
.modal p { font-size: 14px; color: var(--text2); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; font-family: 'DM Mono', monospace; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: var(--bg); border: 1px solid var(--border2); color: var(--text);
  font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color .2s;
}
.form-input:focus { border-color: var(--pink); }
.form-input::placeholder { color: var(--input-placeholder); }
.social-btn {
  width: 100%; padding: 11px; border-radius: 10px; border: 1px solid var(--border2);
  background: var(--social-btn-bg); color: var(--text); font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px;
}
.social-btn:hover { background: var(--social-btn-hover); border-color: var(--border2); }
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.divider span { font-size: 12px; color: var(--text2); white-space: nowrap; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.modal-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text2); }
.modal-footer a { color: var(--pink2); }

/* ─── RESPONSIVE ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: 1px solid var(--border); border-radius: 8px; }
.hamburger span { width: 20px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all .3s; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; padding-top: 120px; gap: 40px; }
  .hero-dashboard { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .steps-container { grid-template-columns: 1fr; gap: 40px; }
  .steps-container::before { display: none; }
  .ia-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-v2 { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 12px; }
  .compare-table td, .compare-table th { padding: 12px 14px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .wow-results.active { grid-template-columns: 1fr 1fr; }
  .ext-layout { grid-template-columns: 1fr; gap: 40px; }
  .pct th:not(:first-child) { width: 90px; }
}
@media (max-width: 600px) {
  .ia-grid { grid-template-columns: 1fr; }
  .wow-results.active { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  section { padding: 44px 20px; }
  .hero h1 { letter-spacing: -0.5px; font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .section-title { font-size: clamp(1.3rem, 5.5vw, 2rem); }
  .stats-row { justify-content: center; }
  .stat-item { min-width: 120px; }
}

/* ─── ARCANE PROTOCOL SECTION ─── */
#arcane-protocol { position: relative; overflow: hidden; background: var(--bg2); }
.arc-proto-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,29,110,0.04) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,212,255,0.03) 0%, transparent 60%);
}
.arc-proto-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 4px;
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.2);
  font-size: 10px; font-weight: 700; font-family: 'DM Mono', monospace;
  letter-spacing: 1.5px; color: var(--green); text-transform: uppercase;
}
.arc-proto-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite; flex-shrink: 0;
}
.arc-proto-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; margin-bottom: 48px; padding: 12px 20px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 10px;
  font-size: 11px; font-family: 'DM Mono', monospace; color: var(--text2);
}
.arc-proto-bar-item { padding: 0 16px; display: flex; align-items: center; gap: 6px; }
.arc-proto-bar-item strong { color: var(--text); }
.arc-proto-bar-sep { color: var(--border2); }
.arc-proto-status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; display: inline-block; }
.arc-module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.arc-module {
  background: var(--bg); border: 1px solid var(--border); border-radius: 18px;
  padding: 24px; position: relative; overflow: hidden; transition: all .3s;
}
.arc-module:hover { border-color: var(--mc, var(--border2)); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--mc, transparent); }
.arc-module-top-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink), var(--purple)); }
.arc-module-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.arc-module-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border: 1px solid transparent; }
.arc-module-name { font-size: 16px; font-weight: 800; font-family: 'Syne', sans-serif; letter-spacing: -0.5px; }
.arc-module-tag { font-size: 8px; font-family: 'DM Mono', monospace; font-weight: 700; padding: 2px 7px; border-radius: 3px; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; display: inline-block; }
.arc-module-status { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 9px; font-family: 'DM Mono', monospace; color: var(--green); }
.arc-module-status-dot { width: 5px; height: 5px; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.arc-module h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; font-family: 'Syne', sans-serif; line-height: 1.3; }
.arc-module p { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.arc-module-mockup { border-radius: 10px; border: 1px solid var(--border); overflow: hidden; background: var(--bg3); }
.arc-module:nth-child(4), .arc-module:nth-child(5), .arc-module:nth-child(6) { grid-column: span 1; }
.arc-proto-footer {
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 16px; margin-top: 48px; text-align: center;
}
.arc-proto-footer-text { font-size: 14px; color: var(--text2); max-width: 480px; line-height: 1.6; }
@media (max-width: 900px) { .arc-module-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .arc-module-grid { grid-template-columns: 1fr; } .arc-proto-bar { display: none; } }
html[data-theme="light"] #arcane-protocol { background: var(--bg2); }
html[data-theme="light"] .arc-module { background: var(--bg2); }
html[data-theme="light"] .arc-proto-bar { background: var(--bg3); }

/* ─── (legacy chrome-api classes kept for CSS that may reference them) ─── */
.chrome-api-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.capi-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 18px; padding: 24px; position: relative; overflow: hidden; transition: all .3s; }
.capi-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.capi-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.capi-api-tag { font-size: 9px; font-family: 'DM Mono', monospace; font-weight: 600; padding: 3px 8px; border-radius: 4px; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.capi-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; font-family: 'Syne', sans-serif; }
.capi-card p { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 16px; }
.capi-mockup { border-radius: 10px; border: 1px solid var(--border); overflow: hidden; background: var(--bg3); }
.notif-mock { padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; }
.notif-icon { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg,var(--pink),var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.notif-body { flex: 1; min-width: 0; }
.notif-app { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); font-family: 'DM Mono', monospace; margin-bottom: 2px; }
.notif-title { font-size: 12px; font-weight: 700; margin-bottom: 2px; }
.notif-text { font-size: 11px; color: var(--text2); line-height: 1.4; }
.notif-actions { display: flex; gap: 6px; padding: 8px 14px; border-top: 1px solid var(--border); background: var(--bg); }
.notif-btn { flex: 1; text-align: center; font-size: 10px; font-weight: 600; padding: 5px; border-radius: 5px; border: 1px solid var(--border2); color: var(--text2); font-family: 'DM Mono', monospace; }
.notif-btn.primary { background: rgba(255,29,110,0.1); color: var(--pink); border-color: rgba(255,29,110,0.2); }
.ctxmenu { background: var(--bg); border: 1px solid var(--border2); border-radius: 8px; overflow: hidden; font-size: 12px; }
.ctxmenu-item { padding: 7px 14px; display: flex; align-items: center; gap: 8px; color: var(--text2); transition: background .15s; }
.ctxmenu-item:hover, .ctxmenu-item.active { background: rgba(255,29,110,0.1); color: var(--pink); }
.ctxmenu-item.active { font-weight: 700; }
.ctxmenu-sep { height: 1px; background: var(--border); margin: 3px 0; }
.ctxmenu-kbd { margin-left: auto; font-family: 'DM Mono', monospace; font-size: 9px; color: var(--text2); background: var(--bg2); padding: 2px 6px; border-radius: 3px; border: 1px solid var(--border); }
.sidepanel-mock { display: flex; }
.sidepanel-page { flex: 1; background: var(--bg); padding: 10px; font-size: 10px; color: var(--text2); border-right: 1px solid var(--border); min-height: 120px; }
.sidepanel-page .sp-product { background: var(--bg2); border-radius: 5px; padding: 8px; border: 1px solid var(--border); margin-bottom: 6px; }
.sidepanel-panel { width: 130px; background: var(--bg2); padding: 10px; flex-shrink: 0; }
.sp-header { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; }
.sp-logo { width: 14px; height: 14px; border-radius: 3px; background: linear-gradient(135deg,var(--pink),var(--purple)); }
.sp-title { font-size: 9px; font-weight: 700; font-family: 'Syne', sans-serif; }
.sp-score { text-align: center; padding: 8px 0; margin-bottom: 8px; }
.sp-score-val { font-size: 24px; font-weight: 800; font-family: 'Syne', sans-serif; color: var(--green); line-height: 1; }
.sp-score-label { font-size: 8px; color: var(--text2); font-family: 'DM Mono', monospace; margin-top: 2px; }
.sp-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.sp-row-label { font-size: 8px; color: var(--text2); font-family: 'DM Mono', monospace; }
.sp-row-val { font-size: 9px; font-weight: 700; font-family: 'Syne', sans-serif; }
.omni-mock { padding: 10px 12px; }
.omni-bar { background: var(--bg); border: 1px solid var(--border2); border-radius: 20px; padding: 6px 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.omni-text { font-size: 11px; font-family: 'DM Mono', monospace; color: var(--text); }
.omni-text em { font-style: normal; color: var(--pink); }
.omni-suggest { background: var(--bg); border: 1px solid var(--border2); border-radius: 10px; overflow: hidden; }
.omni-item { padding: 7px 12px; display: flex; align-items: center; gap: 8px; font-size: 11px; }
.omni-item:first-child { background: rgba(255,29,110,0.08); }
.omni-item-icon { font-size: 13px; }
.omni-item-main { font-family: 'DM Mono', monospace; }
.omni-item-sub { font-size: 9px; color: var(--text2); margin-top: 1px; }
.badge-mock { padding: 16px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.ext-icon-lg { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,var(--pink),var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 22px; position: relative; }
.ext-badge { position: absolute; top: -6px; right: -8px; background: var(--green); color: #fff; font-size: 9px; font-weight: 800; padding: 2px 5px; border-radius: 8px; border: 2px solid var(--bg3); font-family: 'DM Mono', monospace; animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.badge-info { font-size: 11px; color: var(--text2); line-height: 1.6; }
.badge-info strong { color: var(--green); display: block; font-size: 13px; margin-bottom: 2px; }
.sync-mock { padding: 10px 14px; }
.sync-device { display: flex; align-items: center; gap: 8px; padding: 6px 0; }
.sync-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.sync-name { font-size: 10px; color: var(--text2); font-family: 'DM Mono', monospace; flex: 1; }
.sync-status { font-size: 9px; color: var(--green); font-family: 'DM Mono', monospace; }
.sync-sep { height: 1px; background: var(--border); margin: 2px 0; }
.sync-item { display: flex; align-items: center; gap: 6px; padding: 5px 0; }
.sync-item-icon { font-size: 11px; }
.sync-item-text { font-size: 10px; color: var(--text2); font-family: 'DM Mono', monospace; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sync-item-count { font-size: 9px; color: var(--text2); background: var(--bg); border-radius: 3px; padding: 1px 5px; border: 1px solid var(--border); }
html[data-theme="light"] .chrome-api-grid .capi-card { background: var(--bg2); }
html[data-theme="light"] .ctxmenu { background: var(--bg2); }
html[data-theme="light"] .omni-bar { background: var(--bg2); }
html[data-theme="light"] .omni-suggest { background: var(--bg2); }
html[data-theme="light"] .notif-actions { background: var(--bg3); }
html[data-theme="light"] #chrome-apis { background: var(--bg); }
@media (max-width: 900px) { .chrome-api-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .chrome-api-grid { grid-template-columns: 1fr; } }

/* ─── THEME TOGGLE ─── */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border2); background: var(--modal-close-bg);
  cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: all .2s; flex-shrink: 0;
}
.theme-toggle:hover { background: var(--modal-close-hover); border-color: var(--border2); transform: scale(1.08); }

/* ─── LIGHT MODE OVERRIDES ─── */
html[data-theme="light"] body::before { opacity: 0.12; }
html[data-theme="light"] .hero-grid-lines {
  background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
html[data-theme="light"] .hero-bg-gradient {
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(109,40,217,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 30%, rgba(232,0,90,0.05) 0%, transparent 70%);
}
html[data-theme="light"] .dashboard-card { box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06); }
html[data-theme="light"] .dash-float { box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
html[data-theme="light"] #problemas { background: var(--bg2); }
html[data-theme="light"] #inteligencias { background: var(--bg3); }
html[data-theme="light"] #comparativo { background: var(--bg2); }
html[data-theme="light"] .problem-card:hover { border-color: rgba(232,0,90,0.25); }
html[data-theme="light"] .problem-card::before { background: linear-gradient(135deg, rgba(232,0,90,0.04), transparent 60%); }
html[data-theme="light"] .compare-table th { background: var(--bg3); }
html[data-theme="light"] th.col-arcane { background: rgba(232,0,90,0.06); border-top-color: var(--pink); }
html[data-theme="light"] td.col-arcane { background: rgba(232,0,90,0.02); }
html[data-theme="light"] .testimonial { background: var(--bg2); }
html[data-theme="light"] .testimonial-metric { background: var(--bg3); }
html[data-theme="light"] .wow-input-wrap { box-shadow: 0 0 30px rgba(109,40,217,0.06); }
html[data-theme="light"] .modal-overlay { background: rgba(15,14,26,0.6) !important; }
html[data-theme="light"] #cta-final::before { background: radial-gradient(ellipse, rgba(232,0,90,0.05) 0%, transparent 70%); }
html[data-theme="light"] .plan-card.featured { border-color: rgba(232,0,90,0.3); background: linear-gradient(135deg, rgba(232,0,90,0.04), rgba(109,40,217,0.04)); box-shadow: 0 0 40px rgba(232,0,90,0.07); }
html[data-theme="light"] .wow-card { background: var(--bg2); }
html[data-theme="light"] .step-num-1 { background: rgba(232,0,90,0.1); border-color: rgba(232,0,90,0.3); }
html[data-theme="light"] .step-num-2 { background: rgba(109,40,217,0.1); border-color: rgba(109,40,217,0.3); }
html[data-theme="light"] .step-num-3 { background: rgba(0,153,204,0.1); border-color: rgba(0,153,204,0.3); }
html[data-theme="light"] .hero-badge { border-color: rgba(232,0,90,0.25); background: rgba(232,0,90,0.06); }
html[data-theme="light"] .ia-card { background: var(--bg2); }
html[data-theme="light"] .plan-card { background: var(--bg2); }
html[data-theme="light"] .score-box { background: var(--bg3); }
html[data-theme="light"] .dash-chart { background: var(--bg3); }
html[data-theme="light"] .dash-ai-item { background: var(--bg3); }
html[data-theme="light"] .dashboard-card { background: var(--bg2); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
.js-reveal-ready .reveal { opacity: 0; transform: translateY(30px); }
.js-reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PROGRESS BAR ─── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 2000;
  background: linear-gradient(90deg, var(--pink), var(--purple2), var(--cyan));
  width: 0%; transition: width .1s linear;
}

/* ─── EXTENSION MOCKUP ─── */
#extensao { background: var(--bg2); overflow: hidden; }
.ext-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ext-browser { background: var(--bg3); border: 1px solid var(--border2); border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.4); position: relative; }
html[data-theme="light"] .ext-browser { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.ext-browser-bar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 10px 16px; display: flex; align-items: center; gap: 10px; }
.ext-dots { display: flex; gap: 5px; }
.ext-dots span { width: 8px; height: 8px; border-radius: 50%; }
.ext-url { flex: 1; background: var(--bg2); border-radius: 6px; padding: 5px 12px; font-size: 11px; color: var(--text2); font-family: 'DM Mono', monospace; border: 1px solid var(--border); }
.ext-icon-btn { width: 28px; height: 28px; border-radius: 6px; background: linear-gradient(135deg, var(--pink), var(--purple)); display: flex; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; }
.ext-page { padding: 16px; }
.ext-product-row { display: flex; gap: 12px; margin-bottom: 12px; }
.ext-product-img { width: 80px; height: 80px; border-radius: 8px; background: var(--bg); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.ext-product-info { flex: 1; }
.ext-product-title { font-size: 12px; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.ext-product-price { font-size: 16px; font-weight: 800; color: var(--pink); font-family: 'Syne', sans-serif; }
.ext-overlay { margin-top: 0; border-top: 1px solid var(--border); background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(255,29,110,0.05)); padding: 14px; }
.ext-overlay-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ext-overlay-logo { width: 20px; height: 20px; background: linear-gradient(135deg,var(--pink),var(--purple)); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 9px; }
.ext-overlay-title { font-size: 11px; font-weight: 700; font-family: 'Syne', sans-serif; }
.ext-overlay-badge { margin-left: auto; font-size: 9px; padding: 2px 6px; border-radius: 4px; background: rgba(16,185,129,0.15); color: var(--green); font-family: 'DM Mono', monospace; border: 1px solid rgba(16,185,129,0.3); }
.ext-scores { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px; }
.ext-score-item { background: var(--bg); border-radius: 8px; padding: 8px; border: 1px solid var(--border); text-align: center; }
.ext-score-label { font-size: 8px; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); font-family: 'DM Mono', monospace; margin-bottom: 3px; }
.ext-score-val { font-size: 16px; font-weight: 800; font-family: 'Syne', sans-serif; }
.ext-rec { font-size: 10px; color: var(--text2); padding: 6px 10px; background: var(--bg); border-radius: 6px; border: 1px solid var(--border); line-height: 1.5; }
.ext-rec strong { color: var(--green); }

/* ─── TESTIMONIALS V2 ─── */
.testimonials-v2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: all .3s; box-shadow: 0 4px 24px rgba(0,0,0,0.18); }
.testi-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 8px 36px rgba(0,0,0,0.28); }

/* WhatsApp chat header */
.wpp-header { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #075e54; }
html[data-theme="light"] .wpp-header { background: #075e54; }
.wpp-header-avatar { width: 34px; height: 34px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.wpp-header-info { flex: 1; }
.wpp-header-name { font-size: 13px; font-weight: 600; color: #fff; font-family: 'DM Sans', sans-serif; }
.wpp-header-status { font-size: 10px; color: rgba(255,255,255,0.75); font-family: 'DM Mono', monospace; }
.wpp-header-icon { font-size: 16px; color: rgba(255,255,255,0.8); }

/* Chat body */
.testi-proof {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 10c0 11-8 20-18 20' stroke='%23c8bdb5' stroke-width='.4' fill='none'/%3E%3C/svg%3E");
  padding: 12px 14px; border-bottom: 1px solid var(--border); position: relative; min-height: 140px; display: flex; flex-direction: column; gap: 4px;
}
html[data-theme="light"] .testi-proof { background: #e5ddd5; }

/* Bubbles dark mode */
.wpp-bubble { background: #202c33; border-radius: 0 10px 10px 10px; padding: 8px 12px; font-size: 13px; line-height: 1.5; color: #e9edef; max-width: 88%; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,0.35); }
.wpp-bubble.out { background: #005c4b; border-radius: 10px 0 10px 10px; color: #e9edef; margin-left: auto; }

/* Bubbles light mode */
html[data-theme="light"] .wpp-bubble { background: #ffffff; color: #111b21; box-shadow: 0 1px 3px rgba(0,0,0,0.18); }
html[data-theme="light"] .wpp-bubble.out { background: #d9fdd3; color: #111b21; }

.wpp-time { font-size: 10px; opacity: 0.7; text-align: right; margin-top: 3px; font-family: 'DM Mono', monospace; }

.testi-metric-bar { background: var(--bg3); border-bottom: 1px solid var(--border); padding: 12px 16px; display: flex; gap: 8px; }
.testi-m { flex: 1; text-align: center; }
.testi-m-label { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); font-family: 'DM Mono', monospace; margin-bottom: 4px; }
.testi-m-val { font-size: 20px; font-weight: 800; font-family: 'Syne', sans-serif; }
.testi-body { padding: 16px; }
.testi-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 15px; }
.testi-role { font-size: 12px; color: var(--text2); }
.testi-stars { font-size: 13px; color: var(--amber); letter-spacing: 1px; }
.testi-text { font-size: 14px; color: var(--text2); line-height: 1.65; font-style: italic; }

/* ─── PLANS COMPARISON TABLE ─── */
.plans-compare { margin-top: 48px; }
.plans-compare-title { text-align: center; font-size: 14px; color: var(--text2); margin-bottom: 20px; font-family: 'DM Mono', monospace; letter-spacing: 1px; text-transform: uppercase; }
.pct { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; font-size: 13px; }
.pct th { padding: 14px 20px; font-weight: 700; font-family: 'Syne', sans-serif; background: var(--bg3); border-bottom: 1px solid var(--border2); }
.pct th:first-child { text-align: left; }
.pct th:not(:first-child) { text-align: center; width: 130px; }
.pct th.pct-featured { background: rgba(255,29,110,0.08); color: var(--pink); border-top: 2px solid var(--pink); }
html[data-theme="light"] .pct th.pct-featured { background: rgba(232,0,90,0.06); }
.pct td { padding: 11px 20px; border-top: 1px solid var(--border); color: var(--text2); }
.pct td:not(:first-child) { text-align: center; }
.pct td.pct-featured { background: rgba(255,29,110,0.03); }
html[data-theme="light"] .pct td.pct-featured { background: rgba(232,0,90,0.02); }
.pct-check { color: var(--green); font-size: 15px; }
.pct-cross { color: var(--border2); font-size: 15px; }
.pct-partial { font-size: 11px; color: var(--amber); font-family: 'DM Mono', monospace; }
.pct-category { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text2); background: var(--bg3); font-family: 'DM Mono', monospace; padding: 8px 20px; font-weight: 600; }
.pct td:first-child { color: var(--text); }

/* ─── FAQ ─── */
#faq { background: var(--bg2); }
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--border2); }
.faq-q {
  padding: 18px 22px; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-weight: 600; font-size: 15px; font-family: 'Syne', sans-serif; transition: color .2s;
  user-select: none;
}
.faq-q:hover { color: var(--pink); }
.faq-arrow { font-size: 18px; color: var(--text2); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--pink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }
.faq-a p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   VISUAL UPGRADE — PREMIUM LANDING PAGE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO: neon glow orbs + scan line ─── */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); opacity: 0.45;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(124,58,237,0.25); top: -80px; left: -60px; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(255,29,110,0.18); top: 30%; right: -40px; animation-delay: -4s; }
@keyframes orbFloat { 0%,100%{ transform: translate(0,0); } 33%{ transform: translate(20px,-30px); } 66%{ transform: translate(-15px,20px); } }

.hero-scan {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-scan::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 2px; top: 0;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
  animation: scanDown 6s linear infinite;
}
@keyframes scanDown { 0%{ top: 0%; } 100%{ top: 100%; } }

/* ─── HERO: CTA glow pulse ─── */
.btn-lg.primary {
  position: relative; overflow: hidden;
}
.btn-lg.primary::after {
  content: '';
  position: absolute; inset: -2px; border-radius: 14px; z-index: -1;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  filter: blur(12px); opacity: 0;
  transition: opacity .3s;
}
.btn-lg.primary:hover::after { opacity: 0.6; }

/* ─── HERO BADGE: live pulse ring ─── */
.hero-badge-dot::before {
  content: '';
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); animation: pingRing 2s ease-out infinite; opacity: 0;
}
@keyframes pingRing { 0%{ transform: scale(1); opacity: 0.6; } 100%{ transform: scale(3); opacity: 0; } }

/* ─── WOW: AI status bar ─── */
.kw-ai-status {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.kw-ai-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: var(--bg2); border: 1px solid var(--border2);
  font-size: 11px; color: var(--text2); font-family: 'DM Mono', monospace;
}
.kw-ai-chip-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.kw-ai-chip-dot.green { background: var(--green); animation: pulse 2s infinite; }
.kw-ai-chip-dot.yellow { background: var(--amber); animation: pulse 2.4s infinite; }
.kw-ai-chip-dot.blue { background: var(--cyan); animation: pulse 1.8s infinite; }

/* ─── WOW: animated border on search area ─── */
.kw-search-area {
  position: relative;
}
.kw-search-area::before {
  content: '';
  position: absolute; inset: -1px; border-radius: 21px; z-index: -1;
  background: linear-gradient(135deg, rgba(255,29,110,0.3), rgba(124,58,237,0.3), rgba(0,212,255,0.2));
  opacity: 0; transition: opacity .4s;
}
.kw-search-area:focus-within::before { opacity: 1; }

/* ─── COMO FUNCIONA: pipeline cards ─── */
.steps-pipeline { display: flex; gap: 0; position: relative; align-items: stretch; }
.steps-pipeline::before { display: none; }
.pipeline-step {
  flex: 1; background: var(--bg2); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 24px; position: relative; transition: all .3s;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.pipeline-step:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.pipeline-step::after {
  content: '→';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-size: 20px; color: var(--pink); z-index: 2; font-weight: 700;
}
.pipeline-step:last-child::after { display: none; }
.pipeline-step-num {
  width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; font-family: 'Syne', sans-serif;
  position: relative; z-index: 1;
}
.pipeline-step-num::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: conic-gradient(var(--glow-color) 0deg, transparent 200deg);
  animation: spinGlow 4s linear infinite; opacity: 0.5;
}
@keyframes spinGlow { to { transform: rotate(360deg); } }
.ps1 { --glow-color: var(--pink); background: rgba(255,29,110,0.12); border: 1px solid rgba(255,29,110,0.3); color: var(--pink); }
.ps2 { --glow-color: var(--purple2); background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.3); color: var(--purple2); }
.ps3 { --glow-color: var(--cyan); background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25); color: var(--cyan); }
.pipeline-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; font-family: 'Syne', sans-serif; }
.pipeline-step p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.pipeline-step .step-tag {
  margin-top: 14px; font-size: 10px; font-family: 'DM Mono', monospace; font-weight: 600;
  padding: 3px 10px; border-radius: 4px; letter-spacing: 0.5px;
}
.ps1 .step-tag { background: rgba(255,29,110,0.1); color: var(--pink); }
.ps2 .step-tag { background: rgba(124,58,237,0.1); color: var(--purple2); }
.ps3 .step-tag { background: rgba(0,212,255,0.1); color: var(--cyan); }

/* ─── IA GRID: glassmorphism hover ─── */
.ia-card {
  backdrop-filter: blur(0px);
  transition: all .3s, backdrop-filter .3s;
}
.ia-card:hover {
  backdrop-filter: blur(8px);
  background: rgba(13,13,26,0.8);
}
html[data-theme="light"] .ia-card:hover { background: rgba(255,255,255,0.85); }

/* ─── AUTHORITY STATS BAR ─── */
#stats {
  background: linear-gradient(135deg, rgba(255,29,110,0.03), rgba(124,58,237,0.05), rgba(0,212,255,0.03));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(124,58,237,0.05), transparent);
  pointer-events: none;
}
.stat-item { position: relative; }
.stat-item::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.stat-item:last-child::after { display: none; }
.stat-number { background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
.stat-number.pink { background: linear-gradient(135deg, var(--pink), var(--pink2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-number.purple { background: linear-gradient(135deg, var(--purple2), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-number.cyan { background: linear-gradient(135deg, var(--cyan), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-number.amber { background: linear-gradient(135deg, var(--amber), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── SOFTWARE FEEL: log terminal ─── */
.hero-log-terminal {
  z-index: 2; margin-top: 8px; /* em fluxo: absolute sobrepunha os botoes sem o min-height 100vh */
  background: rgba(8,8,16,0.9); border: 1px solid rgba(16,185,129,0.2); border-radius: 10px;
  padding: 12px 16px; width: 340px; backdrop-filter: blur(12px);
  animation: slideUpLog 0.8s ease 1.5s both;
}
@keyframes slideUpLog { from{ opacity:0; transform:translateY(20px); } to{ opacity:1; transform:translateY(0); } }
.log-header { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.log-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.log-title { font-size: 10px; font-family: 'DM Mono', monospace; color: var(--text2); }
.log-lines { display: flex; flex-direction: column; gap: 4px; }
.log-line { font-size: 10px; font-family: 'DM Mono', monospace; display: flex; gap: 8px; }
.log-time { color: rgba(255,255,255,0.3); }
.log-tag { padding: 0 5px; border-radius: 3px; font-size: 9px; font-weight: 600; }
.log-tag.ok { background: rgba(16,185,129,0.15); color: var(--green); }
.log-tag.info { background: rgba(0,212,255,0.1); color: var(--cyan); }
.log-tag.warn { background: rgba(245,158,11,0.12); color: var(--amber); }
.log-msg { color: var(--text2); }
.log-line:nth-child(3) .log-msg { color: var(--green); }

/* ─── SOFTWARE FEEL: floating notification badge ─── */
.kw-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25);
  font-size: 10px; font-family: 'DM Mono', monospace; color: var(--green);
  margin-bottom: 12px;
}
.kw-live-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

/* ─── CTA FINAL: glow burst ─── */
#cta-final .btn-lg.primary {
  font-size: 17px; padding: 18px 44px;
  box-shadow: 0 0 30px rgba(255,29,110,0.3), 0 16px 40px rgba(255,29,110,0.25);
  animation: ctaGlowPulse 3s ease-in-out infinite;
}
@keyframes ctaGlowPulse {
  0%,100%{ box-shadow: 0 0 30px rgba(255,29,110,0.3), 0 16px 40px rgba(255,29,110,0.25); }
  50%{ box-shadow: 0 0 50px rgba(255,29,110,0.5), 0 20px 60px rgba(255,29,110,0.4); }
}

/* ─── PROBLEM CARDS: neon border hover ─── */
.problem-card:hover {
  box-shadow: 0 0 0 1px rgba(255,29,110,0.2), 0 12px 40px rgba(255,29,110,0.08), inset 0 0 30px rgba(255,29,110,0.03);
}

/* ─── METRIC COUNTERS: gradient text ─── */
.testi-m-val { background: linear-gradient(135deg, var(--text), rgba(255,255,255,0.8)); -webkit-background-clip: text; background-clip: text; }
.testi-m-val.green { background: linear-gradient(135deg, var(--green), #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.testi-m-val.pink { background: linear-gradient(135deg, var(--pink), var(--pink2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.testi-m-val.cyan { background: linear-gradient(135deg, var(--cyan), var(--purple2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── RESPONSIVE ENHANCEMENTS ─── */
@media (max-width: 900px) {
  .steps-pipeline { flex-direction: column; gap: 16px; }
  .pipeline-step::after { display: none; }
  .hero-log-terminal { display: none; }
}
@media (max-width: 600px) {
  .kw-ai-status { gap: 8px; }
  .kw-ai-chip { font-size: 10px; padding: 4px 10px; }
  #cta-final .btn-lg.primary { font-size: 15px; padding: 14px 28px; }
}

/* ─── LIGHT MODE OVERRIDES for new elements ─── */
html[data-theme="light"] .pipeline-step { background: var(--bg2); }
html[data-theme="light"] .pipeline-step:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
html[data-theme="light"] .hero-log-terminal { background: rgba(255,255,255,0.95); border-color: rgba(5,150,105,0.2); }
html[data-theme="light"] .log-msg { color: var(--text2); }
html[data-theme="light"] .log-time { color: rgba(0,0,0,0.3); }
html[data-theme="light"] .kw-ai-chip { background: var(--bg2); }
html[data-theme="light"] .stat-number { background: linear-gradient(135deg, #0f0e1a, rgba(15,14,26,0.7)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="light"] .stat-number.pink { background: linear-gradient(135deg, var(--pink), var(--pink2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="light"] .stat-number.purple { background: linear-gradient(135deg, var(--purple2), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="light"] .stat-number.cyan { background: linear-gradient(135deg, var(--cyan), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html[data-theme="light"] .stat-number.amber { background: linear-gradient(135deg, var(--amber), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════════════════════════
   FULL RESPONSIVE — MOBILE & TABLET OVERHAUL
   ═══════════════════════════════════════════════════════════ */

/* ─── Hamburger animation ─── */
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Banner ─── */
#top-banner { box-sizing: border-box; }
.banner-static { white-space: nowrap; }
.banner-marquee { display: none; white-space: nowrap; }

@media (max-width: 600px) {
  .banner-static { display: none; }
  .banner-marquee {
    display: inline-block;
    animation: bannerScroll 18s linear infinite;
    will-change: transform;
  }
}
@keyframes bannerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── TABLET (≤ 900px) ─── */
@media (max-width: 900px) {
  /* Nav links mobile (shown via JS) */
  .nav-links a { display: block; padding: 12px 16px; border-radius: 10px; font-size: 15px; }
  .nav-links a:hover { background: var(--nav-link-hover); }

  /* Testimonials: 2 cols on tablet */
  .testimonials-v2 { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Problems: 2 cols on tablet */
  .problems-grid { grid-template-columns: 1fr 1fr; }

  /* Stats: centered wrap */
  .stats-row { justify-content: center; gap: 0; flex-wrap: wrap; }
  .stat-item { flex: 0 0 33.33%; text-align: center; padding: 16px 8px; }
  .stat-item::after { display: none; }

  /* Plans comparison table: scrollable */
  .plans-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pct { min-width: 480px; }

  /* Section sub smaller */
  .section-sub { font-size: 15px; }

  /* Arc proto bar wrap */
  .arc-proto-bar { flex-wrap: wrap; justify-content: flex-start; gap: 6px 0; }

  /* Compare table */
  #comparativo { overflow-x: auto; }
  .compare-table { min-width: 560px; }

  /* Ext browser max width */
  .ext-browser { max-width: 100%; }

  /* CTA Final */
  #cta-final h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
}

/* ─── MOBILE (≤ 600px) ─── */
@media (max-width: 600px) {
  /* Banner */
  #top-banner { font-size: 11px; padding: 8px 16px; line-height: 1.4; }

  /* Nav */
  nav { height: 56px; padding: 0 16px; }
  .nav-logo { font-size: 17px; }
  .nav-cta .btn-ghost { display: none; }

  /* Hero — full width, readable */
  #hero {
    padding: 110px 20px 48px;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(1.65rem, 8vw, 2.4rem); letter-spacing: -1px; margin-bottom: 16px; }
  .hero p { font-size: 16px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-lg { width: 100%; text-align: center; padding: 15px 20px; font-size: 15px; justify-content: center; }
  .hero-social-proof { flex-wrap: wrap; gap: 10px; margin-top: 20px; }

  /* #wow */
  #wow { padding: 104px 16px 48px; }
  .kw-platform-tabs { gap: 8px; }
  .kw-ptab { padding: 8px 14px; font-size: 12px; gap: 6px; }
  .kw-ptab-dot { width: 7px; height: 7px; }
  .kw-search-area { padding: 14px 16px; }
  .kw-analyze-btn { padding: 12px 16px; font-size: 14px; }

  /* Stats: 2×3 grid */
  .stats-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; justify-items: center; }
  .stat-item { flex: none; width: 100%; padding: 12px 4px; }
  .stat-number { font-size: clamp(1.2rem, 4vw, 1.6rem); }
  .stat-label { font-size: 11px; }

  /* Problems: 1 col */
  .problems-grid { grid-template-columns: 1fr; }

  /* Testimonials: 1 col */
  .testimonials-v2 { grid-template-columns: 1fr; gap: 16px; }

  /* Plans */
  .plans-grid { gap: 14px; }
  .plan-card { padding: 24px 18px; }
  .plan-price-value { font-size: 40px; }
  .plans-compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pct { min-width: 420px; }

  /* Compare table */
  #comparativo { overflow-x: auto; }
  .compare-table { min-width: 520px; font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }

  /* CTA Final */
  #cta-final { padding: 56px 20px; }
  #cta-final h2 { font-size: clamp(1.7rem, 7vw, 2.6rem); letter-spacing: -1px; margin-bottom: 16px; }
  #cta-final p { font-size: 15px; margin-bottom: 28px; }
  #cta-final .btn-lg.primary { width: 100%; max-width: 340px; font-size: 16px; padding: 16px 20px; }

  /* Footer */
  footer { padding: 48px 20px 32px; }
  .footer-top { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Extension section */
  #extensao { padding: 44px 16px; }
  .ext-layout { gap: 28px; }
  .ext-scores { grid-template-columns: repeat(3, 1fr); }

  /* Arcane Protocol */
  #arcane-protocol { padding: 44px 16px; }
  .arc-proto-bar { display: none; }

  /* Section common */
  section { padding: 44px 16px; }
  .section-sub { font-size: 14px; margin-bottom: 20px; }
  .section-title { font-size: clamp(1.35rem, 6vw, 2rem); }

  /* FAQ */
  .faq-q { font-size: 14px; padding: 14px 16px; }
  .faq-a { padding: 0 16px; }
  .faq-item.open .faq-a { padding: 0 16px 14px; }
  .faq-a p { font-size: 13px; }

  /* Pipeline steps */
  .steps-pipeline { gap: 10px; }
  .pipeline-step { padding: 20px 16px; }
  .pipeline-step-num { width: 50px; height: 50px; font-size: 18px; margin-bottom: 14px; }
  .pipeline-step h3 { font-size: 16px; }
  .pipeline-step p { font-size: 13px; }

  /* IA cards */
  .ia-card { padding: 20px; }

  /* Ticker */
  .ticker-inner { gap: 40px; }
  .ticker-item { font-size: 12px; }
}

/* ─── Extension section: hide mockup on mobile/tablet ─── */
@media (max-width: 900px) {
  #extensao .reveal:last-child { display: none; }
  .ext-layout { grid-template-columns: 1fr; }
}

/* ─── Footer mobile ─── */
@media (max-width: 600px) {
  footer { padding: 40px 16px 28px; }
  .footer-top { flex-direction: column; gap: 28px; margin-bottom: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-brand p { font-size: 13px; }
  .footer-cols-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px; width: 100%; }
  .footer-col h4 { font-size: 11px; margin-bottom: 12px; }
  .footer-col ul li { margin-bottom: 6px; }
  .footer-col ul li a { font-size: 13px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; padding-top: 20px; }
  .footer-bottom span { font-size: 12px; }
}

/* ─── SMALL MOBILE (≤ 380px) ─── */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.3rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item:last-child { grid-column: 1 / -1; }
  .kw-ptab span:not(.kw-ptab-dot) { display: none; }
}

/* ─── FONTES MAIORES no desktop (pedido Dani 07/07) ─── */
@media (min-width: 901px) {
  body { zoom: 1.15; }
}

/* ─── CONVERSÃO: trust badges, garantia, sticky mobile (15/07) ─── */
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badges span {
  font-size: 12.5px; font-weight: 600; color: var(--text2);
  font-family: 'DM Mono', monospace; padding: 6px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
}
.guarantee-box {
  max-width: 440px; font-size: 13px; line-height: 1.6; color: var(--text2);
  background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.28);
  border-radius: 14px; padding: 14px 20px;
}
.guarantee-box strong { color: var(--green); }

#sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(8,8,16,0.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border2);
}
#sticky-cta .sticky-cta-text { display: flex; flex-direction: column; line-height: 1.25; }
#sticky-cta .sticky-cta-text strong { font-size: 14px; color: var(--text); }
#sticky-cta .sticky-cta-text span { font-size: 11px; color: var(--text2); }
#sticky-cta button {
  flex-shrink: 0; border: none; cursor: pointer;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff; font-weight: 800; font-size: 14px; letter-spacing: 0.3px;
  padding: 13px 22px; border-radius: 12px; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 6px 20px rgba(255,29,110,0.35);
}
@media (max-width: 900px) {
  #sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ─── Seletor Mensal/Anual (aparece só quando existe checkout anual) ─── */
#ciclo-toggle {
  display: none; gap: 4px; padding: 5px; margin: 0 auto 34px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border2);
  border-radius: 40px; width: fit-content;
}
.ciclo-btn {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  border: none; background: transparent; color: var(--text2);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  padding: 10px 22px; border-radius: 30px; transition: all .18s ease;
}
.ciclo-btn:hover { color: var(--text); }
.ciclo-btn.ativo {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: #fff; box-shadow: 0 4px 16px rgba(255,29,110,0.3);
}
.ciclo-badge {
  font-size: 10px; font-weight: 800; letter-spacing: .3px; white-space: nowrap;
  background: rgba(16,185,129,0.16); color: var(--green);
  border: 1px solid rgba(16,185,129,0.3); padding: 3px 8px; border-radius: 20px;
}
.ciclo-btn.ativo .ciclo-badge { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.3); }
.plan-eco {
  font-size: 11.5px; color: var(--green); font-weight: 700;
  margin: -6px 0 14px; font-family: 'DM Mono', monospace;
}
@media (max-width: 480px) {
  .ciclo-btn { padding: 9px 14px; font-size: 13px; }
  .ciclo-badge { font-size: 9px; padding: 2px 6px; }
}

/* ─── PACKS de análises (pré-pago) ─── */
#packs { padding-top: 40px; }
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 40px auto 0; }
.pack-card {
  position: relative; background: var(--card); border: 1px solid var(--border2);
  border-radius: 18px; padding: 30px 26px; text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pack-card:hover { transform: translateY(-4px); border-color: rgba(255,29,110,0.3); box-shadow: 0 16px 44px rgba(255,29,110,0.12); }
.pack-card.destaque { border-color: var(--pink); box-shadow: 0 0 60px rgba(255,29,110,0.15); }
.pack-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--pink), var(--purple)); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; padding: 5px 14px; border-radius: 20px; white-space: nowrap;
}
.pack-nome { font-size: 14px; font-weight: 700; color: var(--text2); letter-spacing: .5px; margin-bottom: 14px; }
.pack-qtd { font-size: 40px; font-weight: 900; color: var(--text); line-height: 1; }
.pack-qtd span { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-top: 6px; letter-spacing: .5px; }
.pack-preco {
  font-size: 30px; font-weight: 900; margin: 18px 0 4px;
  background: linear-gradient(90deg, var(--pink), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pack-unit { font-size: 12px; color: var(--text2); font-family: 'DM Mono', monospace; margin-bottom: 22px; }
.pack-btn {
  width: 100%; cursor: pointer; border: 1px solid var(--pink); background: transparent; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 14px; padding: 13px; border-radius: 12px; transition: all .18s ease;
}
.pack-btn:hover { background: rgba(255,29,110,0.08); }
.pack-btn.filled { background: linear-gradient(90deg, var(--pink), var(--purple)); border: none; color: #fff; box-shadow: 0 6px 20px rgba(255,29,110,0.3); }
.pack-btn.filled:hover { transform: translateY(-1px); box-shadow: 0 8px 26px rgba(255,29,110,0.4); }
.packs-rodape { text-align: center; margin-top: 28px; font-size: 13px; color: var(--text2); }
.packs-rodape a { color: var(--pink); font-weight: 700; text-decoration: none; }
.packs-rodape a:hover { text-decoration: underline; }
@media (max-width: 760px) {
  .packs-grid { grid-template-columns: 1fr; gap: 16px; max-width: 380px; }
}
