:root {
  --blue: #0f4cff;
  --blue-bright: #0066ff;
  --blue-dark: #0a2f8f;
  --navy: #071833;
  --navy-deep: #001b5e;
  --green: #12b76a;
  --orange: #f79009;
  --muted: #667085;
  --line: #dce6f4;
  --soft: #f7f9fc;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #fff; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  color: var(--navy);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
.site-stage, .site-canvas { width: 100%; }
.container { width: min(1440px, calc(100% - 64px)); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  border-bottom: 1px solid rgba(220, 230, 244, .78);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 82px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
}
.logo { display: flex; align-items: center; }
.logo img { width: 196px; height: auto; display: block; }
nav { display: flex; justify-content: center; gap: 44px; font-size: 14px; font-weight: 700; }
nav a { position: relative; padding: 12px 0; color: #263b5e; }
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--blue);
  transition: right .2s ease;
}
nav a:hover::after { right: 0; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.whatsapp { justify-self: end; color: #fff; background: var(--green); box-shadow: 0 10px 24px rgba(18, 183, 106, .22); }
/* Portal do Contador (S81): acesso dos parceiros ao app */
.portal { color: var(--navy); border: 1px solid #cbd9ee; background: rgba(255, 255, 255, .76); box-shadow: 0 8px 22px rgba(7, 24, 51, .06); }
.portal:hover { border-color: #0f4cff; color: #0f4cff; }
.primary { color: #fff; background: linear-gradient(180deg, #1760ff, #0f4cff); box-shadow: 0 12px 26px rgba(15, 76, 255, .25); }
.secondary { color: var(--navy); border: 1px solid #cbd9ee; background: rgba(255, 255, 255, .76); box-shadow: 0 8px 22px rgba(7, 24, 51, .06); }

.hero {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  padding: 92px 0 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(15, 76, 255, .22), transparent 27%),
    radial-gradient(circle at 58% 10%, rgba(18, 183, 106, .08), transparent 23%),
    linear-gradient(135deg, #fff 0%, #f4f7ff 48%, #e8efff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(15, 76, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 255, .08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -150px;
  top: -220px;
  border: 1px solid rgba(15, 76, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(15, 76, 255, .025), 0 0 0 160px rgba(15, 76, 255, .02);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(520px, .92fr) minmax(560px, 1.08fr);
  gap: 64px;
  align-items: center;
}
.hero-copy { padding-bottom: 32px; }
.eyebrow, .kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.eyebrow {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(15, 76, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
}
.hero h1 {
  max-width: 700px;
  margin: 24px 0 22px;
  font-size: clamp(48px, 4.4vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: #52627d;
  font-size: 18px;
  line-height: 1.7;
}
.actions { display: flex; gap: 14px; margin: 32px 0 40px; }
.trust-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; max-width: 670px; }
.trust-row div { display: flex; align-items: center; gap: 10px; }
.trust-row b, .trust-row small { display: block; }
.trust-row b { font-size: 13px; }
.trust-row small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.trust-row img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 7px 10px rgba(15, 76, 255, .14)); }
.hero-art { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-render {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 38px 42px rgba(0, 47, 143, .28));
}
.hero-float {
  position: absolute;
  z-index: 3;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 32px rgba(0, 47, 143, .13);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
}
.hero-float-icp { top: 80px; right: 2%; color: var(--green); }
.hero-float-fast { bottom: 94px; left: 3%; }
.hero-float-valid { top: 190px; left: 0; }
.proof-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(15, 76, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .75);
  border-right: 1px solid rgba(255, 255, 255, .75);
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 -12px 38px rgba(0, 47, 143, .07);
  backdrop-filter: blur(18px);
}
.proof-grid article { padding: 27px 34px; border-right: 1px solid rgba(15, 76, 255, .1); }
.proof-grid article:last-child { border-right: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { color: var(--blue-dark); font-size: 34px; line-height: 1; font-weight: 900; }
.proof-grid article:first-child strong { color: var(--green); }
.proof-grid span { margin-top: 8px; color: #65738b; font-size: 12px; font-weight: 700; text-transform: uppercase; }

.section { padding: 100px 0; }
#precos, #como-funciona, #beneficios, #faq { scroll-margin-top: 82px; }
.section-title { margin-bottom: 38px; }
.section-title.split { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-title.split p { max-width: 390px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; text-align: right; }
h2 { margin: 10px 0 0; font-size: 38px; line-height: 1.14; letter-spacing: 0; }
h3 { margin: 0; }

#precos { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.price-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 26px;
  overflow: visible;
  border: 1px solid rgba(197, 213, 239, .9);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(244, 248, 255, .86));
  box-shadow: 0 18px 44px rgba(0, 35, 90, .09);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.price-card:hover { transform: translateY(-7px); border-color: #9dbdff; box-shadow: 0 26px 54px rgba(0, 47, 143, .15); }
.price-card.featured { border: 1px solid var(--blue); box-shadow: 0 24px 54px rgba(15, 76, 255, .18); }
.price-card > b {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(247, 144, 9, .28);
  font-size: 11px;
  white-space: nowrap;
}
.price-card > span {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #344054;
  background: #eef3fa;
  font-size: 11px;
  font-weight: 800;
}
.price-card h3 { margin: 24px 0 10px; font-size: 22px; }
.price-card p { min-height: 52px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.price-card strong { margin: 24px 0 22px; color: var(--blue); font-size: 34px; line-height: 1; font-weight: 900; }
.price-card ul { margin: 0; padding: 20px 0 0; list-style: none; border-top: 1px solid #e6edf7; }
.price-card li { position: relative; margin-bottom: 13px; padding-left: 22px; color: #475467; font-size: 13px; line-height: 1.35; }
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}
.price-card a {
  min-height: 46px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(180deg, #1760ff, #0f4cff);
  box-shadow: 0 11px 22px rgba(15, 76, 255, .2);
  font-size: 13px;
  font-weight: 800;
}
.more-products { margin-top: 30px; text-align: center; }
.more-products > summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  list-style: none;
  cursor: pointer;
  border: 1px solid #c9d9f2;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}
.more-products > summary::-webkit-details-marker { display: none; }
.more-products > summary::after { content: "+"; margin-left: 9px; color: var(--blue); font-size: 18px; }
.more-products[open] > summary::after { content: "−"; }
.more-products-grid { width: min(720px, 100%); display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 30px auto 0; text-align: left; }

#como-funciona { background: var(--soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #e3ebf6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 35, 90, .07);
}
.steps article { position: relative; min-height: 230px; padding: 38px 38px 34px 106px; border-right: 1px solid #e4ebf5; }
.steps article:last-child { border-right: 0; }
.steps b {
  position: absolute;
  left: 34px;
  top: 44px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
}
.steps h3, .benefits h3 { margin: 18px 0 10px; font-size: 17px; line-height: 1.3; }
.steps p, .benefits p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

#beneficios {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(15, 76, 255, .62), transparent 30%),
    linear-gradient(135deg, #001b5e, #0a2f8f);
}
#beneficios::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 60px 60px;
}
#beneficios .container { position: relative; z-index: 1; }
#beneficios .kicker { color: #9ec0ff; }
#beneficios h2, #beneficios h3 { color: #fff; }
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.benefits article { min-height: 245px; padding: 28px 34px; border-right: 1px solid rgba(255,255,255,.14); }
.benefits article:last-child { border-right: 0; }
.benefits p { color: rgba(255, 255, 255, .68); }

#faq { background: var(--soft); }
.faq { padding: 48px; border: 1px solid #e0e9f5; border-radius: 8px; background: #fff; box-shadow: 0 16px 40px rgba(0, 35, 90, .06); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; align-items: start; }
.faq details { overflow: hidden; border: 1px solid #dce6f4; border-radius: 7px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.faq details[open] { border-color: #91b8ff; box-shadow: 0 8px 20px rgba(15, 76, 255, .08); }
.faq summary { position: relative; min-height: 56px; display: flex; align-items: center; padding: 14px 50px 14px 18px; list-style: none; cursor: pointer; font-size: 14px; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #edf4ff;
  font-size: 16px;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0; padding: 0 50px 18px 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.final-cta {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1.35fr .8fr .35fr;
  gap: 30px;
  align-items: center;
  margin-top: 72px;
  margin-bottom: 88px;
  padding: 38px 52px;
  border-radius: 8px;
  color: #fff;
  background: radial-gradient(circle at 86% 20%, rgba(15, 76, 255, .75), transparent 30%), linear-gradient(135deg, #001b5e, #0a2f8f);
  box-shadow: 0 22px 48px rgba(0, 27, 94, .22);
}
.final-cta h2 { margin: 0 0 10px; font-size: 36px; }
.final-cta p { margin: 0; color: #d8e4fa; font-size: 14px; }

footer { padding: 58px 0; color: #fff; background: #03142e; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 70px; }
.footer-grid h3 { margin: 0 0 14px; font-size: 14px; }
.footer-grid p { margin: 0; color: #c9d5e8; font-size: 13px; line-height: 1.8; }

@media (max-width: 1100px) {
  .container { width: min(100% - 40px, 1440px); }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero h1 { font-size: 48px; }
  .hero-render { height: 480px; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps article { padding-left: 88px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1440px); }
  header, .header-inner { height: 68px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .logo img { width: 154px; }
  nav { display: none; }
  .header-actions { gap: 7px; }
  .header-actions .btn { min-height: 40px; padding: 0 13px; font-size: 12px; gap: 6px; }
  .hero { padding-top: 50px; }
  .hero::before { opacity: .22; mask-image: none; }
  .hero-grid { display: flex; flex-direction: column; gap: 12px; }
  .hero h1 { font-size: 42px; }
  .hero-copy > p { font-size: 16px; }
  .actions { flex-direction: column; align-items: stretch; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-art { width: 100%; min-height: 390px; }
  .hero-render { width: 100%; height: 420px; }
  .hero-float { font-size: 10px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); margin-top: 18px; border-radius: 12px 12px 0 0; }
  .proof-grid article { padding: 20px; border-bottom: 1px solid rgba(15, 76, 255, .1); }
  .proof-grid article:nth-child(2) { border-right: 0; }
  .proof-grid strong { font-size: 26px; }
  .section { padding: 70px 0; }
  .section-title.split { display: block; }
  .section-title.split p { margin-top: 14px; text-align: left; }
  h2 { font-size: 30px; }
  .pricing-grid, .more-products-grid, .steps, .benefits, .faq-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .price-card a { margin-top: 24px; }
  .steps article, .benefits article { border-right: 0; border-bottom: 1px solid #e4ebf5; }
  .benefits article { border-bottom-color: rgba(255,255,255,.14); }
  .faq { padding: 24px 18px; }
  .final-cta { width: 100%; grid-template-columns: 1fr; padding: 34px 24px; border-radius: 0; text-align: center; }
  .final-cta { margin-top: 48px; margin-bottom: 56px; border-radius: 8px; }
  .final-cta .whatsapp { justify-self: stretch; }
  .cta-render { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 460px) {
  .header-actions .btn { width: 42px; padding: 0; font-size: 0; gap: 0; }
  .header-actions .btn svg { width: 19px; height: 19px; }
  .hero h1 { font-size: 36px; }
  .hero-render { height: 350px; }
  .hero-float-valid { top: 140px; }
  .proof-grid strong { font-size: 22px; }
  .proof-grid span { font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
}
