.landing-page {
  --home-bg: #07100c;
  --home-surface: #0b1711;
  --home-card: #0f1d16;
  --home-card2: #14271d;
  --home-text: #f5f7fb;
  --home-muted: #9aac9f;
  --home-line: rgba(255, 255, 255, .09);
  --home-brand: #64eba2;
  --home-brand2: #20c971;
  --home-accent: #a6ffcb;
  --home-max: 1240px;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 0;
}

.landing-page * {
  box-sizing: border-box;
}

.landing-page button,
.landing-page input,
.landing-page select {
  font: inherit;
}

.landing-page button,
.landing-page a {
  -webkit-tap-highlight-color: transparent;
}

.landing-page button:focus-visible,
.landing-page a:focus-visible,
.landing-page input:focus-visible,
.landing-page select:focus-visible {
  outline: 3px solid rgba(108, 229, 216, .5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 999999;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  color: #080b12;
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.home-wrap {
  width: min(var(--home-max), calc(100% - 48px));
  margin: 0 auto;
}

.landing-page #navbar.home-navbar {
  position: sticky;
  top: 0;
  z-index: 5000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 0 max(24px, calc((100% - var(--home-max)) / 2));
  border: 0;
  border-bottom: 1px solid var(--home-line);
  background: rgba(7, 9, 18, .82);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
}

.home-navbar .btLogo {
  text-decoration: none;
}

.home-navbar .logo {
  margin: 0;
  color: var(--home-text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.home-navbar .neon-flash {
  color: var(--home-brand);
  text-shadow: none;
}

.home-navbar .home-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.home-navbar .home-menu .navMenu {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 13px;
  border-radius: 12px;
  color: #b9c3d2;
  font-size: .91rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}

.home-navbar .home-menu .navMenu:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  text-shadow: none;
}

.home-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-navbar .lang-selector {
  min-width: 58px;
  height: 42px;
  margin: 0;
  padding: 0 9px;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
  color: #dce3ed;
  font-family: inherit;
  font-size: .82rem;
}

.home-login,
.home-create,
.home-dashboard {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
}

.home-login {
  background: transparent;
  color: #dce3ed;
}

.home-login:hover {
  background: rgba(255, 255, 255, .06);
}

.home-create,
.home-dashboard {
  background: var(--home-brand);
  color: #07100f;
}

.menu-toggle,
.mobile-menu,
.nav-backdrop {
  display: none;
}

.landing-main {
  overflow: hidden;
}

.landing-page section {
  border: 0;
}

.hero-home {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 74px 0 86px;
  background:
    radial-gradient(circle at 83% 12%, rgba(32, 201, 113, .13), transparent 29%),
    radial-gradient(circle at 15% 35%, rgba(108, 229, 216, .12), transparent 31%),
    linear-gradient(180deg, #07100c 0%, #09150f 100%);
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy {
  max-width: 720px;
}

.hero-kicker,
.experience-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-brand);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-brand);
  box-shadow: 0 0 0 7px rgba(108, 229, 216, .1);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 22px;
  color: var(--home-text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.65rem, 6vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: #acb7c7;
  font-size: clamp(1.02rem, 1.8vw, 1.19rem);
  line-height: 1.72;
}

.hero-search {
  width: min(680px, 100%);
  min-height: 64px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 34px 0 20px;
  padding: 7px 7px 7px 19px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(15px);
}

.search-icon {
  width: 17px;
  height: 17px;
  display: block;
  border: 2px solid #8491a5;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  background: #8491a5;
  transform: rotate(45deg);
}

.hero-search input {
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: .98rem;
}

.hero-search input::placeholder {
  color: #7f8b9d;
}

.hero-search button {
  min-width: 112px;
  height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: #fff;
  color: #090c15;
  cursor: pointer;
  font-weight: 850;
}

.hero-actions,
.experience-actions,
.final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-main,
.btn-ghost,
.btn-light,
.btn-line {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn-main {
  border: 1px solid var(--home-brand);
  background: var(--home-brand);
  color: #07110f;
}

.btn-main:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, .04);
  color: #e8edf5;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 25px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8f9caf;
  font-size: .82rem;
}

.hero-trust i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(108, 229, 216, .12);
  color: var(--home-brand);
  font-style: normal;
}

.hero-trust b {
  font-weight: 650;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(24, 33, 52, .97), rgba(12, 16, 28, .96));
  box-shadow: 0 38px 100px rgba(0, 0, 0, .45), inset 0 1px rgba(255, 255, 255, .06);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 28px;
}

.hero-panel::before {
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(32, 201, 113, .20);
}

.hero-panel::after {
  inset: -28px 40px auto -28px;
  height: 130px;
  background: radial-gradient(circle, rgba(108, 229, 216, .19), transparent 70%);
  filter: blur(10px);
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.panel-top div {
  display: grid;
  gap: 5px;
}

.panel-label,
.panel-field small {
  color: #829488;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.panel-top strong {
  max-width: 300px;
  font-size: 1.13rem;
  line-height: 1.4;
}

.panel-state {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 184, 92, .12);
  color: var(--home-accent);
  font-size: .72rem;
  font-weight: 850;
}

.panel-progress {
  height: 6px;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .07);
}

.panel-progress span {
  width: 38%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--home-brand), var(--home-brand2));
}

.panel-field {
  display: grid;
  gap: 7px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.panel-field strong {
  color: #e7edf6;
  font-size: .89rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.panel-checks {
  display: grid;
  gap: 10px;
  margin: 21px 0;
}

.panel-checks span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #8693a6;
  font-size: .82rem;
}

.panel-checks i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  font-style: normal;
  font-size: .7rem;
}

.panel-checks b {
  font-weight: 650;
}

.panel-checks .done {
  color: #dce4ef;
}

.panel-checks .done i {
  border-color: rgba(108, 229, 216, .35);
  background: rgba(108, 229, 216, .12);
  color: var(--home-brand);
}

.panel-button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  background: #f5f7fb;
  color: #0a0d15;
  cursor: pointer;
  font-weight: 850;
}

.choice-section,
.category-section,
.steps-section,
.expertise-section,
.experience-section,
.final-section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.choice-section,
.steps-section,
.experience-section {
  background: #0a1510;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.section-head > div:first-child,
.compact-head {
  max-width: 720px;
}

.section-head span,
.compact-head > span,
.final-card > div > span {
  display: block;
  margin-bottom: 10px;
  color: var(--home-brand);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-head h2,
.compact-head h2,
.experience-layout h2,
.final-card h2 {
  margin: 0;
  color: var(--home-text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.08;
}

.section-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--home-muted);
  line-height: 1.65;
}

.compact-head {
  display: block;
  margin-bottom: 38px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.choice-card {
  min-height: 334px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--home-line);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.client-card {
  background: linear-gradient(145deg, rgba(108, 229, 216, .11), rgba(17, 23, 37, .95) 54%);
}

.pro-card {
  background: linear-gradient(145deg, rgba(32, 201, 113, .11), rgba(17, 23, 37, .95) 54%);
}

.choice-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  color: var(--home-brand);
  font-size: .78rem;
  font-weight: 900;
}

.pro-card .choice-icon,
.pro-card .choice-type {
  color: #8af3b5;
}

.choice-type {
  color: var(--home-brand);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.choice-card h3 {
  max-width: 470px;
  margin: 14px 0 12px;
  color: #f7f9fc;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -.035em;
  line-height: 1.2;
}

.choice-card p {
  max-width: 500px;
  margin: 0 0 28px;
  color: var(--home-muted);
  line-height: 1.65;
}

.choice-card button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.category-section,
.expertise-section,
.final-section {
  background: var(--home-bg);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  text-align: left;
  padding: 24px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: var(--home-card);
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(108, 229, 216, .36);
  background: var(--home-card2);
}

.category-card[hidden] {
  display: none;
}

.category-code {
  width: max-content;
  margin-bottom: 28px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(108, 229, 216, .1);
  color: var(--home-brand);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.category-card strong {
  font-size: 1.03rem;
  letter-spacing: -.015em;
}

.category-card small {
  display: block;
  margin-top: 9px;
  color: #8794a8;
  font-size: .82rem;
  line-height: 1.5;
}

.category-card i {
  justify-self: end;
  align-self: end;
  color: #75897c;
  font-style: normal;
  font-size: 1.2rem;
}

.search-empty {
  margin-top: 18px;
  padding: 26px;
  border: 1px dashed rgba(255, 255, 255, .15);
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, .025);
}

.search-empty p {
  margin: 8px 0 18px;
  color: var(--home-muted);
}

.search-empty button {
  min-height: 44px;
  padding: 0 17px;
  border: 0;
  border-radius: 11px;
  background: var(--home-brand);
  color: #06110f;
  cursor: pointer;
  font-weight: 850;
}

.center-head {
  align-items: center;
}

.role-tabs {
  width: max-content;
  display: flex;
  gap: 5px;
  margin-bottom: 28px;
  padding: 5px;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.role-tabs button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #8fa397;
  cursor: pointer;
  font-weight: 800;
}

.role-tabs button.active {
  background: #f4f6fa;
  color: #090c14;
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--home-line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--home-card);
}

.steps-track[hidden] {
  display: none;
}

.steps-track article {
  min-height: 245px;
  padding: 34px;
  border-right: 1px solid var(--home-line);
}

.steps-track article:last-child {
  border: 0;
}

.steps-track article > span {
  display: block;
  margin-bottom: 40px;
  color: var(--home-brand);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.steps-track h3 {
  margin: 0 0 12px;
  color: #f3f6fa;
  font-size: 1.22rem;
}

.steps-track p {
  margin: 0;
  color: var(--home-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.section-head > a {
  flex: 0 0 auto;
  color: var(--home-brand);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 800;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--home-line);
}

.expertise-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--home-line);
  color: #fff;
  text-decoration: none;
  transition: background .2s ease;
}

.expertise-card:nth-child(odd) {
  border-right: 1px solid var(--home-line);
}

.expertise-card:hover {
  background: rgba(255, 255, 255, .035);
}

.expertise-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(32, 201, 113, .11);
  color: #8af3b5;
  font-size: .71rem;
  font-weight: 900;
}

.expertise-card div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.expertise-card strong {
  font-size: .98rem;
}

.expertise-card small {
  overflow: hidden;
  color: #829488;
  font-size: .8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.expertise-card > i {
  color: #728478;
  font-style: normal;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 80px;
}

.experience-layout h2 {
  margin: 17px 0 18px;
}

.experience-layout > div:first-child > p {
  max-width: 640px;
  margin: 0 0 30px;
  color: var(--home-muted);
  line-height: 1.72;
}

.experience-actions a {
  color: #d9e0eb;
  text-decoration: none;
  font-weight: 800;
}

.experience-cards {
  display: grid;
  gap: 10px;
}

.experience-cards article {
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(140px, auto) 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid var(--home-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .03);
}

.experience-cards strong {
  color: #f5f7fb;
  font-size: 1.15rem;
  letter-spacing: -.025em;
}

.experience-cards span {
  color: var(--home-muted);
  font-size: .86rem;
  line-height: 1.45;
}

.final-section {
  padding-top: 40px;
}

.final-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(108, 229, 216, .18), transparent 30%),
    linear-gradient(135deg, #1ebd69, #12844a 58%, #0b3b26);
  box-shadow: 0 30px 90px rgba(0, 45, 24, .30);
}

.final-card > div:first-child {
  max-width: 740px;
}

.final-card > div > span {
  color: #d8ffe8;
}

.final-card h2 {
  color: #fff;
}

.final-card p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.65;
}

.final-actions {
  display: grid;
  min-width: 210px;
}

.btn-light {
  border: 1px solid #fff;
  background: #fff;
  color: #0b1a12;
}

.btn-line {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.home-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: 46px 0 4px;
}

.home-footer-links a {
  color: #86988b;
  text-decoration: none;
  font-size: .83rem;
}

.landing-page #rodape-console {
  padding: 28px 0 calc(28px + env(safe-area-inset-bottom));
  border: 0;
  background: var(--home-bg);
}

.landing-page #rodape-console .container-futurista {
  width: min(var(--home-max), calc(100% - 48px));
  max-width: none;
  padding: 0;
}

.landing-page #rodape-console .status-line {
  display: none;
}

.landing-page #rodape-console .info-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #6f8175;
  font-family: inherit;
  font-size: .76rem;
}

.landing-page #rodape-console .info-links a {
  display: none;
}

.landing-page .mm-cadastro-trigger,
.landing-page .pj-trigger,
.landing-page #ico-mapa,
.landing-page #dvWhats,
.landing-page #promo-agent-wrapper {
  display: none !important;
}

.app-dock {
  display: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1100px) {
  .landing-page #navbar.home-navbar {
    padding: 0 24px;
  }

  .home-navbar .home-menu {
    display: none;
  }

  .landing-page #navbar.home-navbar {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--home-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: #fff;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 5998;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(4px);
  }

  .nav-backdrop.active {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5999;
    width: min(390px, 92vw);
    height: 100dvh;
    padding: 22px;
    background: #0c1812;
    transform: translateX(105%);
    transition: transform .25s ease;
  }

  .mobile-menu.active {
    display: flex;
    flex-direction: column;
    transform: translateX(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--home-line);
  }

  .mobile-menu-head strong {
    font-size: 1rem;
    font-weight: 900;
  }

  .mobile-menu-head strong span {
    color: var(--home-brand);
  }

  .mobile-menu-head button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
  }

  .mobile-menu nav {
    display: grid;
    margin-top: 18px;
  }

  .mobile-menu nav a {
    min-height: 56px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--home-line);
    color: #e7ecf4;
    text-decoration: none;
    font-weight: 750;
  }

  .mobile-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .mobile-menu-actions button,
  .mobile-menu-actions a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--home-line);
    border-radius: 13px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-weight: 850;
  }

  .mobile-menu-actions .primary {
    border-color: var(--home-brand);
    background: var(--home-brand);
    color: #07110f;
  }

  .hero-layout,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-panel {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .landing-page {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .home-wrap {
    width: min(100% - 28px, var(--home-max));
  }

  .landing-page #navbar.home-navbar {
    min-height: 64px;
    padding: 0 14px;
  }

  .home-navbar .logo {
    font-size: 1.03rem;
  }

  .home-navbar .lang-selector {
    height: 40px;
  }

  .home-login,
  .home-create,
  .home-dashboard,
  .home-navbar .btSair {
    display: none;
  }

  .hero-home {
    min-height: auto;
    padding: 48px 0 72px;
  }

  .hero-layout {
    gap: 46px;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.45rem, 12vw, 4rem);
    line-height: 1.01;
  }

  .hero-lead {
    font-size: .98rem;
    line-height: 1.65;
  }

  .hero-search {
    grid-template-columns: 22px 1fr;
    min-height: 60px;
    padding: 6px 14px;
    border-radius: 16px;
  }

  .hero-search button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    font-size: .84rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-panel::before {
    display: none;
  }

  .choice-section,
  .category-section,
  .steps-section,
  .expertise-section,
  .experience-section,
  .final-section {
    padding: 76px 0;
  }

  .section-head,
  .center-head {
    display: grid;
    align-items: start;
    gap: 18px;
    margin-bottom: 30px;
  }

  .section-head h2,
  .compact-head h2,
  .experience-layout h2,
  .final-card h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }

  .section-head > p {
    font-size: .91rem;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 26px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-card {
    min-height: 116px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
    padding: 18px;
  }

  .category-code {
    grid-row: 1 / 3;
    width: 52px;
    min-height: 52px;
    display: grid;
    place-items: center;
    margin: 0;
    text-align: center;
  }

  .category-card strong {
    align-self: end;
  }

  .category-card small {
    align-self: start;
    margin-top: 4px;
  }

  .category-card i {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .role-tabs {
    width: 100%;
  }

  .role-tabs button {
    flex: 1;
    padding: 0 10px;
  }

  .steps-track {
    grid-template-columns: 1fr;
  }

  .steps-track article {
    min-height: auto;
    padding: 26px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .steps-track article > span {
    margin-bottom: 22px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card:nth-child(odd) {
    border-right: 0;
  }

  .expertise-card {
    min-height: 96px;
    padding: 17px 4px;
  }

  .experience-layout {
    gap: 42px;
  }

  .experience-actions {
    display: grid;
  }

  .experience-actions .btn-main {
    width: 100%;
  }

  .experience-actions a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .experience-cards article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .final-section {
    padding-top: 18px;
  }

  .final-card {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .final-actions {
    width: 100%;
  }

  .home-footer-links {
    padding-top: 38px;
  }

  .landing-page #rodape-console {
    padding-bottom: 18px;
  }

  .landing-page #rodape-console .info-links {
    text-align: center;
  }

  .app-dock {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 4800;
    height: 68px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    padding: 7px 6px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 21px;
    background: rgba(9, 23, 16, .94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .48);
    backdrop-filter: blur(20px) saturate(150%);
  }

  .app-dock a,
  .app-dock button {
    min-width: 0;
    min-height: 52px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #7f9285;
    text-decoration: none;
    cursor: pointer;
  }

  .app-dock span {
    font-size: 1.08rem;
    line-height: 1;
  }

  .app-dock b {
    overflow: hidden;
    font-size: .59rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app-dock .active {
    color: var(--home-brand);
  }

  .app-dock .dock-main {
    width: 52px;
    min-height: 58px;
    justify-self: center;
    margin-top: -22px;
    border-radius: 17px;
    background: var(--home-brand);
    color: #07110f;
    box-shadow: 0 10px 28px rgba(108, 229, 216, .25);
  }

  .app-dock .dock-main span {
    font-size: 1.5rem;
  }
}

@media (max-width: 390px) {
  .home-navbar .lang-selector {
    min-width: 52px;
    padding: 0 7px;
  }

  .hero-actions,
  .hero-trust {
    grid-template-columns: 1fr;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card {
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
  }

  .expertise-card > span {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .landing-page {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .app-dock {
    position: fixed;
    left: 50%;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 4800;
    width: min(590px, calc(100% - 28px));
    height: 70px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    padding: 7px 8px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    background: rgba(9, 23, 16, .94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .48);
    backdrop-filter: blur(20px) saturate(150%);
    transform: translateX(-50%);
  }

  .app-dock a,
  .app-dock button {
    min-width: 0;
    min-height: 52px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #7f9285;
    text-decoration: none;
    cursor: pointer;
  }

  .app-dock span {
    font-size: 1.08rem;
    line-height: 1;
  }

  .app-dock b {
    overflow: hidden;
    font-size: .65rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app-dock .active {
    color: var(--home-brand);
  }

  .app-dock .dock-main {
    width: 54px;
    min-height: 60px;
    justify-self: center;
    margin-top: -22px;
    border-radius: 18px;
    background: var(--home-brand);
    color: #07110f;
    box-shadow: 0 10px 28px rgba(108, 229, 216, .25);
  }

  .app-dock .dock-main span {
    font-size: 1.5rem;
  }
}

.landing-page {
  --home-pad: clamp(18px, 4.5vw, 96px);
  --home-radius: clamp(18px, 2vw, 30px);
}

.home-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: var(--home-pad);
}

.landing-page #navbar.home-navbar {
  padding-inline: var(--home-pad);
  background: rgba(7, 16, 12, .9);
}

.landing-main {
  width: 100%;
}

.hero-home {
  min-height: clamp(720px, 86vh, 980px);
  padding-block: clamp(54px, 7vw, 104px);
  background:
    radial-gradient(circle at 86% 16%, rgba(32, 201, 113, .14), transparent 30%),
    radial-gradient(circle at 12% 42%, rgba(100, 235, 162, .10), transparent 34%),
    linear-gradient(180deg, #07100c 0%, #09150f 100%);
}

.hero-layout {
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  gap: clamp(34px, 5vw, 92px);
}

.hero-copy {
  max-width: none;
}

.hero-copy h1 {
  max-width: clamp(620px, 46vw, 980px);
}

.hero-lead {
  max-width: clamp(560px, 42vw, 820px);
}

.hero-search {
  width: min(100%, 760px);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  align-items: end;
  justify-items: center;
  padding-top: clamp(90px, 11vw, 170px);
}

.hero-visual-img {
  position: absolute;
  inset: 0 0 auto auto;
  width: clamp(300px, 82%, 760px);
  height: auto;
  max-height: clamp(360px, 47vw, 610px);
  object-fit: contain;
  border-radius: clamp(22px, 3vw, 46px);
  filter: drop-shadow(0 34px 55px rgba(0, 0, 0, .34));
}

.hero-panel {
  z-index: 2;
  width: clamp(360px, 74%, 650px);
  margin: 0 0 0 auto;
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(11, 27, 19, .94);
  backdrop-filter: blur(22px);
}

.hero-panel::before {
  border-color: rgba(100, 235, 162, .22);
}

.hero-panel::after {
  background: radial-gradient(circle, rgba(100, 235, 162, .18), transparent 70%);
}

.panel-progress span {
  width: 25%;
  transition: width .2s ease;
}

.panel-field {
  cursor: text;
}

.panel-field input,
.panel-field textarea,
.panel-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f4fff8;
  font-size: clamp(.84rem, 1vw, .96rem);
  font-weight: 700;
  line-height: 1.45;
}

.panel-field textarea {
  min-height: clamp(60px, 6vw, 92px);
  resize: vertical;
}

.panel-field select {
  cursor: pointer;
  appearance: auto;
}

.panel-field option {
  background: #102219;
  color: #f4fff8;
}

.panel-field input::placeholder,
.panel-field textarea::placeholder {
  color: #789084;
  font-weight: 550;
}

.panel-field:focus-within {
  border-color: rgba(100, 235, 162, .5);
  background: rgba(100, 235, 162, .06);
}

.panel-state {
  background: rgba(100, 235, 162, .12);
  color: #a6ffcb;
}

.draft-note {
  display: block;
  margin-top: 10px;
  color: #7f9387;
  font-size: .72rem;
  line-height: 1.45;
  text-align: center;
}

.choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.choice-card {
  min-height: clamp(390px, 33vw, 590px);
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
  padding: clamp(24px, 3vw, 46px);
}

.client-card,
.pro-card {
  background: linear-gradient(145deg, rgba(100, 235, 162, .1), rgba(15, 29, 22, .96) 58%);
}

.choice-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2vw, 28px);
}

.choice-card > img {
  width: clamp(180px, 100%, 520px);
  height: auto;
  max-height: clamp(240px, 27vw, 430px);
  object-fit: contain;
  justify-self: end;
  border-radius: clamp(18px, 2vw, 32px);
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}

.category-card {
  min-height: clamp(180px, 17vw, 260px);
}

.expertise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expertise-card:nth-child(odd) {
  border-right: 0;
}

.expertise-card:not(:nth-child(3n)) {
  border-right: 1px solid var(--home-line);
}

.experience-layout {
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  gap: clamp(36px, 6vw, 108px);
}

.experience-image {
  width: clamp(280px, 100%, 820px);
  height: auto;
  max-height: clamp(360px, 46vw, 650px);
  object-fit: contain;
  border-radius: clamp(24px, 3vw, 54px);
}

.experience-content > p {
  max-width: none;
  margin: 0 0 30px;
  color: var(--home-muted);
  line-height: 1.72;
}

.experience-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.experience-cards article {
  min-height: clamp(108px, 10vw, 160px);
  grid-template-columns: 1fr;
  align-content: center;
}

.final-card {
  width: 100%;
  border-radius: var(--home-radius);
  background:
    radial-gradient(circle at 90% 20%, rgba(166, 255, 203, .16), transparent 30%),
    linear-gradient(135deg, #1ebd69, #12844a 58%, #0b3b26);
}

.landing-footer {
  border-top: 1px solid var(--home-line);
  background: #050b08;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.7fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 84px);
  padding-block: clamp(52px, 7vw, 92px);
}

.footer-brand {
  max-width: 560px;
}

.footer-brand > a {
  display: inline-block;
  margin-bottom: 16px;
  color: #f5fff8;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 950;
  letter-spacing: -.05em;
  text-decoration: none;
}

.footer-brand > a span {
  color: var(--home-brand);
}

.footer-brand > strong {
  display: block;
  margin-bottom: 12px;
  color: #dff9e8;
  font-size: clamp(.95rem, 1.2vw, 1.1rem);
}

.footer-brand p {
  max-width: 500px;
  margin: 0;
  color: #809187;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column > strong {
  margin-bottom: 8px;
  color: #eafff1;
  font-size: .83rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  width: max-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #819489;
  cursor: pointer;
  font-size: .86rem;
  text-align: left;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--home-brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 22px calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--home-line);
  color: #687a6f;
  font-size: .76rem;
}

.landing-page > #rodape-console.footer-principal {
  display: none;
}

@media (max-width: 1240px) {
  .hero-layout {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  }

  .choice-card {
    grid-template-columns: 1fr;
  }

  .choice-card > img {
    width: clamp(220px, 72%, 480px);
    max-height: 300px;
    justify-self: center;
  }

  .experience-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .landing-page #navbar.home-navbar {
    padding-inline: var(--home-pad);
  }

  .hero-layout,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-lead {
    max-width: 900px;
  }

  .hero-visual {
    width: 100%;
    min-height: clamp(560px, 84vw, 760px);
    padding-top: clamp(210px, 35vw, 360px);
  }

  .hero-visual-img {
    left: 50%;
    right: auto;
    width: clamp(320px, 82%, 760px);
    transform: translateX(-50%);
  }

  .hero-panel {
    width: min(680px, 92%);
    margin: 0 auto;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expertise-card:not(:nth-child(3n)) {
    border-right: 0;
  }

  .expertise-card:nth-child(odd) {
    border-right: 1px solid var(--home-line);
  }

  .experience-image {
    width: min(82%, 720px);
    justify-self: center;
  }

  .footer-layout {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .home-wrap {
    width: 100%;
    padding-inline: clamp(14px, 4.5vw, 24px);
  }

  .hero-home {
    padding-block: 44px 70px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 0;
    gap: 18px;
  }

  .hero-visual-img {
    position: relative;
    inset: auto;
    width: clamp(260px, 100%, 620px);
    max-height: none;
    transform: none;
  }

  .hero-panel {
    width: 100%;
    margin: 0;
  }

  .choice-grid,
  .expertise-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .choice-content {
    grid-template-columns: 1fr;
  }

  .choice-card > img {
    width: clamp(240px, 100%, 520px);
    max-height: none;
  }

  .expertise-card:nth-child(odd) {
    border-right: 0;
  }

  .experience-image {
    width: 100%;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    justify-content: start;
  }
}
