:root {
  --black: #060709;
  --dark: #0b0c10;
  --gray-950: #101118;
  --gray-900: #15161e;
  --gray-850: #1a1b25;
  --gray-800: #21222e;
  --gray-700: #2e303f;
  --gray-600: #464860;
  --gray-500: #62647e;
  --gray-400: #8b8da8;
  --gray-300: #b0b2c8;
  --gray-200: #d0d2e0;
  --gray-100: #eaeaf2;
  --white: #f6f6fb;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-bright: #93bbfd;
  --blue-glow: rgba(59, 130, 246, 0.10);
  --blue-glow-strong: rgba(59, 130, 246, 0.18);
  --green: #22c55e;
  --green-glow: rgba(34, 197, 94, 0.10);
  --red: #ef4444;
  --red-glow: rgba(239, 68, 68, 0.08);
  --orange: #ff6b2b;
  --amber: #f59e0b;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-300);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ===================== POPUP / MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 9999;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 48px 40px;
  width: 90%;
  max-width: 440px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.modal::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 20px 20px 0 0; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--gray-850);
  color: var(--gray-400);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--gray-600); color: var(--white); }

.modal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.modal .modal-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

.modal .field { margin-bottom: 16px; }
.modal .field label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-400); margin-bottom: 6px; letter-spacing: 0.03em; }
.modal .field input {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.modal .field input::placeholder { color: var(--gray-700); }
.modal .field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }

.modal-btn {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}
.modal-btn:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,0.3); }
.modal-footer { text-align: center; font-size: 11px; color: var(--gray-600); margin-top: 14px; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(6,7,9,0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 10px 22px;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
  transition: all 0.25s !important;
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
}
.nav-cta:hover { background: var(--blue-light) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,0.3); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; width: 26px; height: 18px; position: relative; }
.mobile-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; position: absolute; left: 0; transition: all 0.3s; }
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 8px; }
.mobile-toggle span:nth-child(3) { top: 16px; }

/* ===================== SECTIONS ===================== */
section { padding: 110px 60px; position: relative; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--blue-light); }
.section-desc {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 700px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(59,130,246,0.35); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--gray-300);
  border: 1px solid var(--gray-700);
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--gray-500); color: var(--white); }

/* ===================== S1: HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 10%, rgba(59,130,246,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 30% 25% at 80% 80%, rgba(34,197,94,0.03) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-inner { max-width: 1100px; position: relative; z-index: 2; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--blue-glow);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s ease-out;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--gray-400);
  max-width: 800px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.hero-pain-gain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: left;
  animation: fadeInUp 0.7s ease-out 0.3s both;
}
.pg-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}
.pg-item.pain { color: var(--gray-400); }
.pg-item.gain { color: var(--gray-200); }
.pg-item .pg-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pg-item.pain .pg-icon { background: var(--red-glow); color: var(--red); }
.pg-item.gain .pg-icon { background: var(--green-glow); color: var(--green); }

/* VSL placeholder */
.vsl-wrapper {
  max-width: 900px;
  margin: 0 auto 44px;
  aspect-ratio: 16/9;
  background: var(--gray-950);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeInUp 0.7s ease-out 0.35s both;
}
.vsl-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.vsl-play-btn span { color: #fff; font-size: 28px; margin-left: 4px; }
.vsl-play-btn:hover { background: rgba(59,130,246,0.8); border-color: var(--blue-light); transform: translate(-50%, -50%) scale(1.08); }
.vsl-wrapper, .demo-video { position: relative; cursor: pointer; }

.hero-cta { animation: fadeInUp 0.7s ease-out 0.4s both; margin-bottom: 32px; }

.hero-social-proof {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
  animation: fadeInUp 0.7s ease-out 0.5s both;
}
.hero-social-proof strong { color: var(--white); }

/* ===================== S2: LOGOS ===================== */
.logos-section {
  padding: 60px 40px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.logos-wrapper { max-width: 1100px; margin: 0 auto; text-align: center; }
.logos-wrapper h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 0;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.logos-wrapper h2 strong { color: var(--accent); font-weight: 700; }

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-placeholder {
  width: 120px;
  height: 48px;
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===================== S3: BENEFÍCIOS ===================== */
.beneficios { background: var(--black); }
.ben-wrapper { max-width: 1200px; margin: 0 auto; }
.ben-header { text-align: center; margin-bottom: 56px; }
.ben-header .section-desc { margin: 0 auto; }

.ben-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ben-card {
  background: var(--gray-950);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}
.ben-card:hover { border-color: rgba(59,130,246,0.1); background: rgba(59,130,246,0.02); }
.ben-card .ben-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ben-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.ben-card p { font-size: 14px; line-height: 1.65; color: var(--gray-400); }

/* ===================== S4: POR DENTRO ===================== */
.demo {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.demo-wrapper { max-width: 1000px; margin: 0 auto; text-align: center; }
.demo-wrapper .section-desc { margin: 0 auto 40px; }

.demo-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-950);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 36px;
}
.demo-video .play-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  border: 2px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--blue-light);
}

/* ===================== S5: PRODUTOS / SOLUÇÃO ===================== */
.produtos { background: var(--black); }
.prod-wrapper { max-width: 1200px; margin: 0 auto; }
.prod-header { text-align: center; margin-bottom: 16px; }
.prod-header .section-desc { margin: 0 auto 56px; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.prod-card {
  background: var(--gray-950);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}
.prod-card:hover { border-color: rgba(59,130,246,0.1); }
.prod-card .prod-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.prod-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.prod-card p { font-size: 14px; line-height: 1.65; color: var(--gray-400); }
.prod-cta { text-align: center; }

/* ===================== S6: DEPOIMENTOS ===================== */
.depoimentos {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dep-wrapper { max-width: 1200px; margin: 0 auto; }
.dep-header { text-align: center; margin-bottom: 48px; }
.dep-header .section-desc { margin: 0 auto; }

.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }

.dep-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 32px 24px;
}
.dep-card .stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.dep-card blockquote { font-size: 14px; line-height: 1.7; color: var(--gray-300); font-style: italic; margin-bottom: 20px; }
.dep-card .d-author { display: flex; align-items: center; gap: 10px; }
.dep-card .d-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--blue); font-size: 14px;
}
.dep-card .d-author h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); }
.dep-card .d-author p { font-size: 11px; color: var(--gray-600); }
.dep-cta { text-align: center; }

/* ===================== S8: QUEM SOMOS ===================== */
.quem-somos {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.qs-wrapper { max-width: 1200px; margin: 0 auto; }
.qs-header { text-align: center; margin-bottom: 56px; }
.qs-header .section-desc { margin: 0 auto 32px; }

.qs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.qs-card {
  background: var(--gray-900);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.qs-card:hover { border-color: rgba(59,130,246,0.1); }
.qs-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.qs-card p { font-size: 12px; line-height: 1.55; color: var(--gray-500); }
.qs-cta { text-align: center; }

/* ===================== S9: FAQ ===================== */
.faq { background: var(--black); }
.faq-wrapper { max-width: 820px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header .section-desc { margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.04); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gray-500);
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 22px; font-size: 14px; line-height: 1.7; color: var(--gray-400); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--blue); color: var(--blue); }

/* ===================== FOOTER ===================== */
.lp-footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.lp-footer p { font-size: 12px; color: var(--gray-700); }
.lp-footer a { color: var(--gray-600); text-decoration: none; }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
.reveal { opacity:0; transform:translateY(30px); transition: all 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.active { opacity:1; transform:translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .qs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--black); padding: 32px 20px; gap: 20px; z-index: 999; }
  .nav-links.open a { font-size: 16px; }

  section { padding: 72px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-pain-gain { grid-template-columns: 1fr; }
  .ben-grid, .prod-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .qs-grid { grid-template-columns: 1fr; }
  .logos-grid { gap: 24px; }
  .logos-section { padding: 40px 20px; }
}
