:root {
  --navy: #031534;
  --blue: #075bff;
  --bright: #1677ff;
  --ink: #0b1730;
  --muted: #5e687b;
  --line: #dce3ee;
  --soft: #f4f7fb;
  --white: #fff;
  --green: #23c96f;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(3, 21, 52, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 999;
  background: #fff;
  padding: 10px 16px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: absolute;
  z-index: 20;
  width: 100%;
  color: #fff;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  width: 188px;
  height: 46px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav > a {
  font-size: 0.92rem;
  font-weight: 650;
}
nav > a:not(.nav-cta) {
  opacity: 0.78;
}
nav > a:hover {
  opacity: 1;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px;
}
.hero {
  background: var(--navy);
  color: #fff;
  min-height: 760px;
  padding: 170px 0 110px;
  overflow: hidden;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 50%;
  right: -120px;
  top: 40px;
  box-shadow:
    0 0 0 100px rgba(22, 119, 255, 0.035),
    0 0 0 200px rgba(22, 119, 255, 0.025);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
}
.eyebrow span {
  width: 25px;
  height: 2px;
  background: currentColor;
}
.eyebrow.light {
  color: #84b6ff;
}
.hero h1,
.section h2,
.final-cta h2 {
  letter-spacing: -0.052em;
  line-height: 1.02;
  margin: 0;
}
.hero h1 {
  font-size: clamp(3.1rem, 5.3vw, 5.3rem);
  max-width: 710px;
}
.hero h1 em {
  font-style: normal;
  color: #478cff;
}
.lead {
  font-size: 1.16rem;
  color: #b7c3d7;
  max-width: 630px;
  line-height: 1.7;
  margin: 28px 0 34px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 750;
  transition: 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 91, 255, 0.25);
}
.text-link {
  font-weight: 700;
  color: #dbe6f7;
}
.text-link span {
  color: #498fff;
  margin-left: 8px;
}
.trust-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
  color: #97a7bf;
  font-size: 0.86rem;
}
.trust-list li:before {
  content: "✓";
  color: #5b9bff;
  margin-right: 7px;
}
.hero-visual {
  height: 470px;
  position: relative;
  padding: 38px 0 0 30px;
}
.visual-head {
  position: absolute;
  top: 0;
  right: 30px;
  color: #7e90aa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.67rem;
  font-weight: 700;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(35, 201, 111, 0.13);
  margin-right: 9px;
}
.browser-card {
  width: 93%;
  height: 365px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
  transform: rotate(2deg);
  overflow: hidden;
}
.browser-bar {
  height: 42px;
  background: #eef2f8;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 0 13px;
}
.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5ccd8;
}
.browser-bar span {
  color: #798397;
  font-size: 0.62rem;
  background: #fff;
  padding: 4px 32px;
  border-radius: 5px;
  margin: auto;
}
.mini-site {
  height: calc(100% - 42px);
  background: linear-gradient(135deg, #eff5ff, #fff);
  padding: 52px 42px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mini-site small {
  letter-spacing: 0.16em;
  font-weight: 850;
  color: var(--blue);
  font-size: 0.66rem;
}
.mini-site strong {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 23px 0 29px;
}
.mini-site b {
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 0.7rem;
}
.float-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border-radius: 13px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
}
.float-card strong,
.float-card small {
  display: block;
}
.float-card strong {
  font-size: 0.8rem;
}
.float-card small {
  font-size: 0.65rem;
  color: #7c8799;
}
.google-card {
  right: -5px;
  top: 120px;
}
.google-card > b {
  color: var(--green);
  margin-left: auto;
}
.icon-letter {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f1f5fb;
  color: #4285f4;
  font-weight: 900;
}
.domain-card {
  bottom: 22px;
  left: -2px;
}
.code {
  display: grid;
  place-items: center;
  background: #eaf2ff;
  color: var(--blue);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-weight: 900;
}
.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.proof-strip .shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7b8595;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 800;
}
.proof-strip span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9facc0;
}
.section {
  padding: 112px 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 55px;
}
.section h2 {
  font-size: clamp(2.55rem, 4.4vw, 4.2rem);
}
.section-heading > p {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0 0 6px;
  max-width: 430px;
}
.services {
  background: var(--soft);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid #e0e6ef;
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  min-height: 330px;
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(5, 35, 77, 0.09);
}
.service-card.featured {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.service-number {
  position: absolute;
  right: 28px;
  top: 25px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9aa8ba;
}
.featured .service-number {
  color: #9bc1ff;
}
.service-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #ecf3ff;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 32px;
}
.featured .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.service-card h3 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.service-card > p,
.service-card > div > p {
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 500px;
}
.featured > p {
  color: #cfe0ff;
}
.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #566175;
  font-size: 0.88rem;
}
.featured ul {
  color: #dbe8ff;
}
.service-card li {
  margin: 5px 0;
}
.service-card li:before {
  content: "—";
  margin-right: 8px;
  color: #8fa0b8;
}
.featured li:before {
  color: #fff;
}
.service-card > a {
  position: absolute;
  right: 33px;
  bottom: 30px;
  font-size: 0.84rem;
  font-weight: 800;
}
.service-card.wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  min-height: auto;
}
.coming-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coming-list span {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}
.coming-list b {
  font-size: 0.65rem;
  color: var(--blue);
  background: #eaf2ff;
  padding: 4px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.process {
  background: var(--navy);
  color: #fff;
}
.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}
.sticky-copy > p:not(.eyebrow) {
  color: #9caac0;
  max-width: 430px;
  margin: 24px 0 30px;
}
.button.ghost {
  border: 1px solid #385173;
  color: #fff;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 15px;
  padding: 31px 0;
  border-bottom: 1px solid #283a57;
}
.steps > li > span {
  font-size: 0.72rem;
  color: #5e9cff;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.steps h3 {
  font-size: 1.25rem;
  margin: -7px 0 7px;
}
.steps p {
  margin: 0;
  color: #96a5bc;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
}
.price-card.popular {
  background: var(--navy);
  color: #fff;
  padding-top: 43px;
  box-shadow: var(--shadow);
  border: 0;
}
.popular-label {
  position: absolute;
  right: 22px;
  top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #86b6ff;
  font-size: 0.61rem;
  font-weight: 900;
}
.price-card > p:first-of-type {
  font-weight: 850;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--blue);
}
.price {
  font-size: 3.4rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 15px 0;
}
.price small {
  font-size: 0.95rem;
  vertical-align: top;
  letter-spacing: 0;
  margin-right: 4px;
}
.price-desc {
  color: var(--muted);
  min-height: 52px;
}
.popular .price-desc {
  color: #aab7ca;
}
.price-card ul {
  list-style: none;
  padding: 24px 0;
  margin: 20px 0 25px;
  border-top: 1px solid var(--line);
}
.popular ul {
  border-color: #2a3d5d;
}
.price-card li {
  margin: 9px 0;
  font-size: 0.9rem;
}
.price-card li:before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
  margin-right: 9px;
}
.button.outline {
  border: 1px solid var(--line);
  width: 100%;
}
.price-card .button.primary {
  width: 100%;
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 28px 0 0;
}
.extras {
  background: #eaf2ff;
}
.extras-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.extras-list {
  border-top: 1px solid #b9cae3;
}
.extras-list div {
  display: flex;
  justify-content: space-between;
  padding: 17px 4px;
  border-bottom: 1px solid #b9cae3;
}
.extras-list span {
  font-weight: 700;
}
.extras-list strong {
  color: var(--blue);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}
.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
  max-width: 360px;
}
.accordion details {
  border-top: 1px solid var(--line);
  padding: 23px 0;
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.04rem;
  display: flex;
  justify-content: space-between;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 400;
  transition: 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  max-width: 650px;
  margin: 14px 40px 0 0;
}
.final-cta {
  background: var(--blue);
  color: #fff;
  padding: 105px 0;
  text-align: center;
}
.final-cta .eyebrow {
  justify-content: center;
  color: #bed6ff;
}
.final-cta h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}
.final-cta > div > p:not(.eyebrow) {
  color: #d5e4ff;
  font-size: 1.05rem;
  margin: 25px 0 32px;
}
.button.white {
  background: #fff;
  color: var(--navy);
}
footer {
  background: #020e23;
  color: #fff;
  padding: 70px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-grid img {
  width: 190px;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}
.footer-grid p,
.footer-grid span {
  color: #8e9db3;
  max-width: 360px;
  margin: 0;
}
.footer-grid strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: #8292aa;
}
.footer-grid a {
  color: #c4cede;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #1c2b43;
  margin-top: 50px;
  padding-top: 24px;
  color: #728198;
  font-size: 0.76rem;
}
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c76f;
  box-shadow: 0 12px 30px rgba(16, 102, 54, 0.3);
  z-index: 30;
  transition: 0.2s;
}
.floating-whatsapp:hover {
  transform: scale(1.07);
}
.floating-whatsapp svg {
  width: 31px;
  fill: #fff;
}
@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }
  .menu-toggle {
    display: block;
    z-index: 2;
  }
  nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    background: #fff;
    color: var(--ink);
    padding: 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  nav.open {
    display: flex;
  }
  .nav-cta {
    text-align: center;
    background: var(--blue);
    color: #fff;
    border: 0;
  }
  .hero {
    padding-top: 135px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 580px;
    width: 100%;
    margin: auto;
  }
  .section-heading,
  .process-grid,
  .extras-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .service-card.wide {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: auto;
  }
  .price-card {
    padding: 30px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 35px;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }
  .site-header {
    height: 72px;
  }
  .brand {
    width: 155px;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }
  .lead {
    font-size: 1.02rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .trust-list {
    gap: 8px 16px;
  }
  .hero-visual {
    height: 360px;
    padding-left: 4px;
  }
  .browser-card {
    height: 290px;
    width: 95%;
  }
  .mini-site {
    padding: 35px 24px;
  }
  .mini-site strong {
    font-size: 1.55rem;
  }
  .google-card {
    right: -4px;
    top: 102px;
    min-width: 190px;
  }
  .domain-card {
    bottom: 2px;
    left: 0;
  }
  .visual-head {
    right: 0;
  }
  .proof-strip .shell {
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
    padding: 20px 0;
  }
  .proof-strip span:nth-of-type(even) {
    display: none;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section h2 {
    font-size: 2.65rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px;
    min-height: 320px;
  }
  .service-card.wide {
    grid-column: auto;
  }
  .process-grid {
    gap: 45px;
  }
  .extras-list div {
    gap: 20px;
  }
  .faq-grid {
    gap: 38px;
  }
  .final-cta {
    padding: 78px 0;
  }
  .final-cta .button {
    width: 100%;
    padding-inline: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    gap: 18px;
    flex-direction: column;
  }
  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* Área dedicada ao ERP em desenvolvimento. */
.erp-section {
  background: linear-gradient(135deg, #061b3f 0%, #092b61 100%);
  color: #fff;
  overflow: hidden;
}
.erp-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 90px;
  align-items: center;
}
.erp-copy h2 {
  font-size: clamp(2.55rem, 4.4vw, 4.2rem);
}
.erp-copy > p:not(.eyebrow) {
  color: #b8c7dc;
  max-width: 520px;
  margin: 25px 0;
}
.erp-status {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
}
.erp-status .status-dot {
  grid-row: 1/3;
}
.erp-status strong {
  font-size: 0.92rem;
}
.erp-status small {
  color: #9fb0c8;
}
.erp-modules {
  background: #fff;
  border-radius: 22px;
  padding: 10px 30px;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
.erp-modules article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.erp-modules article:last-child {
  border-bottom: 0;
}
.erp-modules article > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  padding-top: 5px;
}
.erp-modules h3 {
  font-size: 1.05rem;
  margin: 0 0 3px;
}
.erp-modules p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) {
  .erp-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
@media (max-width: 620px) {
  .erp-modules {
    padding: 8px 20px;
  }
  .erp-modules article {
    grid-template-columns: 36px 1fr;
  }
  .erp-copy .button {
    width: 100%;
    padding-inline: 14px;
  }
}

/* Cabeçalho com a identidade azul da marca sobre fundo claro. */
.site-header {
  background: #fff;
  border-bottom-color: rgba(7, 91, 255, 0.18);
  color: var(--blue);
}
.brand img {
  filter: none;
}
.nav-cta {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.menu-toggle span {
  background: var(--blue);
}

/* Mantém os planos alinhados quando um card contém mais itens. */
.pricing-grid {
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
}
.price-card .button {
  margin-top: auto;
}
.price-card:hover {
  box-shadow: 0 0 0 2px var(--blue);
}

.brand {
  width: 250px;
  height: 54px;
}
.brand img {
  filter: contrast(1.15) saturate(1.15);
}
@media (max-width: 620px) {
  .brand {
    width: 200px;
    height: 50px;
  }
}
