 :root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --surface-3: #e2e8f0;
  --stroke: #e2e8f0;
  --stroke-2: #cbd5e1;
  --text: #0f172a;
  --muted: #334155;
  --muted-2: #64748b;
  --accent: #e11d48;
  --accent-2: #1d4ed8;
 --primary: var(--accent-2);
 --secondary: var(--accent);
  --shadow: 0 22px 70px rgba(2, 6, 23, 0.12);
  --shadow-2: 0 12px 30px rgba(2, 6, 23, 0.1);
   --radius: 18px;
   --container: 1120px;
   --nav-h: 76px;
   color-scheme: light;
 }
 
 * {
   box-sizing: border-box;
 }
 
 html,
 body {
   height: 100%;
 }
 
 body {
   margin: 0;
   font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
     "Segoe UI Emoji";
   color: var(--text);
   background-color: #f8fafc;
   background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
   background-size: 32px 32px;
   overflow-x: hidden;
 }
 
body::before,
body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

body::before {
  top: -150px;
  left: -200px;
  background: rgba(29, 78, 216, 0.08);
}

body::after {
  bottom: -150px;
  right: -200px;
  background: rgba(225, 29, 72, 0.08);
}

.sectionSpacer {
  margin-top: 34px;
}

 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(var(--container), calc(100% - 40px));
   margin: 0 auto;
 }
 
 .topbar {
   position: sticky;
   top: 0;
   z-index: 500;
   height: var(--nav-h);
   display: flex;
   align-items: center;
  background: #ffffff;
  border-bottom: 1px solid var(--stroke);
 }
 
 .topbar__inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   position: relative;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 14px;
   min-width: 220px;
 }
 
 .brand__logo {
   height: 42px;
   width: auto;
   display: block;
  filter: drop-shadow(0 12px 18px rgba(2, 6, 23, 0.12));
 }
 
 .nav {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 8px;
  border: 1px solid var(--stroke);
   border-radius: 999px;
  background: #ffffff;
   box-shadow: var(--shadow-2);
 }

 .navWrap {
 display: flex;
 align-items: center;
 gap: 10px;
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 }

.navCta {
  margin-left: auto;
  box-shadow: var(--shadow-2);
}

@media (max-width: 960px) {
  .navWrap {
    position: static;
    transform: none;
    margin-left: 0;
  }
}

 .navToggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--text);
  font-weight: 850;
  letter-spacing: 0.12px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
 }

 .navToggle svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
 }

 .navWrap[data-open="true"] .nav {
  display: flex;
 }
 
 .nav a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 14px;
   border-radius: 999px;
   font-weight: 700;
   letter-spacing: 0.18px;
   color: var(--muted);
   transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
 }

 .nav a.navLogin {
  display: none;
 }
 
 .nav a:hover {
   color: var(--text);
  background: var(--surface-2);
 }
 
 .nav a[aria-current="page"] {
  color: #ffffff;
  background: var(--text);
  box-shadow: none;
 }
 
.nav a:focus-visible,
.button:focus-visible,
.smallLink:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.28);
  outline-offset: 2px;
}

 .cta {
   display: flex;
   align-items: center;
   gap: 10px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 12px 14px;
   border-radius: 999px;
  border: 1px solid var(--stroke-2);
  background: #ffffff;
  color: var(--text);
   font-weight: 750;
   letter-spacing: 0.2px;
   transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
   cursor: pointer;
 }
 
.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

 .button:hover {
   transform: translateY(-1px);
  background: var(--surface-2);
  border-color: var(--stroke-2);
  box-shadow: var(--shadow-2);
 }
 
 .button--primary {
 border-color: #1e40af;
 background: var(--primary);
  color: #ffffff;
 box-shadow: 0 14px 24px rgba(29, 78, 216, 0.18);
}

.button--primary:hover {
 background: #1e40af;
 border-color: #1e3a8a;
 box-shadow: 0 18px 34px rgba(29, 78, 216, 0.22);
 }
 
.button--secondary {
 border-color: #be123c;
 background: var(--secondary);
 color: #ffffff;
 box-shadow: 0 14px 24px rgba(225, 29, 72, 0.18);
}

.button--secondary:hover {
 background: #be123c;
 border-color: #9f1239;
 box-shadow: 0 18px 34px rgba(225, 29, 72, 0.22);
}

.button--outline {
 background: transparent;
 border-color: var(--stroke-2);
 color: var(--text);
 box-shadow: none;
}

.button--outline:hover {
 background: var(--surface-2);
 border-color: var(--stroke-2);
 box-shadow: var(--shadow-2);
}

 main {
   min-height: calc(100svh - var(--nav-h));
 }
 
 .page {
   padding: 46px 0 68px;
 }
 
.page--tight {
  padding-top: 14px;
}

@media (max-width: 560px) {
  .page--tight {
    padding-top: 10px;
  }
}

 .hero {
   display: grid;
   grid-template-columns: 1.12fr 0.88fr;
   gap: 22px;
   align-items: stretch;
 }

.heroVisual {
  padding: 18px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.heroVisual__stage {
  position: relative;
  height: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--stroke);
  background: var(--surface-2);
  overflow: hidden;
}

.heroVisual__stage::before {
  content: none;
}

.floatImg {
  position: absolute;
  width: min(420px, 74%);
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  background: #ffffff;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.floatImg--a {
  left: 18px;
  top: 22px;
  transform: rotate(-3deg);
  animation: floatA 8s ease-in-out infinite;
}

.floatImg--b {
  right: 18px;
  bottom: 22px;
  transform: rotate(3deg);
  animation: floatB 9s ease-in-out infinite;
}

.floatChip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow-2);
  font-weight: 850;
  letter-spacing: 0.15px;
  color: var(--text);
  user-select: none;
  pointer-events: none;
}

.floatChip__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.14);
}

.floatChip--top {
  right: 20px;
  top: 20px;
  animation: floatC 7.5s ease-in-out infinite;
}

.floatChip--mid {
  left: 18px;
  bottom: 130px;
  animation: floatD 8.2s ease-in-out infinite;
}

@keyframes floatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(-2deg);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(3deg);
  }
  50% {
    transform: translate3d(0, 12px, 0) rotate(2deg);
  }
}

@keyframes floatC {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes floatD {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floatImg--a,
  .floatImg--b,
  .floatChip--top,
  .floatChip--mid {
    animation: none;
  }
}

 .card {
  border: 1px solid var(--stroke);
  background: #ffffff;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
.card--soft {
  background: #ffffff;
}

.divider {
  margin-top: 34px;
  border-top: 1px solid var(--stroke);
}

 .hero__left {
   padding: 26px;
   position: relative;
   overflow: hidden;
 }
 
 .hero__left::before {
   content: "";
   position: absolute;
   inset: -1px;
  background: transparent;
  opacity: 0;
   pointer-events: none;
 }
 
 .hero__left > * {
   position: relative;
 }
 
 .hero__left h1 {
  margin-top: 0;
 }

 .kicker {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 8px 12px;
   border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
   color: var(--muted);
   font-weight: 750;
   letter-spacing: 0.22px;
 }
 
.kicker strong {
  font-weight: 900;
  color: var(--text);
}

 .kicker__dot {
   width: 9px;
   height: 9px;
   border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.16);
 }
 
 h1 {
   margin: 16px 0 10px;
   font-size: clamp(30px, 3.7vw, 52px);
   line-height: 1.04;
   letter-spacing: -0.7px;
 }
 
 .lead {
   margin: 0 0 18px;
   color: var(--muted);
   font-size: clamp(15px, 1.35vw, 18px);
   line-height: 1.55;
 }
 
.pageTitle {
 margin: 0;
 font-size: clamp(28px, 3.2vw, 40px);
 letter-spacing: -0.6px;
}

.pageLead {
 margin: 10px 0 0;
}

.cardTitle {
 margin: 0;
 font-size: 18px;
 letter-spacing: -0.2px;
}

 .hero__actions {
   display: flex;
   align-items: center;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .stats {
   margin-top: 22px;
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 12px;
 }
 
.stat__v {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stat__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow-2);
}

.stat__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

 .stat {
   padding: 14px 14px;
   border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #f8fafc;
 }
 
 .stat__v {
   font-weight: 850;
   font-size: 16px;
   letter-spacing: 0.2px;
 }
 
 .stat__k {
   margin-top: 6px;
   color: var(--muted-2);
   font-size: 13px;
 }
 
 .hero__right {
   padding: 18px;
 }
 
 .stack {
   display: grid;
   gap: 12px;
 }
 
 .product {
   padding: 18px 18px;
   border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #ffffff;
   transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
 }
 
 .product:hover {
   transform: translateY(-1px);
  border-color: var(--stroke-2);
  background: var(--surface-2);
   box-shadow: var(--shadow-2);
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 7px 10px;
   border-radius: 999px;
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.22px;
  border: 1px solid var(--stroke);
  color: var(--text);
 }
 
 .badge--rose {
  background: #ffe4e6;
  border-color: #fecdd3;
  color: #9f1239;
 }
 
 .badge--blue {
  background: #dbeafe;
  border-color: #bfdbfe;
  color: #1e40af;
 }
 
 .product h3 {
   margin: 12px 0 8px;
   font-size: 18px;
   letter-spacing: -0.2px;
 }
 
 .product p {
   margin: 0;
   color: var(--muted);
   line-height: 1.55;
   font-size: 14.5px;
 }
 
 .product__meta {
   margin-top: 14px;
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   color: var(--muted-2);
   font-size: 12.5px;
 }
 
 .pill {
   padding: 7px 10px;
   border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #f8fafc;
 }
 
 .section {
  margin-top: 34px;
 }

 .section__head {
   display: flex;
   align-items: end;
   justify-content: space-between;
   gap: 14px;
   margin-top: 26px;
 }

 .page > .container > .section__head:first-child {
  margin-top: 0;
 }
 
 .section__head h2 {
   margin: 0;
   font-size: 22px;
   letter-spacing: -0.2px;
 }
 
 .section__head p {
   margin: 0;
   color: var(--muted);
   max-width: 56ch;
   line-height: 1.5;
 }
 
.systemHeader {
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.systemHeader--blockdate {
  background: #ffffff;
  border-left: 5px solid var(--secondary);
}

.systemHeader--acesso {
  background: #ffffff;
  border-left: 5px solid var(--primary);
}

.systemHeader::before,
.systemHeader::after {
 content: none;
}

.systemHeader > * {
 position: relative;
}

.systemHeader__line {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 12px;
}

.systemHeader__brand {
  font-weight: 950;
  letter-spacing: 0.14em;
  color: rgba(15, 23, 42, 0.58);
  text-transform: uppercase;
  font-size: 12px;
}

.systemHeader__pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(15, 23, 42, 0.72);
  font-weight: 950;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.systemHeader__title {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: -0.4px;
  font-weight: 850;
  line-height: 1.2;
  color: var(--text);
  display: block;
}

.systemHeader__desc {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
  letter-spacing: 0.1px;
  font-size: 15px;
}

 .grid {
   margin-top: 14px;
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 12px;
 }

 .resellerGrid {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 12px;
   margin-top: 10px;
 }

 .resellerCard {
   grid-column: span 6;
 }

 .resellerActions {
   margin-top: 10px;
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }

 .resellerActions .button {
   width: 100%;
 }
 
 .feature {
   grid-column: span 4;
   padding: 16px;
   border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #ffffff;
   box-shadow: 0 0 0 rgba(0, 0, 0, 0);
 }
 
 .feature__t {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 850;
   letter-spacing: 0.1px;
 }
 
.feature__t svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

 .icon {
   width: 28px;
   height: 28px;
   border-radius: 10px;
   display: grid;
   place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--stroke);
 }
 
 .feature p {
   margin: 10px 0 0;
   color: var(--muted);
   line-height: 1.55;
   font-size: 14px;
 }
 
.bandCard {
 margin-top: 20px;
 padding: 0;
 border-radius: 0;
 border: 0;
 background: transparent;
 box-shadow: none;
}

.steps {
 margin-top: 14px;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 12px;
}

.step {
 border-radius: 16px;
 border: 1px solid var(--stroke);
 background: #ffffff;
 padding: 16px;
}

.step__n {
 width: 44px;
 height: 44px;
 border-radius: 999px;
 display: grid;
 place-items: center;
 font-weight: 900;
 letter-spacing: 0.2px;
 color: #ffffff;
 background: var(--text);
}

.step__t {
 margin-top: 12px;
 font-weight: 900;
 letter-spacing: -0.2px;
}

.step__p {
 margin-top: 6px;
 color: var(--muted);
 line-height: 1.55;
}

.ctaCard {
 margin-top: 20px;
 border-radius: var(--radius);
 border: 1px solid rgba(29, 78, 216, 0.28);
 background: var(--primary);
 color: #ffffff;
 box-shadow: var(--shadow);
 overflow: hidden;
 position: relative;
}

.ctaCard::before {
 content: none;
}

.ctaCard__inner {
 position: relative;
 padding: 22px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 14px;
 flex-wrap: wrap;
}

.ctaCard h2 {
 margin: 0;
 font-size: 22px;
 letter-spacing: -0.2px;
}

.ctaCard p {
 margin: 8px 0 0;
 color: rgba(255, 255, 255, 0.9);
 line-height: 1.55;
}

.ctaCard__actions {
 display: flex;
 align-items: center;
 gap: 10px;
 flex-wrap: wrap;
}

.proofBar {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.proofBar__k {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.12px;
}

.logoRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.logoPill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.12px;
}

.logoPill strong {
  color: var(--text);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
}

.splitCard {
  padding: 18px;
}

.bullets {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #ffffff;
}

.bullets li svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke-width: 2.4;
  color: var(--primary);
}

.bullets strong {
  display: block;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.bullets span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.systemBand {
  margin-top: 18px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--stroke);
  background: var(--surface-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.systemBand__inner {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.systemBand__copy {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #ffffff;
  padding: 18px;
}

.systemBand__copy h3 {
  margin: 10px 0 0;
  font-size: 24px;
  letter-spacing: -0.4px;
}

.systemBand__copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.audience {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience .logoPill {
  background: var(--surface-2);
}

.featureMini {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  overflow: hidden;
}

.featureMini__head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--stroke);
  background: var(--surface-2);
}

.featureMini__head strong {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.featureMini__grid {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.featureMini__group {
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  padding: 12px;
}

.featureMini__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: var(--text);
}

.featureMini__title svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
  color: var(--primary);
}

.featureMini__list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.featureMini__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.featureMini__list svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke-width: 2.6;
  color: var(--secondary);
}

@media (max-width: 960px) {
  .featureMini__grid {
    grid-template-columns: 1fr;
  }
}

.featureSet {
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #ffffff;
  overflow: hidden;
}

.featureSet__head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--stroke);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.featureSet__head strong {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.featureGroup {
  border-top: 1px solid var(--stroke);
}

.featureGroup:first-child {
  border-top: 0;
}

.featureGroup summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.2px;
}

.featureGroup summary:hover {
  background: rgba(15, 23, 42, 0.02);
}

.featureGroup summary::-webkit-details-marker {
  display: none;
}

.featureGroup__left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 2px;
}

.featureGroup__left svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
  color: var(--primary);
}

.featureChevron svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.6;
  transition: transform 160ms ease;
  color: var(--muted-2);
}

.featureGroup[open] > summary .featureChevron svg {
  transform: rotate(180deg);
}

.featureBody {
  padding: 0 14px 12px;
}

.featureBody .checkList {
  margin-top: 0;
}

.featureBody .checkList svg {
  color: var(--secondary);
}

.systemBand__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.systemBand__visual {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--surface-2);
  padding: 18px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.systemBand__visual::before {
  content: none;
}

.systemMock {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
}

.systemMock img {
  width: min(520px, 100%);
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  animation: floatC 7.5s ease-in-out infinite;
}

.systemBand--acesso .systemMock img {
  transform: rotate(2deg);
  animation: floatD 8.2s ease-in-out infinite;
}

@media (max-width: 960px) {
  .systemBand__inner {
    grid-template-columns: 1fr;
  }
  .systemBand__visual {
    min-height: 360px;
  }
}

.pricing {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.priceCard {
  grid-column: span 6;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.priceCard__head {
  padding: 18px;
  border-bottom: 1px solid var(--stroke);
  background: var(--surface-2);
}

.priceCard__head h3 {
  margin: 8px 0 0;
  font-size: 20px;
  letter-spacing: -0.2px;
}

.priceCard__head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.priceCard__body {
  padding: 18px;
}

.priceCard__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkList {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checkList li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.5;
}

.checkList svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  stroke-width: 2.6;
  color: var(--secondary);
  flex: 0 0 18px;
  display: block;
}

.faq {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faqItem {
  border-top: 1px solid var(--stroke);
}

.faqItem:first-child {
  border-top: 0;
}

.faqBtn {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: var(--text);
}

.faqBtn strong {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.faqBtn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.6;
  color: var(--muted-2);
  transition: transform 160ms ease;
}

.faqItem[data-open="true"] .faqBtn svg {
  transform: rotate(180deg);
}

.faqPanel {
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.6;
  display: none;
}

.faqItem[data-open="true"] .faqPanel {
  display: block;
}

.swiper {
  width: 100%;
}

.swiperShell {
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.swiper-slide {
  padding: 18px;
}

.swiperNav {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid var(--stroke);
  background: var(--surface-2);
}

.swiperBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow-2);
  cursor: pointer;
}

.swiperBtn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.6;
}

.swiperPager {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.12px;
}

.quoteCard {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px;
  min-height: 220px;
  display: grid;
  gap: 12px;
}

.quoteCard__q {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.5;
}

.quoteCard__p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quoteMeta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted-2);
  font-weight: 800;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
}

.stars svg {
  width: 16px;
  height: 16px;
  stroke-width: 0;
  fill: currentColor;
}

@media (max-width: 960px) {
  .split {
    grid-template-columns: 1fr;
  }
  .priceCard {
    grid-column: span 12;
  }
}

.ctaCard .button {
 border-color: rgba(255, 255, 255, 0.32);
 background: rgba(255, 255, 255, 0.12);
 color: #ffffff;
 box-shadow: none;
}

.ctaCard .button:hover {
 background: rgba(255, 255, 255, 0.18);
 border-color: rgba(255, 255, 255, 0.44);
 box-shadow: none;
}

.ctaCard .button--primary {
 background: #ffffff;
 color: var(--text);
 border-color: #ffffff;
 box-shadow: none;
}

.ctaCard .button--primary:hover {
 background: #f8fafc;
 border-color: #f8fafc;
}

 .mediaLayout,
 .contactLayout {
   display: grid;
   grid-template-columns: 0.9fr 1.1fr;
   gap: 14px;
   margin-top: 10px;
 }
 
 .pageCard {
   padding: 18px;
 }
 
 .gallery {
   display: grid;
   grid-template-columns: repeat(12, 1fr);
   gap: 12px;
 }
 
 .shot {
   grid-column: span 6;
   aspect-ratio: 16 / 10;
   border-radius: 16px;
  border: 1px solid var(--stroke);
  background: #f8fafc;
   overflow: hidden;
   position: relative;
 }
 
 .shot::before {
  content: none;
 }
 
 .shot__label {
   position: absolute;
   left: 12px;
   bottom: 12px;
   padding: 8px 10px;
   border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--text);
   font-weight: 850;
   font-size: 12px;
   letter-spacing: 0.2px;
 }
 
 .list {
   margin: 0;
   padding: 0;
   list-style: none;
   display: grid;
   gap: 10px;
 }
 
 .list li {
   padding: 12px 12px;
   border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #ffffff;
   color: var(--muted);
   line-height: 1.5;
 }
 
 .kv {
   display: grid;
   gap: 10px;
   margin-top: 12px;
 }
 
 .kvRow {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   padding: 12px 12px;
   border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #ffffff;
 }
 
 .kvRow__k {
   color: var(--muted-2);
   font-weight: 750;
 }
 
 .kvRow__v {
  color: var(--text);
   font-weight: 800;
 }
 
 form {
   display: grid;
   gap: 10px;
   margin-top: 10px;
 }
 
 label {
   display: grid;
   gap: 8px;
   font-weight: 800;
   color: rgba(9, 14, 30, 0.88);
   letter-spacing: 0.15px;
   font-size: 13px;
 }
 
 input,
 textarea {
   width: 100%;
   border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #ffffff;
  color: var(--text);
   padding: 12px 12px;
   outline: none;
   font: inherit;
   transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 input:focus,
 textarea:focus {
  border-color: rgba(29, 78, 216, 0.6);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.16);
 }
 
 .formActions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   margin-top: 6px;
 }
 
 .formHint {
   color: var(--muted-2);
   font-size: 13px;
   line-height: 1.4;
 }
 
 footer {
  border-top: 1px solid var(--stroke);
   padding: 20px 0;
   color: var(--muted-2);
  background: var(--surface-2);
  background-image: none;
 }
 
 .footerInner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .footBrand {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   flex-wrap: wrap;
   min-width: 0;
 }
 
 .footBrand span {
   min-width: 0;
 }
 
 .footBrand img {
   height: 26px;
   width: auto;
   opacity: 0.9;
 }
 
 .smallLink {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 10px;
   border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--surface-2);
   color: var(--muted);
   font-weight: 800;
 }
 
 .smallLink:hover {
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow-2);
 }

 .smallLink--hasItems {
  border-color: rgba(22, 163, 74, 0.32);
  background: rgba(22, 163, 74, 0.12);
  color: #14532d;
 }

 .smallLink--hasItems:hover {
  border-color: rgba(22, 163, 74, 0.42);
  background: rgba(22, 163, 74, 0.16);
  color: #14532d;
 }
 
 .toast {
   position: fixed;
   left: 50%;
   bottom: 18px;
   transform: translateX(-50%);
   padding: 12px 14px;
   border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
   box-shadow: var(--shadow);
   display: none;
   max-width: min(620px, calc(100% - 40px));
   text-align: center;
   font-weight: 800;
   letter-spacing: 0.15px;
 }
 
 .toast[data-show="true"] {
   display: block;
 }
 
 @media (max-width: 960px) {
   .hero {
     grid-template-columns: 1fr;
   }
   .brand {
     min-width: auto;
   }
   .cta {
     display: none;
   }
   .stats {
     grid-template-columns: 1fr;
   }
   .feature {
     grid-column: span 6;
   }
   .mediaLayout,
   .contactLayout {
     grid-template-columns: 1fr;
   }
  .steps {
    grid-template-columns: 1fr;
  }
  .heroVisual {
    min-height: 480px;
  }
  .floatImg {
    width: min(520px, 92%);
  }
  .floatChip--mid {
    bottom: 18px;
  }
 }

 @media (max-width: 720px) {
  .navToggle {
    display: inline-flex;
  }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    border-radius: 18px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: var(--shadow);
  }
  .nav a {
    justify-content: flex-start;
    border-radius: 14px;
  }

  .navCta {
    display: none;
  }

  .nav a.navLogin {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #1e40af;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(29, 78, 216, 0.18);
    margin-top: 4px;
  }

  .nav a.navLogin:hover {
    background: #1e40af;
    border-color: #1e3a8a;
    box-shadow: 0 18px 34px rgba(29, 78, 216, 0.22);
  }
 }
 
 @media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }
   .nav {
    padding: 8px;
   }
   .nav a {
     padding: 9px 12px;
     font-size: 13px;
   }
   .stats {
     grid-template-columns: repeat(2, 1fr);
     gap: 10px;
     margin-top: 16px;
   }
   .stat {
     padding: 12px;
     border-radius: 14px;
   }
   .stat__v {
     font-size: 14px;
     letter-spacing: 0.1px;
     gap: 8px;
   }
   .stat__icon {
     width: 30px;
     height: 30px;
     border-radius: 10px;
   }
   .stat__k {
     font-size: 12px;
     margin-top: 4px;
   }
   .feature {
     grid-column: span 12;
   }
   .shot {
     grid-column: span 12;
   }
   .resellerCard {
     grid-column: span 12;
   }
   .footerInner {
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
   }
   .footBrand {
     width: 100%;
   }
   .smallLink {
     width: 100%;
     justify-content: center;
   }
 }
