:root {
  --primary: #c026d3;
  --primary-dark: #9d174d;
  --primary-light: #fce7f8;
  --accent: #f472b6;
  --accent-light: #fbe3ef;
  --bg: #fbf7fb;
  --surface: #ffffff;
  --text: #241a2e;
  --text-muted: #80708c;
  --border: #f0e4f0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 10px rgba(157, 23, 77, 0.06);
  --shadow-lg: 0 14px 40px rgba(157, 23, 77, 0.16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-word, .btn-primary, .btn-secondary, .lp-login-btn, .stat-num {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

a { text-decoration: none; color: inherit; }

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

/* Topbar */
.lp-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: transparent;
  transition: background .2s ease, box-shadow .2s ease;
}
.lp-topbar.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(157,23,77,0.08);
}

.lp-topbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-topbar .logo img {
  height: 64px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(157,23,77,0.18));
}
.lp-topbar .logo-word {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--primary-dark);
}
.lp-topbar .logo-word em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-nav {
  display: flex;
  gap: 28px;
}
.lp-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  opacity: .8;
  transition: opacity .15s ease, color .15s ease;
}
.lp-nav a:hover { opacity: 1; color: var(--primary-dark); }

.lp-login-btn {
  background: var(--surface);
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s ease;
  box-shadow: 0 2px 10px rgba(157,23,77,0.08);
}
.lp-login-btn:hover { background: var(--primary); color: #fff; }

/* Hero */
.hero {
  padding: 150px 0 90px;
  background: radial-gradient(circle at 80% 0%, var(--accent-light), transparent 55%),
              radial-gradient(circle at 0% 30%, var(--primary-light), transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero-copy { text-align: left; }
.hero img.hero-logo { height: 270px; margin: -30px 0 6px -20px; display: block; }
.hero h1 {
  font-size: 42px;
  line-height: 1.18;
  margin: 0 0 18px;
  font-weight: 800;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 0 34px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  z-index: 0;
}
.hero-blob-1 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: .35;
  top: -30px; right: 10px;
}
.hero-blob-2 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: .25;
  bottom: -20px; left: 0;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { text-align: center; }
  .hero p.subtitle { margin: 0 auto 34px; }
  .hero-ctas { justify-content: center; }
  .hero img.hero-logo { height: 190px; margin: 0 auto 6px; }
  .hero-visual { margin-top: 30px; }
  .lp-nav { display: none; }
}

/* Stats strip */
.stats-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-num { font-size: 30px; font-weight: 800; line-height: 1.1; }
.stat-label { font-size: 13px; opacity: .85; margin-top: 4px; line-height: 1.4; }

@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--primary); }

.hero-trust {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* Sections */
section { padding: 70px 0; }
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.feature-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.feature-card .icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 17px; margin: 0 0 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* Como funciona */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  text-align: center;
  padding: 10px;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 16px; margin: 0 0 8px; }
.step-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Bg alt */
.alt-bg { background: var(--surface); }

/* Para quem é */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.audience-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.audience-chip svg { width: 20px; height: 20px; color: var(--primary-dark); flex-shrink: 0; }

/* Cliente / case */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}
.client-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.client-card-cta {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--primary-light);
  border: 1px dashed var(--primary);
}
.client-cta-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.client-cta-icon svg { width: 22px; height: 22px; }
.client-card-cta h3 { margin: 0 0 8px; font-size: 17px; }
.client-card-cta p { margin: 0 0 18px; font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.client-card-cta .btn-secondary { padding: 11px 22px; font-size: 14px; }

@media (max-width: 880px) {
  .clients-grid { grid-template-columns: 1fr; }
}
.client-avatar {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.client-avatar svg { width: 32px; height: 32px; }
.client-info h3 { margin: 0 0 2px; font-size: 18px; }
.client-info .client-location { margin: 0 0 12px; font-size: 13px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.client-info .client-quote { margin: 0 0 14px; font-size: 14.5px; color: var(--text); line-height: 1.6; }
.client-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-dark);
}
.client-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .client-card { flex-direction: column; align-items: center; text-align: center; }
}

/* CTA final */
.cta-final {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 24px;
  padding: 54px 40px;
  text-align: center;
  color: #fff;
  margin: 0 24px;
}
.cta-final h2 { font-size: 28px; margin: 0 0 12px; font-weight: 800; }
.cta-final p { opacity: .9; margin: 0 0 26px; }
.cta-final .btn-primary { background: #fff; color: var(--primary-dark); }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 16px 20px;
  cursor: pointer;
}
.faq-question svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--primary-dark);
  transition: transform .2s ease;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
footer {
  padding: 50px 0 24px;
  color: var(--text-muted);
  font-size: 13.5px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-logo img { height: 40px; }
.footer-brand p { margin: 0; max-width: 280px; line-height: 1.55; }
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
  margin: 0 0 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--primary-dark); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12.5px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Modal (shared base) */
.lp-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(36,26,46,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.lp-modal-overlay.open { display: flex; }
.lp-modal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.lp-modal h3 { margin: 0 0 6px; font-size: 19px; }
.lp-modal p.hint { color: var(--text-muted); font-size: 13.5px; margin: 0 0 18px; }
.lp-modal input, .lp-modal textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 12px;
  font-family: inherit;
}
.lp-modal textarea { resize: vertical; min-height: 70px; }
.lp-modal button[type="submit"], .lp-modal button.lp-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.lp-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}
.lp-error-msg {
  color: #b91c1c;
  font-size: 13px;
  margin: -4px 0 12px;
  display: none;
}
.lp-success-msg {
  color: #065f46;
  font-size: 13.5px;
  margin: -4px 0 12px;
  display: none;
}

@media (max-width: 880px) {
  .features-grid, .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .hero { padding: 130px 0 60px; }
}
