/* ===========================
   JARVIS ZAP — CSS Mobile First
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #6678FE;
  --purple:  #645CF3;
  --green:   #25D366;
  --dark:    #131321;
  --dark2:   #1a1a2e;
  --dark3:   #1e1e35;
  --card:    #1d1d30;
  --border:  rgba(102,120,254,0.18);
  --text:    #e8e8f5;
  --muted:   #8888a8;
  --white:   #ffffff;
  --red:     #FF4D6A;
  --yellow:  #FFB830;
  --gradient: linear-gradient(135deg, var(--blue), var(--purple));
  --shadow:  0 8px 40px rgba(100,92,243,0.18);
  --radius:  16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.wpp-green { color: var(--green) !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(102,120,254,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(102,120,254,0.55);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(102,120,254,0.4); }

.btn-wpp {
  background: #128C4A;
  color: #fff;
  box-shadow: 0 4px 24px rgba(18,140,74,0.35);
}
.btn-wpp:hover { transform: translateY(-2px); filter: brightness(1.1); }

.btn-sm  { padding: 9px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 32px; font-size: 16px; }
.btn-xl  { padding: 18px 36px; font-size: 17px; }
.btn-full { width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(19,19,33,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(19,19,33,0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
}
.logo-sm { font-size: 17px; }
.logo-icon {
  width: 32px; height: 32px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.logo-zap { color: var(--green); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(102,120,254,0.12);
  top: -100px; left: -150px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(100,92,243,0.1);
  bottom: -80px; right: -100px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.hero-content { text-align: center; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102,120,254,0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--blue); }

/* HERO PANEL */
.hero-panel {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.panel-dots { display: flex; gap: 6px; }
.panel-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.panel-dots span:nth-child(1) { background: #FF5F57; }
.panel-dots span:nth-child(2) { background: #FFBD2E; }
.panel-dots span:nth-child(3) { background: #28C840; }
.panel-title { font-size: 12px; color: var(--muted); }

.panel-stats {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.stat-card {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
}
.stat-card--green { border-color: rgba(37,211,102,0.3); }
.stat-card--yellow { border-color: rgba(255,184,48,0.3); }
.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-card--green .stat-num { color: var(--green); }
.stat-card--yellow .stat-num { color: var(--yellow); }
.stat-label { font-size: 11px; color: var(--muted); }

.panel-leads { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; }

.lead-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.lead-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.lead-info { flex: 1; min-width: 0; }
.lead-name { display: block; font-size: 13px; font-weight: 600; color: var(--white); }
.lead-msg { display: block; font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lead-tag {
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
  flex-shrink: 0;
}
.tag-new    { background: rgba(102,120,254,0.2); color: var(--blue); }
.tag-neg    { background: rgba(255,184,48,0.2);  color: var(--yellow); }
.tag-close  { background: rgba(37,211,102,0.2);  color: var(--green); }
.tag-client { background: rgba(100,92,243,0.2);  color: #a89eff; }

/* ========== SECTIONS COMUNS ========== */
.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  background: rgba(102,120,254,0.1);
  border: 1px solid rgba(102,120,254,0.25);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

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

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 560px;
}

/* ========== IMPACTO ========== */
.impact { background: var(--dark2); }

.scenario-lead {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text);
}

.bars-wrap { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bar-label {
  font-size: 13px;
  color: var(--text);
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bar-label i { font-size: 12px; }
.bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 99px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.bar-fill--green  { background: var(--green); }
.bar-fill--yellow { background: var(--yellow); }
.bar-fill--red    { background: var(--red); }
.bar-pct { font-size: 13px; font-weight: 700; color: var(--muted); min-width: 36px; text-align: right; }

.money-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,77,106,0.08);
  border: 1px solid rgba(255,77,106,0.25);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 48px;
}
.money-icon {
  font-size: 32px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.money-text p { margin-bottom: 6px; color: var(--text); }
.money-highlight {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0 !important;
}

.impact-after {
  margin-bottom: 36px;
}
.after-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.after-sub { color: var(--muted); margin-bottom: 14px; }
.after-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.after-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.after-list i { color: var(--red); }
.after-result { color: var(--muted); }

.double-loss {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(102,120,254,0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.loss-icon { font-size: 28px; color: var(--yellow); flex-shrink: 0; }
.double-loss h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.double-loss ul { list-style: none; }
.double-loss ul li {
  color: var(--muted);
  font-size: 14px;
  padding: 3px 0;
}
.double-loss ul li::before { content: "• "; color: var(--blue); }

/* ========== VISÃO ========== */
.vision { background: var(--dark3); }

.vision-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.vision-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease var(--delay, 0s), transform 0.5s ease var(--delay, 0s);
}
.vision-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.vision-item:hover { border-color: var(--blue); }

.vision-icon {
  width: 44px; height: 44px;
  background: rgba(102,120,254,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
}

.vision-closer {
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(102,120,254,0.05);
}
.vision-closer p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.vision-closer-highlight {
  font-size: 1.3rem !important;
  color: var(--text) !important;
  margin-bottom: 0 !important;
}

/* ========== SOLUÇÃO ========== */
.solution { background: var(--dark); }

.solution-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sol-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.25s, transform 0.25s;
}
.sol-item:hover {
  border-color: var(--blue);
  transform: translateX(6px);
}
.sol-icon {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

/* ========== FUNCIONALIDADES ========== */
.features { background: var(--dark2); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.fc-icon {
  width: 50px; height: 50px;
  background: rgba(102,120,254,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== VÍDEO ========== */
.video-section { background: var(--dark3); text-align: center; }

.video-wrap {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.video-placeholder {
  background: rgba(255,255,255,0.03);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: background 0.25s;
}
.video-placeholder:hover { background: rgba(102,120,254,0.08); }
.video-placeholder p { color: var(--muted); font-size: 15px; }

.video-play-btn {
  width: 72px; height: 72px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 0 32px rgba(102,120,254,0.45);
  transition: transform 0.25s;
}
.video-placeholder:hover .video-play-btn { transform: scale(1.1); }

.video-embed {
  aspect-ratio: 16/9;
  background: #000;
}
.video-embed iframe {
  width: 100%; height: 100%;
  display: block;
}

/* ========== PREÇO ========== */
.pricing { background: var(--dark); text-align: center; }

.pricing-card {
  background: var(--card);
  border: 1px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 60px rgba(102,120,254,0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}
.price-currency { font-size: 24px; font-weight: 700; color: var(--muted); margin-top: 10px; }
.price-value { font-size: 64px; font-weight: 900; color: var(--white); line-height: 1; }
.price-period { font-size: 16px; color: var(--muted); align-self: flex-end; margin-bottom: 8px; }

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.pricing-list i { color: var(--green); flex-shrink: 0; }

.pricing-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ========== CTA FINAL ========== */
.cta-final {
  background: var(--dark2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.cta-glow-1 {
  width: 400px; height: 400px;
  background: rgba(102,120,254,0.12);
  top: -120px; left: -80px;
}
.cta-glow-2 {
  width: 350px; height: 350px;
  background: rgba(100,92,243,0.1);
  bottom: -100px; right: -60px;
}

.cta-inner { position: relative; z-index: 2; }

.cta-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.cta-text--big {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ========== CONTATO ========== */
.contact {
  background: var(--dark3);
  padding: 48px 0;
}
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: left;
}
.contact-icon { font-size: 40px; }
.contact-label { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.contact-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-number:hover { color: var(--green); }

.contact-email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: left;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-email-row .contact-icon { font-size: 40px; color: var(--blue); }
.contact-email-row .contact-number { font-size: 1.1rem; }
.contact-email-row .contact-number:hover { color: var(--blue); }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ========== FLOATING WHATSAPP ========== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #128C4A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(18,140,74,0.45);
  z-index: 200;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(18,140,74,0.55);
}

.wpp-float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.wpp-float:hover .wpp-float-tooltip { opacity: 1; }

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE: TABLET 640px ========== */
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { gap: 12px; }
  .cta-btns { flex-direction: row; justify-content: center; }
}

/* ========== RESPONSIVE: DESKTOP 960px ========== */
@media (min-width: 960px) {
  .hero { padding: 140px 0 100px; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .hero-content {
    text-align: left;
    flex: 1;
  }
  .hero-subtitle { margin: 0 0 36px 0; }
  .badge-pill { justify-content: flex-start; }
  .hero-ctas { justify-content: flex-start; }
  .hero-trust { justify-content: flex-start; }
  .hero-panel { flex-shrink: 0; }

  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .vision-list { display: grid; grid-template-columns: 1fr 1fr; }
  .solution-grid { display: grid; grid-template-columns: 1fr 1fr; }
}
