:root {
  --navy: #0b2658;
  --navy-2: #0d3073;
  --deep: #071a3d;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f1f5f9;
  --page: #f8fafc;
  --white: #fff;
  --ok: #059669;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(7, 26, 61, 0.12);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --header: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--page);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header.is-on {
  background: var(--deep);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.header__in {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img {
  height: 64px;
  width: auto;
}
.logo--foot img {
  height: 58px;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav > a:not(.btn) {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}
.nav > a:not(.btn):hover { color: #fff; }
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.burger span { width: 16px; height: 2px; background: #fff; border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.2rem;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: .15s background, .15s border-color, .15s color;
}
.btn--sm { min-height: 38px; padding: 0 .95rem; font-size: .82rem; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); }
.header .btn--navy {
  background: #fff;
  color: var(--navy);
}
.header .btn--navy:hover {
  background: #e8eef8;
}
.btn--line { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--line:hover { border-color: #cbd5e1; }
.btn--light { background: #fff; color: var(--navy); width: 100%; }
.btn--light:hover { background: #eef2ff; }

.chip {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  background: #e8eef8;
  border-radius: 999px;
  padding: .35rem .7rem;
  margin-bottom: 1rem;
}
.chip--light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
}

/* Hero */
.hero {
  padding: 2.75rem 0 3.5rem;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.hero__copy {
  max-width: 720px;
}
.hero__copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--deep);
  margin-bottom: 1rem;
}
.hero__lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 1.6rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.5rem; }
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hero__trust li {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .75rem;
}

/* Tela real (janela do browser + app) */
.hero__shot {
  width: 100%;
}
.screen {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  background: #e8e9ed;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}
.screen__chrome {
  display: flex;
  align-items: center;
  gap: .85rem;
  height: 42px;
  padding: 0 .9rem;
  background: #f1f5f9;
  border-bottom: 1px solid #dbe2ea;
}
.screen__dots {
  display: flex;
  gap: .35rem;
  flex-shrink: 0;
}
.screen__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  display: block;
}
.screen__dots i:nth-child(1) { background: #f87171; }
.screen__dots i:nth-child(2) { background: #fbbf24; }
.screen__dots i:nth-child(3) { background: #34d399; }
.screen__url {
  flex: 1;
  height: 26px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 .75rem;
}

.app {
  display: grid;
  grid-template-columns: 260px 1fr;
  height: 560px;
  background: #e8e9ed;
}
.app__side {
  background: #0b2658;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid rgba(148, 163, 184, 0.25);
}
.app__side-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: .75rem .85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  flex-shrink: 0;
}
.app__logo {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.app__nav-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: .85rem .85rem .4rem;
  flex-shrink: 0;
}
.app__nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 .5rem .75rem;
  flex: 1 1 auto;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.22) transparent;
}
.app__nav span {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: .55rem .7rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
  min-height: 36px;
  color: #cbd5f5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app__nav .on {
  background: #ffffff;
  color: #0b2658;
}
.app__side-foot {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem .85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  flex-shrink: 0;
}
.app__side-foot > b {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #f9fafb;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.app__side-foot strong {
  display: block;
  font-size: .78rem;
  color: #f9fafb;
  font-weight: 600;
}
.app__side-foot small {
  display: block;
  font-size: .68rem;
  color: #94a3b8;
}

.app__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #e8e9ed;
}
.app__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  min-height: 68px;
  padding: .75rem 1.1rem;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.app__topbar strong {
  display: block;
  font-size: 1.05rem;
  color: #0b2658;
  letter-spacing: -.02em;
}
.app__topbar small {
  color: #64748b;
  font-size: .78rem;
}
.app__top-right {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.app__bell,
.app__avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
}
.app__bell {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0b2658;
}
.app__avatar {
  background: #0b2658;
  color: #fff;
}
.app__content {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 0;
  overflow: auto;
}
.app__kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .65rem;
}
.app__kpis article {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: .85rem .9rem;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
}
.app__kpis span {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #64748b;
  margin-bottom: .35rem;
}
.app__kpis strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -.02em;
  color: #0f172a;
}
.app__kpis em {
  display: block;
  margin-top: .25rem;
  font-size: .72rem;
  font-style: normal;
  color: #059669;
}
.app__split {
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: .65rem;
  min-height: 0;
}
.app__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: .9rem 1rem;
  min-width: 0;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
}
.app__card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .65rem;
}
.app__card header strong { font-size: .88rem; color: #0b2658; }
.app__card header span {
  font-size: .7rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 999px;
  padding: .22rem .55rem;
}
.app__card ul { list-style: none; }
.app__card li {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: .82rem;
}
.app__card li:last-child { border-bottom: 0; }
.app__card li span {
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app__card li b { color: #0b2658; flex-shrink: 0; }
.app__agenda { display: grid; gap: .45rem; }
.app__agenda > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: .5rem;
  padding: .55rem .6rem;
  border-radius: 9px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}
.app__agenda b { font-size: .76rem; color: #0b2658; }
.app__agenda span { font-size: .8rem; color: #475569; font-weight: 500; }

/* Sections */
.block { padding: 5rem 0; }
.block--soft {
  background: #fff;
  border-block: 1px solid var(--line);
}
.block__head {
  max-width: 720px;
  margin-bottom: 2.4rem;
}
.block__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -.03em;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: .7rem;
}
.block__head p { color: var(--muted); font-size: 1.05rem; }

.mods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.mod {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem;
}
.mod h3 {
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -.015em;
  margin-bottom: .9rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--soft);
}
.mod ul { list-style: none; display: grid; gap: .55rem; }
.mod li {
  font-size: .92rem;
  color: #475569;
  padding-left: .95rem;
  position: relative;
}
.mod li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #93c5fd;
  position: absolute;
  left: 0; top: .55rem;
}
.mod strong { color: var(--ink); font-weight: 700; }

.why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.why article {
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
}
.why h3 {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: .45rem;
  letter-spacing: -.015em;
}
.why p { color: var(--muted); font-size: .95rem; }

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.55rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.plan--featured {
  outline: 2px solid var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}
.plan__badge {
  position: absolute;
  top: -12px; left: 1.2rem;
  background: var(--navy);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 999px;
}
.plan header h3 {
  font-size: 1.3rem;
  color: var(--deep);
  letter-spacing: -.02em;
}
.plan header p { color: var(--muted); font-size: .9rem; margin: .15rem 0 .45rem; }
.plan header strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}
.plan ul { list-style: none; display: grid; gap: .5rem; flex: 1; }
.plan li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .92rem;
  color: #334155;
}
.plan li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #93c5fd;
  position: absolute;
  left: 0; top: .48rem;
}
.plan--featured li::before { background: var(--navy); }
.plan__note {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.45;
}
.plan .btn { width: 100%; margin-top: .2rem; }

.compare h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .85rem;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
th, td {
  padding: .85rem 1rem;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid var(--soft);
}
th {
  background: #f8fafc;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
td:not(:first-child) {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}
tr:last-child td { border-bottom: 0; }

/* Contact */
.contact {
  background: linear-gradient(145deg, var(--deep), var(--navy) 55%, #123a7a);
  color: #fff;
  padding: 5rem 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: start;
}
.contact h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: .7rem;
}
.contact > .wrap > div > p,
.contact__grid > div > p {
  color: rgba(255,255,255,.74);
  max-width: 42ch;
}
.contact__list {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}
.contact__list span {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .2rem;
}
.contact__list a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
}
.contact__list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 1.35rem;
  display: grid;
  gap: .8rem;
}
.form label {
  display: grid;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,26,61,.35);
  color: #fff;
  border-radius: 10px;
  padding: .8rem .9rem;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
}
.form option { color: #0f172a; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(147,197,253,.8);
  box-shadow: 0 0 0 3px rgba(147,197,253,.18);
}

/* Footer */
.footer {
  background: #050f24;
  color: rgba(255,255,255,.62);
  padding: 1.7rem 0;
}
.footer__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: .55s opacity ease, .55s transform ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .contact__grid,
  .why { grid-template-columns: 1fr; }
  .mods { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; order: -1; }
  .app {
    grid-template-columns: 220px 1fr;
    height: 520px;
  }
  .app__kpis { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .burger { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .6rem 1.25rem 1rem;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(7, 26, 61, 0.35);
  }
  .nav.open { display: flex; }
  .nav > a:not(.btn) {
    padding: .85rem .1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
  }
  .nav .btn { width: 100%; margin-top: .5rem; }
  .app {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 420px;
  }
  .app__side { display: none; }
  .hero { padding-top: 2rem; }
  .block, .contact { padding: 3.5rem 0; }
  .wrap { width: calc(100% - 1.5rem); }
  .app__kpis,
  .app__split { grid-template-columns: 1fr; }
}
