:root {
  --bg: #fffdfb;
  --bg-soft: #f7f2ff;
  --text: #17111f;
  --muted: #5b6475;
  --muted-2: #7c879a;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.1);
  --line-strong: rgba(37, 99, 235, 0.18);
  --blue: #7c3aed;
  --blue-dark: #5b21b6;
  --violet: #7c3aed;
  --cyan: #06b6d4;
  --green: #16a34a;
  --gold: #f59e0b;
  --dark: #070b18;
  --dark-2: #241833;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 18px 50px rgba(37, 99, 235, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --header: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(124, 58, 237, 0.14), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.section { padding: 104px 0; position: relative; }
.section-glow { position: relative; overflow: hidden; }
.section-glow::before {
  content: "";
  position: absolute;
  inset: -120px -40px auto auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.17), transparent 70%);
  pointer-events: none;
}
.section-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
h1, h2, h3 { letter-spacing: -0.055em; line-height: 1.05; color: var(--text); }
h1 { font-size: clamp(42px, 6vw, 76px); font-weight: 900; }
h2 { font-size: clamp(32px, 4.6vw, 56px); font-weight: 900; margin-bottom: 18px; }
h3 { font-size: 22px; font-weight: 850; margin-bottom: 10px; }
p { color: var(--muted); font-size: 17px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06); }
.header-inner { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 900; letter-spacing: -0.04em; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: white; background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 14px 40px rgba(37, 99, 235, 0.24); }
.main-nav { display: flex; align-items: center; gap: 18px; color: #51445e; font-size: 14px; font-weight: 700; }
.main-nav a { transition: 0.2s ease; }
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 18px 50px rgba(37, 99, 235, 0.26); }
.btn-primary:hover { box-shadow: 0 24px 70px rgba(37, 99, 235, 0.34); }
.btn-secondary { background: rgba(255,255,255,0.9); border-color: var(--line); color: var(--text); box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06); }
.btn-ghost { color: #51445e; background: transparent; border-color: transparent; }
.btn-large { min-height: 54px; padding: 0 24px; font-size: 15px; }
.full-width { width: 100%; }
.mobile-menu-button { display: none; background: var(--white); border: 1px solid var(--line); width: 44px; height: 44px; border-radius: 14px; padding: 10px; }
.mobile-menu-button span { display: block; height: 2px; background: var(--text); border-radius: 2px; margin: 5px 0; }
.hero { padding: 96px 0 84px; }
.hero-grid { display: grid; grid-template-columns: 0.94fr 1.06fr; gap: 54px; align-items: center; }
.hero-subtitle { margin-top: 22px; font-size: 20px; max-width: 670px; color: #475569; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.center-actions { justify-content: center; }
.microcopy { font-size: 14px; color: var(--muted-2); margin-top: 14px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-badges span, .module-cloud span, .indicator-grid span, .automation-list span, .security-grid span, .trust-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  color: #51445e;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}
.dashboard-mockup { perspective: 1200px; }
.mockup-shell {
  min-height: 590px;
  display: grid;
  grid-template-columns: 82px 1fr;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(15,23,42,0.96), rgba(28,38,68,0.96));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 36px 110px rgba(15,23,42,0.32);
  transform: rotateY(-6deg) rotateX(3deg);
}
.mockup-sidebar { border-radius: 24px; background: rgba(255,255,255,0.05); padding: 18px 14px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.sidebar-logo { width: 34px; height: 34px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--violet)); }
.mockup-sidebar span { width: 36px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.16); }
.mockup-content { border-radius: 26px; background: linear-gradient(180deg, #fffdfb, #f7f2ff); padding: 22px; overflow: hidden; }
.mockup-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mockup-topbar strong { display: block; font-size: 18px; }
.mockup-topbar small, .metric-card small, .activity-card small, .mockup-list small { display: block; color: var(--muted-2); font-size: 12px; }
.mockup-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #f3e8ff, #ede9fe); border: 1px solid var(--line); }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.metric-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 16px; box-shadow: 0 14px 35px rgba(15,23,42,0.06); }
.metric-card span { display: block; font-size: 26px; font-weight: 900; letter-spacing: -0.05em; color: var(--blue); }
.mockup-main-row { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 12px; margin-top: 12px; }
.chart-card, .activity-card, .mockup-list { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 16px; box-shadow: 0 14px 35px rgba(15,23,42,0.06); }
.chart-header { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 13px; color: var(--muted); }
.bar-chart { height: 132px; display: flex; align-items: end; gap: 10px; }
.bar-chart i { flex: 1; display: block; border-radius: 999px 999px 8px 8px; background: linear-gradient(180deg, var(--violet), var(--blue)); }
.activity-card { display: grid; align-content: space-between; gap: 18px; }
.activity-card strong { display: block; font-size: 20px; color: var(--green); }
.mockup-list { margin-top: 12px; display: grid; gap: 10px; }
.mockup-list div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.mockup-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.mockup-list span { font-weight: 800; }
.pain-grid, .feature-grid, .persona-grid, .steps-grid, .pricing-grid, .security-grid, .trust-grid, .indicator-grid { display: grid; gap: 18px; }
.pain-grid { grid-template-columns: repeat(3, 1fr); margin-top: 38px; }
.pain-grid article { padding: 24px; border-radius: 22px; background: white; border: 1px solid var(--line); color: #51445e; font-weight: 800; box-shadow: 0 14px 36px rgba(15,23,42,0.05); }
.solution-section, .how-section, .trust-section { background: linear-gradient(180deg, rgba(239,246,255,0.72), rgba(248,251,255,0)); }
.section-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 58px; }
.align-center { align-items: center; }
.module-cloud, .automation-list { display: flex; flex-wrap: wrap; gap: 12px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); margin-top: 42px; }
.feature-card, .persona-card, .step-card, .large-card, .price-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
  position: relative;
  overflow: hidden;
}
.feature-card::before, .price-card::before, .large-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan));
}
.feature-card span, .step-card span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 14px; background: rgba(37,99,235,0.09); color: var(--blue); font-weight: 900; margin-bottom: 22px; }
.feature-card p, .persona-card p, .step-card p { font-size: 15px; }
.dark-section { background: radial-gradient(circle at 10% 20%, rgba(37,99,235,0.22), transparent 30%), linear-gradient(135deg, #17111f, #241833); color: white; overflow: hidden; }
.dark-section h2, .dark-section h3 { color: white; }
.dark-section p { color: #bac6d9; }
.check-list { list-style: none; display: grid; gap: 12px; margin: 28px 0; }
.check-list.two-columns { grid-template-columns: repeat(2, 1fr); }
.check-list li { color: #51445e; font-weight: 750; display: flex; align-items: flex-start; gap: 10px; }
.dark-section .check-list li { color: #e2e8f0; }
.check-list li::before, .benefit-list li::before {
  content: "";
  width: 20px; height: 20px; flex: 0 0 20px; border-radius: 50%;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.3);
  margin-top: 2px;
}
.phone-chat { max-width: 390px; min-height: 560px; margin-left: auto; border-radius: 42px; padding: 26px 20px; background: linear-gradient(180deg, #21152f, #151018); border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 30px 90px rgba(0,0,0,0.38); }
.phone-top { width: 118px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.18); margin: 0 auto 34px; }
.chat-bubble { max-width: 84%; padding: 14px 15px; border-radius: 18px; margin-bottom: 14px; font-size: 14px; }
.chat-bubble.incoming { background: #ffffff; color: #21152f; border-bottom-left-radius: 6px; }
.chat-bubble.outgoing { background: #dcfce7; color: #14532d; margin-left: auto; border-bottom-right-radius: 6px; }
.mobile-app-mockup { max-width: 360px; margin: 0 auto; padding: 16px; border-radius: 42px; background: linear-gradient(145deg, #21152f, #2b1939); box-shadow: 0 36px 90px rgba(15,23,42,0.24); }
.app-screen { min-height: 620px; background: #fffdfb; border-radius: 32px; padding: 24px; display: grid; align-content: start; gap: 14px; }
.app-header { background: linear-gradient(135deg, var(--blue), var(--violet)); color: white; padding: 22px; border-radius: 24px; }
.app-header strong, .app-header small { display: block; }
.app-header small { opacity: 0.78; margin-top: 4px; }
.app-card { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 18px; font-weight: 800; color: #51445e; box-shadow: 0 12px 26px rgba(15,23,42,0.06); }
.app-card.highlight { color: white; background: linear-gradient(135deg, #17111f, #273449); }
.app-nav { margin-top: 18px; display: flex; justify-content: space-around; background: #f7f2ff; padding: 14px; border-radius: 20px; }
.app-nav span { width: 24px; height: 8px; border-radius: 999px; background: #cbd5e1; }
.premium-band { background: linear-gradient(180deg, #ffffff, #f7f2ff); }
.finance-card { background: #17111f; color: white; border-radius: 34px; padding: 34px; box-shadow: 0 32px 100px rgba(15,23,42,0.28); }
.finance-card small { color: #94a3b8; display: block; }
.finance-card > strong { display: block; font-size: 52px; letter-spacing: -0.07em; margin: 6px 0 26px; }
.finance-lines { display: grid; gap: 12px; margin-bottom: 28px; }
.finance-lines span { display: block; height: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--violet)); }
.finance-row { display: flex; justify-content: space-between; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.split-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.indicator-grid, .security-grid, .trust-grid { grid-template-columns: repeat(5, 1fr); margin-top: 34px; }
.automation-section { background: radial-gradient(circle at 80% 20%, rgba(124,58,237,0.14), transparent 32%), #fff; }
.steps-grid { grid-template-columns: repeat(4, 1fr); margin-top: 36px; }
.persona-grid { grid-template-columns: repeat(3, 1fr); margin-top: 36px; }
.benefits-section { background: linear-gradient(135deg, #17111f, #241833); }
.benefits-section h2 { color: white; }
.benefit-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.benefit-list li { color: #e2e8f0; font-weight: 760; display: flex; align-items: flex-start; gap: 10px; }
.security-section { background: #f2fff6; }
.plans-section { background: white; }
.pricing-grid { grid-template-columns: repeat(4, 1fr); margin-top: 40px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; gap: 16px; }
.price-card.featured { transform: translateY(-16px); border-color: rgba(37,99,235,0.32); box-shadow: 0 32px 90px rgba(37,99,235,0.18); }
.plan-badge { width: max-content; padding: 7px 12px; border-radius: 999px; color: white; background: linear-gradient(135deg, var(--blue), var(--violet)); font-size: 12px; font-weight: 900; }
.price-card strong { display: block; font-size: 42px; letter-spacing: -0.07em; }
.price-card strong span { font-size: 15px; color: var(--muted); letter-spacing: 0; }
.price-card ul { list-style: none; display: grid; gap: 10px; margin: 4px 0 10px; }
.price-card li { color: #475569; font-size: 14px; font-weight: 700; }
.price-card .btn { margin-top: auto; }
.faq-list { max-width: 860px; display: grid; gap: 12px; margin-top: 36px; }
details { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 20px 22px; box-shadow: 0 12px 30px rgba(15,23,42,0.05); }
summary { cursor: pointer; font-weight: 850; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--blue); font-size: 24px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { margin-top: 14px; font-size: 15px; }
.contact-section { background: linear-gradient(180deg, #f7f2ff, #ffffff); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: start; }
.contact-note { margin-top: 28px; padding: 18px; border-radius: 20px; background: white; border: 1px solid var(--line); color: #475569; font-weight: 750; }
.contact-note a { color: var(--blue); }
.lead-form { background: white; border: 1px solid var(--line); border-radius: 30px; padding: 28px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 8px; font-size: 13px; font-weight: 850; color: #51445e; margin-bottom: 14px; }
input, select, textarea { width: 100%; border: 1px solid rgba(15,23,42,0.14); border-radius: 16px; min-height: 50px; padding: 0 14px; color: var(--text); background: #fffdfb; outline: none; transition: 0.2s ease; }
textarea { padding-top: 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(37,99,235,0.55); box-shadow: 0 0 0 4px rgba(37,99,235,0.09); background: white; }
.form-feedback { min-height: 22px; margin-top: 12px; font-size: 14px; color: var(--green); font-weight: 750; }
.form-feedback.is-error { color: #dc2626; }
.final-cta { padding: 92px 0; background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.18), transparent 38%), linear-gradient(135deg, #17111f, #241833); color: white; }
.final-cta h2 { color: white; }
.final-cta p { color: #bac6d9; max-width: 780px; margin: 0 auto; }
.site-footer { padding: 34px 0; background: #120d18; color: white; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner p { font-size: 14px; color: #94a3b8; }
.footer-inner a:not(.brand) { color: #d8b4fe; font-weight: 800; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 1120px) {
  .main-nav { display: none; }
  .mobile-menu-button { display: inline-block; order: 3; }
  .header-actions { margin-left: auto; }
  .main-nav.is-open { display: flex; position: fixed; left: 20px; right: 20px; top: 86px; flex-direction: column; align-items: stretch; padding: 18px; border-radius: 24px; background: rgba(255,255,255,0.96); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.is-open a { padding: 13px 14px; border-radius: 14px; }
  .main-nav.is-open a:hover { background: #f7f2ff; }
  .hero-grid, .section-grid, .contact-grid { grid-template-columns: 1fr; }
  .dashboard-mockup { max-width: 760px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .indicator-grid, .security-grid, .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 76px 0; }
  .hero { padding: 58px 0 70px; }
  .header-inner { min-height: 68px; }
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn-primary { min-height: 42px; padding: 0 14px; font-size: 13px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 38px; height: 38px; }
  .pain-grid, .feature-grid, .persona-grid, .steps-grid, .split-grid, .pricing-grid, .indicator-grid, .security-grid, .trust-grid { grid-template-columns: 1fr; }
  .check-list.two-columns, .benefit-list, .form-row { grid-template-columns: 1fr; }
  .mockup-shell { min-height: auto; grid-template-columns: 1fr; padding: 10px; transform: none; border-radius: 26px; }
  .mockup-sidebar { display: none; }
  .mockup-content { border-radius: 20px; padding: 14px; }
  .mockup-main-row, .metric-grid { grid-template-columns: 1fr; }
  .phone-chat { margin: 0 auto; min-height: 480px; }
  .reverse-mobile > :first-child { order: 2; }
  .price-card.featured { transform: none; }
  .lead-form { padding: 20px; border-radius: 24px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 480px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-badges span, .module-cloud span, .indicator-grid span, .automation-list span, .security-grid span, .trust-grid span { width: 100%; justify-content: center; text-align: center; }
  .finance-card > strong { font-size: 40px; }
  .mobile-app-mockup { padding: 10px; border-radius: 32px; }
  .app-screen { min-height: 560px; border-radius: 26px; }
}

/* Melhorias visuais: hover, problema, solução, WhatsApp e área do membro */
.pain-grid article,
.feature-card,
.large-card,
.price-card,
.app-card,
.module-cloud span,
.trust-badges span,
.automation-list span,
.indicator-grid span,
.security-grid span,
.trust-grid span {
  transform: translateY(0) scale(1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.pain-grid article:hover,
.feature-card:hover,
.large-card:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 28px 80px rgba(37, 99, 235, 0.16);
}

.module-cloud span:hover,
.trust-badges span:hover,
.automation-list span:hover,
.indicator-grid span:hover,
.security-grid span:hover,
.trust-grid span:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(37, 99, 235, 0.32);
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.14);
}

.pain-grid article {
  min-height: 172px;
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: hidden;
}

.pain-grid article::after {
  content: "";
  position: absolute;
  inset: auto -35px -46px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 68%);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.pain-grid article:hover::after { opacity: 1; transform: translate(-16px, -14px); }
.pain-grid article strong { color: var(--text); font-size: 17px; letter-spacing: -0.025em; }
.pain-grid article small { color: var(--muted); font-size: 14px; line-height: 1.5; }

.pain-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(124,58,237,0.10));
  border: 1px solid rgba(37,99,235,0.14);
  font-size: 22px;
}

.solution-visual { display: grid; gap: 22px; }
.solution-orbit {
  min-height: 390px;
  position: relative;
  border-radius: 36px;
  border: 1px solid rgba(37, 99, 235, 0.13);
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.16), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(124, 58, 237, 0.10), transparent 24%),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.solution-orbit::before,
.solution-orbit::after {
  content: "";
  position: absolute;
  inset: 52px;
  border-radius: 999px;
  border: 1px dashed rgba(37, 99, 235, 0.22);
  animation: spinOrbit 20s linear infinite;
}

.solution-orbit::after {
  inset: 95px;
  border-color: rgba(124, 58, 237, 0.18);
  animation-duration: 26s;
  animation-direction: reverse;
}

.solution-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  min-height: 170px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 7px;
  padding: 26px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 28px 80px rgba(37, 99, 235, 0.28);
  z-index: 2;
}

.solution-core span { font-size: 13px; font-weight: 900; opacity: 0.82; }
.solution-core strong { font-size: 23px; line-height: 1.05; letter-spacing: -0.05em; }
.solution-core small { color: rgba(255,255,255,0.78); line-height: 1.35; }

.orbit-item {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: #51445e;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.09);
  animation: floatTag 4.5s ease-in-out infinite;
}

.item-1 { left: 8%; top: 16%; }
.item-2 { right: 10%; top: 17%; animation-delay: .25s; }
.item-3 { left: 6%; bottom: 18%; animation-delay: .5s; }
.item-4 { right: 7%; bottom: 18%; animation-delay: .75s; }
.item-5 { left: 38%; top: 7%; animation-delay: 1s; }
.item-6 { left: 36%; bottom: 8%; animation-delay: 1.25s; }
.solution-cloud { justify-content: center; }

@keyframes spinOrbit { to { transform: rotate(360deg); } }
@keyframes floatTag { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.phone-chat {
  position: relative;
  max-width: 410px;
  min-height: 720px;
  padding: 14px;
  border-radius: 48px;
  background: linear-gradient(145deg, #151018, #2b1939 58%, #151018);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 40px 120px rgba(0,0,0,0.45), inset 0 0 0 8px rgba(255,255,255,0.03);
  overflow: hidden;
}

.phone-frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0.18), transparent 28%, transparent 72%, rgba(255,255,255,0.08));
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 118px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #120d18;
  border: 1px solid rgba(255,255,255,0.08);
}

.whatsapp-screen {
  position: relative;
  z-index: 2;
  min-height: 690px;
  padding: 48px 14px 18px;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(rgba(236, 253, 245, 0.93), rgba(236, 253, 245, 0.93)),
    radial-gradient(circle at 20px 20px, rgba(22, 163, 74, 0.14) 0 2px, transparent 2px 18px);
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -30px -2px 12px;
  padding: 12px;
  border-radius: 24px;
  background: #075e54;
  color: white;
  box-shadow: 0 12px 26px rgba(7, 94, 84, 0.22);
}

.wa-header strong { display: block; font-size: 14px; line-height: 1.1; }
.wa-header small { color: rgba(255,255,255,0.76); font-size: 12px; }
.wa-menu { margin-left: auto; font-size: 22px; line-height: 1; }
.wa-avatar, .person-avatar, .member-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}
.wa-avatar { width: 42px; height: 42px; }
.person-avatar { width: 34px; height: 34px; font-size: 13px; margin-top: 8px; }
.pastor-avatar { background: linear-gradient(135deg, #0f766e, #16a34a); }
.ana-avatar { background: linear-gradient(135deg, #f97316, #db2777); }
.joao-avatar { background: linear-gradient(135deg, #7c3aed, #06b6d4); }
.maria-avatar { background: linear-gradient(135deg, #7c3aed, #ec4899); }
.wa-date {
  width: max-content;
  margin: 10px auto 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  color: #64748b;
  font-size: 11px;
  font-weight: 850;
}
.wa-messages { display: grid; gap: 10px; }
.message-row { display: flex; align-items: flex-start; gap: 8px; opacity: 0; transform: translateY(12px); transition: opacity .28s ease, transform .28s ease; }
.message-row.is-visible { opacity: 1; transform: none; }
.message-row.outgoing { justify-content: flex-end; }
.chat-bubble { margin-bottom: 0; display: grid; gap: 3px; box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08); }
.chat-bubble strong { color: #17111f; font-size: 12px; }
.chat-bubble span { line-height: 1.42; }
.chat-bubble time { justify-self: end; color: rgba(15, 23, 42, 0.45); font-size: 10px; font-weight: 800; }
.chat-bubble.outgoing time { color: rgba(20, 83, 45, 0.55); }
.typing-row { display: flex; gap: 8px; align-items: flex-start; margin-top: 10px; }
.typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 70px;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 18px 18px 18px 6px;
  background: white;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}
.typing-bubble span { width: 7px; height: 7px; border-radius: 50%; background: #94a3b8; animation: typingDot 1s infinite ease-in-out; }
.typing-bubble span:nth-child(2) { animation-delay: .15s; }
.typing-bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot { 0%, 80%, 100% { transform: translateY(0); opacity: .45; } 40% { transform: translateY(-5px); opacity: 1; } }
.wa-compose {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 16px;
  border-radius: 999px;
  background: white;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 -8px 28px rgba(15,23,42,0.08);
}
.wa-compose b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; background: #16a34a; }

.mobile-app-mockup {
  position: relative;
  padding: 14px;
  background: linear-gradient(145deg, #151018, #2b1939);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
}
.app-device-shine { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,0.16), transparent 34%); pointer-events: none; }
.member-app-screen {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(37,99,235,0.12), transparent 32%),
    linear-gradient(180deg, #fffdfb, #f7f2ff);
}
.app-statusbar { display: flex; justify-content: space-between; color: #17111f; font-size: 12px; font-weight: 900; padding: 2px 4px 4px; }
.member-hero-card {
  color: white;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255,255,255,0.2), transparent 36%),
    linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 20px 50px rgba(37,99,235,0.24);
}
.member-profile-row { display: flex; gap: 12px; align-items: center; margin-bottom: 18px; }
.member-avatar { width: 52px; height: 52px; background: linear-gradient(135deg, #f97316, #db2777); border: 3px solid rgba(255,255,255,0.42); }
.member-profile-row small, .member-profile-row strong { display: block; color: white; }
.member-profile-row small { opacity: .78; font-size: 12px; }
.member-profile-row strong { font-size: 18px; line-height: 1.1; letter-spacing: -0.04em; }
.member-progress { height: 9px; border-radius: 999px; background: rgba(255,255,255,0.22); overflow: hidden; }
.member-progress span { display: block; height: 100%; border-radius: inherit; background: white; }
.member-hero-card p { margin-top: 8px; color: rgba(255,255,255,0.82); font-size: 12px; font-weight: 800; }
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.quick-actions button {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: #51445e;
  font-size: 21px;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(15,23,42,0.05);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quick-actions button:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.24); box-shadow: 0 18px 42px rgba(37,99,235,0.12); }
.quick-actions button span { display: block; font-size: 10px; margin-top: 3px; }
.app-event-card small, .app-event-card strong, .app-event-card span { display: block; }
.app-event-card small { opacity: .72; }
.app-event-card span { color: rgba(255,255,255,0.78); font-size: 13px; margin-top: 5px; }
.app-feed-card { display: flex; align-items: center; gap: 12px; padding: 15px; }
.app-feed-card strong { display: block; color: var(--text); font-size: 14px; }
.app-feed-card small { display: block; color: var(--muted); font-size: 12px; }
.feed-dot { width: 12px; height: 42px; border-radius: 999px; background: linear-gradient(180deg, var(--blue), var(--violet)); }
.feed-dot.green { background: linear-gradient(180deg, var(--green), var(--cyan)); }
.member-app-nav span {
  width: 40px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 16px;
  background: transparent;
}
.member-app-nav span.active { color: white; background: linear-gradient(135deg, var(--blue), var(--violet)); }

@media (max-width: 820px) {
  .solution-orbit { min-height: 340px; }
  .orbit-item { position: static; margin: 6px; animation: none; }
  .solution-orbit { display: flex; flex-wrap: wrap; align-content: end; justify-content: center; padding: 190px 18px 22px; }
  .solution-core { top: 24px; transform: translateX(-50%); }
  .phone-chat { min-height: 680px; }
  .whatsapp-screen { min-height: 650px; }
}

@media (max-width: 480px) {
  .pain-grid article { min-height: auto; }
  .phone-chat { max-width: 100%; padding: 10px; border-radius: 36px; }
  .whatsapp-screen { border-radius: 29px; padding-left: 10px; padding-right: 10px; }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
}

/* Ajustes solicitados: paleta do app, mockups mais profissionais, dashboard, financeiro e botão flutuante */
:root {
  --app-primary: #7c3aed;
  --app-primary-2: #a855f7;
  --app-green: #16a34a;
  --app-green-2: #22c55e;
  --app-teal: #14b8a6;
  --app-gold: #f59e0b;
  --app-ink: #17111f;
  --app-ink-2: #241833;
  --app-soft: #f7f2ff;
  --blue: var(--app-primary);
  --blue-dark: #5b21b6;
  --violet: var(--app-primary-2);
  --cyan: var(--app-teal);
  --green: var(--app-green);
  --dark: var(--app-ink);
  --dark-2: var(--app-ink-2);
  --line-strong: rgba(124, 58, 237, 0.18);
  --shadow-soft: 0 18px 50px rgba(124, 58, 237, 0.13);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(124, 58, 237, 0.14), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(22, 163, 74, 0.12), transparent 30%),
    linear-gradient(180deg, #fffbf7 0%, #fbf8ff 42%, #f7fff9 100%);
}

.meta[name="theme-color"] { color: var(--app-primary); }
.site-header { background: rgba(255, 252, 248, 0.82); }
.brand-mark,
.btn-primary,
.plan-badge,
.feature-card::before,
.price-card::before,
.large-card::before,
.sidebar-logo,
.member-hero-card,
.member-app-nav span.active,
.solution-core {
  background: linear-gradient(135deg, var(--app-primary), var(--app-green));
}
.btn-primary { box-shadow: 0 18px 50px rgba(124, 58, 237, 0.24); }
.btn-primary:hover { box-shadow: 0 24px 70px rgba(124, 58, 237, 0.32); }
.section-kicker, .eyebrow { color: var(--app-primary); background: rgba(124, 58, 237, 0.08); border-color: rgba(124, 58, 237, 0.18); }
.main-nav a:hover, .contact-note a, summary::after { color: var(--app-primary); }

.hero { min-height: calc(100vh - var(--header)); display: grid; align-items: center; overflow: hidden; }
.hero-ambient { position: absolute; pointer-events: none; border-radius: 999px; filter: blur(8px); opacity: .75; }
.hero-ambient-one { right: 7%; top: 14%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(124,58,237,.18), transparent 68%); animation: ambientFloat 8s ease-in-out infinite; }
.hero-ambient-two { left: 38%; bottom: 8%; width: 210px; height: 210px; background: radial-gradient(circle, rgba(22,163,74,.16), transparent 70%); animation: ambientFloat 9s ease-in-out infinite reverse; }
@keyframes ambientFloat { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(12px,-18px,0) scale(1.05); } }
.hero-showcase { position: relative; min-height: 650px; perspective: 1300px; }
.church-app-window { position: relative; z-index: 2; border-radius: 34px; overflow: hidden; background: rgba(255,255,255,.78); border: 1px solid rgba(124,58,237,.16); box-shadow: 0 42px 130px rgba(70, 31, 101, .22); transform: rotateY(-7deg) rotateX(3deg); backdrop-filter: blur(18px); }
.app-window-header { min-height: 58px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 0 18px; border-bottom: 1px solid rgba(124,58,237,.12); background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(247,242,255,.88)); }
.app-window-header strong { font-weight: 900; letter-spacing: -.04em; }
.app-window-header small { color: var(--muted); font-weight: 750; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--app-primary); opacity: .45; }
.window-dots span:nth-child(2) { background: var(--app-gold); }
.window-dots span:nth-child(3) { background: var(--app-green); }
.church-app-body { display: grid; grid-template-columns: 128px 1fr; min-height: 560px; }
.church-app-nav { display: grid; align-content: start; gap: 10px; padding: 18px; background: linear-gradient(180deg, #faf7ff, #f1fff5); border-right: 1px solid rgba(124,58,237,.12); }
.church-app-nav span { padding: 11px 12px; border-radius: 14px; color: #5b5268; font-size: 12px; font-weight: 850; }
.church-app-nav span.active { color: white; background: linear-gradient(135deg, var(--app-primary), var(--app-green)); box-shadow: 0 14px 30px rgba(124,58,237,.18); }
.church-app-content { padding: 22px; display: grid; gap: 14px; background: linear-gradient(180deg, #fffdfb, #f7f2ff); }
.church-app-topline { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.church-app-topline small, .church-kpi-grid span, .mini-title span, .church-care-card small, .church-timeline small { display: block; color: var(--muted); font-size: 12px; }
.church-app-topline strong { display: block; font-size: 22px; letter-spacing: -.05em; }
.church-app-topline button { border: 0; color: white; border-radius: 999px; padding: 10px 15px; font-weight: 900; background: linear-gradient(135deg, var(--app-primary), var(--app-green)); }
.church-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.church-kpi-grid div, .church-chart-card, .church-care-card, .church-timeline { background: white; border: 1px solid rgba(124,58,237,.12); border-radius: 20px; padding: 16px; box-shadow: 0 15px 38px rgba(70,31,101,.07); }
.church-kpi-grid strong { display: block; font-size: 24px; letter-spacing: -.06em; color: var(--app-primary); }
.church-kpi-grid div:nth-child(4) strong { color: var(--app-green); }
.church-app-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.mini-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mini-title b { color: var(--app-green); }
.area-chart, .line-bars { height: 132px; display: flex; align-items: end; gap: 10px; }
.area-chart i, .line-bars i, .finance-sparkline i { flex: 1; border-radius: 999px 999px 9px 9px; background: linear-gradient(180deg, var(--app-primary-2), var(--app-green)); animation: barPulse 2.8s ease-in-out infinite; }
.area-chart i:nth-child(1) { height: 34%; } .area-chart i:nth-child(2) { height: 58%; animation-delay: .1s; } .area-chart i:nth-child(3) { height: 46%; animation-delay: .2s; } .area-chart i:nth-child(4) { height: 74%; animation-delay: .3s; } .area-chart i:nth-child(5) { height: 88%; animation-delay: .4s; } .area-chart i:nth-child(6) { height: 66%; animation-delay: .5s; }
@keyframes barPulse { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.12); } }
.care-badge { display: inline-flex; width: max-content; padding: 6px 10px; border-radius: 999px; color: var(--app-green); background: rgba(22,163,74,.1); font-size: 11px; font-weight: 900; margin-bottom: 14px; }
.church-care-card strong { display: block; font-size: 18px; line-height: 1.15; letter-spacing: -.04em; margin-bottom: 8px; }
.church-timeline { display: grid; gap: 11px; }
.church-timeline div, .dashboard-alert-list div, .finance-transactions div { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; }
.church-timeline b, .dashboard-alert-list b { width: 10px; height: 38px; border-radius: 999px; background: linear-gradient(180deg, var(--app-primary), var(--app-green)); }
.church-timeline span { display: block; font-weight: 900; }
.hero-card { position: absolute; z-index: 4; display: grid; gap: 2px; padding: 16px 18px; border-radius: 22px; background: rgba(255,255,255,.88); border: 1px solid rgba(124,58,237,.14); box-shadow: 0 24px 70px rgba(70,31,101,.16); backdrop-filter: blur(14px); animation: floatingCard 4.8s ease-in-out infinite; }
.hero-card strong { font-size: 24px; color: var(--app-primary); }
.hero-card span { color: var(--muted); font-size: 12px; font-weight: 800; }
.card-members { left: -14px; top: 62px; }
.card-whatsapp { right: -8px; bottom: 112px; animation-delay: .65s; }
@keyframes floatingCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-phone-mini { position: absolute; right: 28px; bottom: 0; z-index: 5; width: 168px; padding: 11px; border-radius: 34px; background: linear-gradient(145deg, #151018, #2b1939); box-shadow: 0 28px 80px rgba(70,31,101,.26); }
.mini-phone-screen { min-height: 225px; display: grid; align-content: start; gap: 12px; padding: 20px; border-radius: 25px; color: white; background: radial-gradient(circle at 80% 0%, rgba(255,255,255,.18), transparent 35%), linear-gradient(180deg, var(--app-primary), var(--app-green)); }
.mini-phone-screen strong { font-size: 18px; line-height: 1.1; }
.mini-phone-screen span { font-size: 12px; color: rgba(255,255,255,.82); }
.mini-phone-screen button { margin-top: auto; min-height: 38px; border: 0; border-radius: 999px; background: white; color: var(--app-primary); font-size: 11px; font-weight: 900; }

.pain-grid article { position: relative; }
.pain-icon { background: #fff; border-color: rgba(124,58,237,.14); box-shadow: 0 16px 36px rgba(70,31,101,.08); }
.pain-icon::before { content: ""; width: 24px; height: 24px; display: block; background: currentColor; color: var(--app-primary); mask: var(--icon) center / contain no-repeat; -webkit-mask: var(--icon) center / contain no-repeat; }
.icon-spreadsheet { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M5 3h10l4 4v14H5z'/%3E%3Cpath d='M15 3v5h5M8 12h8M8 16h8M8 8h3'/%3E%3C/svg%3E"); }
.icon-visitor { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M19 8v6M22 11h-6'/%3E%3C/svg%3E"); }
.icon-groups { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.icon-calendar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01'/%3E%3C/svg%3E"); }
.icon-finance { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M12 1v22M17 5H9.5a3.5 3.5 0 0 0 0 7H14a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); }
.icon-message { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H7l-4 4V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3C/svg%3E"); }
.icon-care { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 1 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8z'/%3E%3C/svg%3E"); }
.icon-dashboard { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='9' rx='1'/%3E%3Crect x='14' y='3' width='7' height='5' rx='1'/%3E%3Crect x='14' y='12' width='7' height='9' rx='1'/%3E%3Crect x='3' y='16' width='7' height='5' rx='1'/%3E%3C/svg%3E"); }
.icon-lock { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E"); }
.pain-grid article:nth-child(2n) .pain-icon::before { color: var(--app-green); }
.pain-grid article:nth-child(3n) .pain-icon::before { color: var(--app-gold); }

.dark-section, .benefits-section, .final-cta { background: radial-gradient(circle at 12% 15%, rgba(124,58,237,.28), transparent 34%), radial-gradient(circle at 92% 35%, rgba(22,163,74,.22), transparent 28%), linear-gradient(135deg, #17111f, #251832); }
.dark-section .section-kicker, .benefits-section .section-kicker { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #d8b4fe; }
.phone-chat { background: linear-gradient(145deg, #17111f, #2b1939 58%, #120d18); box-shadow: 0 40px 120px rgba(42, 19, 59, .48), inset 0 0 0 8px rgba(255,255,255,.035); transform: rotate(-1deg); }
.phone-chat:hover { transform: rotate(0deg) translateY(-6px); }
.phone-side-button { position: absolute; right: -3px; width: 4px; border-radius: 999px; background: rgba(255,255,255,.22); z-index: 3; }
.side-one { top: 145px; height: 54px; } .side-two { top: 215px; height: 74px; }
.whatsapp-screen { background: linear-gradient(rgba(239,253,244,.95), rgba(239,253,244,.95)), radial-gradient(circle at 20px 20px, rgba(22,163,74,.14) 0 2px, transparent 2px 18px); }
.wa-header { background: linear-gradient(135deg, #128c7e, #16a34a); }
.wa-campaign-card { margin: 0 0 12px; padding: 13px; border-radius: 20px; background: rgba(255,255,255,.84); border: 1px solid rgba(22,163,74,.14); box-shadow: 0 12px 26px rgba(15,23,42,.07); }
.wa-campaign-card small, .wa-campaign-card span { display: block; color: #64748b; font-size: 11px; font-weight: 800; }
.wa-campaign-card strong { display: block; color: #14532d; letter-spacing: -.03em; }

.finance-app-panel { position: relative; border-radius: 36px; padding: 20px; background: linear-gradient(145deg, #21152f, #151018); color: white; box-shadow: 0 38px 110px rgba(70,31,101,.28); overflow: hidden; }
.finance-app-panel::before { content: ""; position: absolute; right: -80px; top: -100px; width: 250px; height: 250px; background: radial-gradient(circle, rgba(34,197,94,.28), transparent 68%); }
.finance-app-header, .finance-total-card, .finance-mini-grid, .finance-transactions, .finance-permission-note { position: relative; z-index: 1; }
.finance-app-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 15px; }
.finance-app-header small, .finance-total-card small, .finance-mini-grid small { display: block; color: rgba(255,255,255,.64); font-size: 12px; font-weight: 800; }
.finance-app-header strong { display: block; font-size: 22px; letter-spacing: -.05em; }
.finance-app-header span { padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.1); color: #e9d5ff; font-size: 12px; font-weight: 900; }
.finance-total-card { padding: 22px; border-radius: 28px; background: linear-gradient(135deg, var(--app-primary), var(--app-green)); box-shadow: 0 24px 70px rgba(22,163,74,.18); }
.finance-total-card strong { display: block; font-size: 42px; letter-spacing: -.07em; margin: 2px 0 20px; }
.finance-sparkline { height: 86px; display: flex; align-items: end; gap: 9px; }
.finance-sparkline i { min-width: 20px; background: rgba(255,255,255,.88); }
.finance-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.finance-mini-grid div { padding: 14px; border-radius: 20px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.1); }
.finance-mini-grid strong, .finance-mini-grid span { display: block; }
.finance-mini-grid strong { margin-top: 3px; font-size: 17px; letter-spacing: -.04em; }
.finance-mini-grid span { color: #bbf7d0; font-size: 11px; font-weight: 900; }
.finance-transactions { display: grid; gap: 8px; margin-top: 12px; padding: 12px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.finance-transactions div { grid-template-columns: auto 1fr auto; }
.finance-transactions span[class^="dot"] { width: 11px; height: 42px; border-radius: 999px; }
.dot-green { background: var(--app-green); } .dot-gold { background: var(--app-gold); } .dot-purple { background: var(--app-primary-2); }
.finance-transactions p { margin: 0; }
.finance-transactions strong { display: block; color: white; font-size: 13px; }
.finance-transactions small { display: block; color: rgba(255,255,255,.58); font-size: 11px; }
.finance-transactions b { font-size: 13px; }
.finance-permission-note { margin-top: 12px; padding: 11px 13px; border-radius: 999px; text-align: center; color: #bbf7d0; background: rgba(22,163,74,.12); border: 1px solid rgba(34,197,94,.2); font-size: 12px; font-weight: 900; }

.dashboard-section { background: linear-gradient(180deg, #fff, #f7f2ff 58%, #f2fff6); }
.indicator-grid.compact { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
.dashboard-app-preview { padding: 22px; border-radius: 36px; background: rgba(255,255,255,.86); border: 1px solid rgba(124,58,237,.16); box-shadow: 0 34px 100px rgba(70,31,101,.14); }
.dashboard-preview-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 14px; }
.dashboard-preview-top small { display: block; color: var(--muted); font-weight: 800; }
.dashboard-preview-top strong { display: block; font-size: 24px; letter-spacing: -.055em; }
.dashboard-preview-top span { border-radius: 999px; padding: 8px 12px; color: var(--app-primary); background: rgba(124,58,237,.08); font-weight: 900; font-size: 12px; }
.dashboard-preview-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dashboard-preview-kpis div, .dashboard-line-card, .dashboard-agenda-card, .dashboard-alert-list { padding: 15px; border-radius: 20px; background: white; border: 1px solid rgba(124,58,237,.12); box-shadow: 0 12px 30px rgba(70,31,101,.06); }
.dashboard-preview-kpis strong { display: block; color: var(--app-primary); font-size: 24px; letter-spacing: -.06em; }
.dashboard-preview-kpis div:nth-child(even) strong { color: var(--app-green); }
.dashboard-preview-kpis span { color: var(--muted); font-size: 12px; font-weight: 800; }
.dashboard-preview-main { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; margin-top: 10px; }
.dashboard-agenda-card { display: grid; gap: 8px; align-content: start; }
.dashboard-agenda-card strong { margin-bottom: 5px; }
.dashboard-agenda-card span { display: block; padding: 9px 10px; border-radius: 13px; background: #fbf7ff; color: #51445e; font-size: 12px; font-weight: 850; }
.dashboard-alert-list { display: grid; gap: 10px; margin-top: 10px; }
.dashboard-alert-list div { grid-template-columns: auto 1fr; }
.dashboard-alert-list span, .dashboard-alert-list small { display: block; }
.dashboard-alert-list span { font-weight: 900; color: var(--text); }
.dashboard-alert-list small { color: var(--muted); font-size: 12px; }
.line-bars i { background: linear-gradient(180deg, var(--app-primary), var(--app-green)); }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 10px; min-height: 58px; padding: 0 18px 0 12px; border-radius: 999px; color: white; background: linear-gradient(135deg, #16a34a, #128c7e); box-shadow: 0 18px 55px rgba(22,163,74,.35); font-size: 14px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 24px 70px rgba(22,163,74,.44); }
.floating-whatsapp-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18); position: relative; }
.floating-whatsapp-icon::before { content: ""; position: absolute; inset: 9px; background: #fff; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.04 3C9.42 3 4.03 8.31 4.03 14.84c0 2.1.56 4.15 1.62 5.95L4 29l8.43-1.61a12.2 12.2 0 0 0 5.61 1.38c6.62 0 12.01-5.31 12.01-11.84S22.66 3 16.04 3Zm0 23.8c-1.82 0-3.6-.49-5.15-1.42l-.37-.22-4.98.95.97-4.83-.25-.39a9.8 9.8 0 0 1-1.5-5.05c0-5.44 4.49-9.87 10-9.87s10 4.43 10 9.87-4.49 9.87-10 9.87Zm5.48-7.39c-.3-.15-1.77-.86-2.04-.96-.27-.1-.47-.15-.67.15-.2.29-.77.96-.94 1.16-.17.2-.35.22-.65.07-.3-.15-1.27-.46-2.42-1.47-.89-.79-1.5-1.77-1.68-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.6-.92-2.19-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.01-1.04 2.46s1.07 2.86 1.22 3.06c.15.2 2.1 3.17 5.09 4.45.71.3 1.27.49 1.7.62.71.22 1.36.19 1.87.12.57-.08 1.77-.71 2.02-1.4.25-.69.25-1.28.17-1.4-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='black' d='M16.04 3C9.42 3 4.03 8.31 4.03 14.84c0 2.1.56 4.15 1.62 5.95L4 29l8.43-1.61a12.2 12.2 0 0 0 5.61 1.38c6.62 0 12.01-5.31 12.01-11.84S22.66 3 16.04 3Zm0 23.8c-1.82 0-3.6-.49-5.15-1.42l-.37-.22-4.98.95.97-4.83-.25-.39a9.8 9.8 0 0 1-1.5-5.05c0-5.44 4.49-9.87 10-9.87s10 4.43 10 9.87-4.49 9.87-10 9.87Zm5.48-7.39c-.3-.15-1.77-.86-2.04-.96-.27-.1-.47-.15-.67.15-.2.29-.77.96-.94 1.16-.17.2-.35.22-.65.07-.3-.15-1.27-.46-2.42-1.47-.89-.79-1.5-1.77-1.68-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.6-.92-2.19-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.01-1.04 2.46s1.07 2.86 1.22 3.06c.15.2 2.1 3.17 5.09 4.45.71.3 1.27.49 1.7.62.71.22 1.36.19 1.87.12.57-.08 1.77-.71 2.02-1.4.25-.69.25-1.28.17-1.4-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat; }

@media (max-width: 1120px) { .hero-showcase { min-height: auto; } .church-app-window { transform: none; } .hero-phone-mini { position: relative; right: auto; bottom: auto; margin: -40px auto 0; } .card-members, .card-whatsapp { display: none; } }
@media (max-width: 820px) { .church-app-body { grid-template-columns: 1fr; } .church-app-nav { display: none; } .church-kpi-grid, .church-app-row, .finance-mini-grid, .dashboard-preview-kpis, .dashboard-preview-main, .indicator-grid.compact { grid-template-columns: 1fr; } .dashboard-app-preview, .finance-app-panel { border-radius: 26px; padding: 16px; } .finance-total-card strong { font-size: 34px; } .floating-whatsapp { right: 14px; bottom: 14px; min-height: 54px; padding-right: 14px; } .floating-whatsapp strong { display: none; } }
@media (max-width: 480px) { .church-kpi-grid strong, .dashboard-preview-kpis strong { font-size: 22px; } .app-window-header { grid-template-columns: auto 1fr; } .app-window-header small { display: none; } .church-app-content { padding: 14px; } }

/* forced landing v3 deploy */

/* forced landing v3 deploy */

/* forced landing v3 deploy */
