:root {
  --bg1: #0a0a1a;
  --bg2: #1a1a3a;
  --bg3: #12122a;

  --neon: #3bd5ff;
  --purple: #8a58ff;
  --pink: #ff6b9d;

  --text: #ffffff;
  --muted: #e3e8ef;
  --muted2: #8892a0;

  --danger: #ff4757;
  --success: #00d9a5;
  --success2: #00e5ff;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg1) 0%, var(--bg2) 50%, var(--bg3) 100%);
}

.app {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  opacity: 0.5;
  animation: float linear infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  border-bottom: none;
  transition: all 0.3s ease;
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(138, 88, 255, 0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--dark-space);
  border-radius: calc(var(--radius-md) - 2px);
}

.logo-icon svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
  padding: 10px 8px;
}
.nav-link:hover { color: #fff; }

.btn {
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 24px;
  padding: 14px 32px;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  user-select: none;
}
.btn:hover { transform: translateY(-2px); opacity: 0.95; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--neon));
  box-shadow: 0 0 30px rgba(138, 88, 255, 0.3);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--neon);
  color: var(--neon);
}
.btn-full { width: 100%; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(138, 88, 255, 0.15);
  border: 1px solid rgba(138, 88, 255, 0.3);
  border-radius: 32px;
  font-size: 0.9rem;
  color: var(--neon);
  margin-bottom: 24px;
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
}
.highlight { color: var(--pink); }
.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 0 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.loss-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: 16px;
  margin-bottom: 32px;
}
.loss-label { color: var(--muted); }
.loss-value { color: var(--danger); font-size: 1.3rem; }

/* Dots */
.dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.dot-pink { background: var(--pink); }
.dot-red { width: 10px; height: 10px; background: var(--danger); }
.blink { animation: blink 1s infinite; }

/* WhatsApp mock */
.wpp-mockup {
  background: #0b141a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 213, 255, 0.2);
  max-width: 380px;
  justify-self: end;
}
.wpp-header {
  background: #1f2c33;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wpp-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--neon), var(--purple));
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.wpp-title { font-weight: 600; font-size: 0.9rem; }
.wpp-status { font-size: 0.75rem; color: var(--success2); }
.wpp-messages {
  padding: 16px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: repeating-linear-gradient(
    45deg,
    #0b141a,
    #0b141a 10px,
    #0d1820 10px,
    #0d1820 20px
  );
}
.wpp-msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #fff;
}
.wpp-sent { background: #005c4b; align-self: flex-end; border-bottom-right-radius: 0; }
.wpp-received { background: #1f2c33; align-self: flex-start; border-bottom-left-radius: 0; }
.wpp-typing {
  display: flex;
  gap: 4px;
  padding: 12px;
}
.wpp-typing span {
  width: 8px;
  height: 8px;
  background: var(--muted2);
  border-radius: 999px;
}

/* Sections */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt {
  background: rgba(26, 26, 58, 0.3);
  max-width: 100%;
}
.section-roi {
  background: linear-gradient(180deg, transparent, rgba(255, 71, 87, 0.05), transparent);
  max-width: 100%;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon);
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted2);
  margin: 0;
}
.pink { color: var(--pink); }
.gradient-text {
  background: linear-gradient(135deg, var(--neon), var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pain */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: rgba(26, 26, 58, 0.4);
  border: 1px solid rgba(255, 71, 87, 0.2);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.pain-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(255, 71, 87, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.pain-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink);
  margin: 0 0 8px;
}
.pain-text {
  font-size: 0.85rem;
  color: var(--muted2);
  line-height: 1.5;
  margin: 0;
}

/* Agents */
.agent-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.agent-tab {
  padding: 16px 32px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  background: rgba(26, 26, 58, 0.4);
  color: #fff;
}
.agent-tab.active {
  background: rgba(138, 88, 255, 0.2);
  border-color: var(--purple);
}
.agent-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.agent-visual {
  background: rgba(26, 26, 58, 0.6);
  border: 1px solid rgba(138, 88, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
}
.agent-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
}
.agent-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 0 40px rgba(138, 88, 255, 0.3);
}
.agent-name { font-size: 1.8rem; font-weight: 800; margin: 0 0 8px; }
.agent-role { margin: 0 0 16px; }
.agent-capacity {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(10, 10, 26, 0.5);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}
.agent-invest {
  margin-top: 24px;
  padding: 16px;
  background: rgba(0, 217, 165, 0.1);
  border: 1px solid rgba(0, 217, 165, 0.3);
  border-radius: 12px;
}
.agent-invest-label { font-size: 0.8rem; color: var(--success2); }
.agent-invest-value { font-size: 2rem; font-weight: 900; color: var(--success); }

.agent-info { width: 100%; }
.agent-ideal {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.agent-what { font-size: 1.2rem; font-weight: 700; margin: 0 0 20px; }
.agent-features { display: flex; flex-direction: column; gap: 12px; }
.agent-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(26, 26, 58, 0.4);
  border-radius: 10px;
}
.agent-feature .check { color: var(--success); }

/* Numbers */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.number-card {
  background: rgba(26, 26, 58, 0.4);
  border: 1px solid rgba(59, 213, 255, 0.2);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s;
}
.number-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon), var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.number-label { font-size: 0.95rem; color: var(--muted); margin-top: 8px; }
.number-desc { font-size: 0.8rem; color: var(--muted2); margin-top: 4px; }

/* Calculator */
.calc-card {
  background: rgba(26, 26, 58, 0.6);
  border: 1px solid rgba(138, 88, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.calc-form {
  padding: 32px;
  border-bottom: 1px solid rgba(138, 88, 255, 0.2);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.85rem; color: var(--muted); }
.form-input {
  padding: 14px 18px;
  background: rgba(10, 10, 26, 0.6);
  border: 1px solid rgba(138, 88, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}
.form-input::placeholder { color: var(--muted2); }
.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(138, 88, 255, 0.2);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 32px;
}
.result-card {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}
.result-card.danger {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
}
.result-card.success {
  background: rgba(0, 217, 165, 0.1);
  border: 1px solid rgba(0, 217, 165, 0.3);
}
.result-card.highlight {
  background: linear-gradient(135deg, var(--purple), var(--neon));
  border: none;
}
.result-label { font-size: 0.8rem; color: #ff6b81; margin-bottom: 8px; }
.result-label.success { color: #00f5c4; }
.result-label.highlight { opacity: 0.9; color: #fff; }
.result-value { font-size: 1.5rem; font-weight: 800; }
.result-value.danger { color: var(--danger); font-size: 2rem; }
.result-value.success { color: var(--success); font-size: 2rem; }
.result-value.highlight { color: #fff; font-size: 2rem; }

.prejuizo-total {
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.15), rgba(255, 107, 129, 0.1));
  border-top: 1px solid rgba(255, 71, 87, 0.2);
  text-align: center;
}
.prejuizo-label { font-size: 0.9rem; color: #ff6b81; margin-bottom: 8px; }
.prejuizo-value { font-size: 3rem; font-weight: 900; color: var(--danger); }

.calc-cta {
  padding: 32px;
  background: rgba(138, 88, 255, 0.1);
  border-top: 1px solid rgba(138, 88, 255, 0.2);
  text-align: center;
}
.calc-cta-text {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}
.calc-cta-question {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}

.hidden { display: none; }
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-8 { margin-top: 8px; }

/* Pricing */
.pricing-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.compare-box { text-align: center; }
.compare-small { font-size: 0.85rem; color: var(--muted2); }
.compare-strike { font-size: 1.3rem; font-weight: 700; color: var(--pink); text-decoration: line-through; }
.compare-arrow { font-size: 2rem; color: var(--purple); }
.compare-good { font-size: 1.3rem; font-weight: 700; color: var(--success); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: rgba(26, 26, 58, 0.4);
  border: 1px solid rgba(138, 88, 255, 0.2);
  border-radius: 24px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card.featured {
  background: rgba(138, 88, 255, 0.15);
  border: 2px solid var(--purple);
  transform: scale(1.05);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--purple), var(--neon));
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-footer {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}
.pricing-head { text-align: center; margin-bottom: 24px; }
.pricing-emoji { font-size: 2.5rem; margin-bottom: 8px; }
.pricing-name { font-size: 1.3rem; font-weight: 800; margin: 0; }
.pricing-plan { font-size: 0.85rem; color: var(--muted2); margin-top: 6px; }
.pricing-price { text-align: center; margin-bottom: 24px; }
.pricing-price .rs { font-size: 1rem; color: var(--neon); }
.pricing-price .num { font-size: 3rem; font-weight: 900; }
.pricing-price .per { font-size: 0.9rem; color: var(--muted2); }
.pricing-cap {
  padding: 12px;
  background: rgba(10, 10, 26, 0.5);
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.pricing-feats { margin-bottom: 24px; }
.pricing-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(138, 88, 255, 0.1);
}
.pricing-feat .check { color: var(--success); }

/* Final CTA */
.final-cta {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: rgba(26, 26, 58, 0.6);
  border: 1px solid rgba(138, 88, 255, 0.3);
  border-radius: 24px;
  position: relative;
}
.final-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--neon), var(--purple), var(--pink));
  border-radius: 24px 24px 0 0;
}
.final-title { font-size: 2rem; font-weight: 800; margin: 0 0 16px; }
.final-text { color: var(--muted2); margin: 0 0 32px; line-height: 1.6; }
.final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-note { color: var(--pink); font-size: 0.9rem; margin-top: 20px; }

/* Footer */
.footer {
  padding: 48px 24px 24px;
  border-top: 1px solid rgba(138, 88, 255, 0.2);
  text-align: center;
  color: var(--muted2);
  font-size: 0.9rem;
}
.footer-logo {
  justify-content: center;
  margin-bottom: 16px;
}

/* WhatsApp Float */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 999;
  font-size: 1.8rem;
  border: none;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .wpp-mockup { justify-self: start; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .agent-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}
