﻿:root {
  --lime: #d7ff35;
  --black: #050505;
  --ink: #101010;
  --muted: #64748b;
  --line: #dbe2ea;
  --page: #f6f8fb;
  --card: #ffffff;
  --danger: #dc2626;
  --blue-soft: #eef5ff;
  --success-soft: #f3ffd7;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family:
    Ubuntu,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--page);
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(215, 255, 53, 0.76);
  outline-offset: 3px;
}

a {
  color: inherit;
}

@keyframes tf-spin {
  to {
    transform: rotate(360deg);
  }
}

.fa-spinner,
.lookup-spinner {
  animation: tf-spin 900ms linear infinite;
}

.is-hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-view {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86),
      rgba(0, 0, 0, 0.62) 54%,
      rgba(0, 0, 0, 0.74)
    ),
    url("/public/hero_bg.png") center / cover no-repeat;
  filter: saturate(0.68) contrast(1.05);
}

.hero-header,
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  z-index: 30;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #ffffff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--lime);
  background: rgba(215, 255, 53, 0.12);
  border: 1px solid rgba(215, 255, 53, 0.6);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  border-radius: 10px;
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #ffff;
}

.menu-toggle.is-open {
  color: #111111;
  background: var(--lime);
  border-color: var(--lime);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 15px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
}

.outline-button {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 130px);
  padding-bottom: 80px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--lime);
}

.hero-copy p {
  margin: 24px 0 0;
  max-width: 560px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
}

.lookup-card {
  width: 100%;
  padding: 28px;
  color: #000000;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.lookup-stack {
  display: grid;
  gap: 16px;
}

.lookup-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.lookup-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #111111;
  background: var(--success-soft);
  border: 1px solid #d9f99d;
  border-radius: 12px;
  font-size: 18px;
}

.lookup-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lookup-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.plate-field {
  display: grid;
  gap: 8px;
}

.plate-field label {
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.input-shell {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  height: 52px;
  background: #f8fafc;
  border: 1px solid #d7dde8;
  border-radius: 10px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.input-shell > i {
  color: #64748b;
  text-align: center;
  font-size: 15px;
}

.input-shell:focus-within {
  background: #ffffff;
  border-color: #94a3b8;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

.lookup-card input[type="text"] {
  width: 100%;
  height: 50px;
  padding: 0 14px 0 0;
  color: #333b47;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.input-shell.has-error {
  border-color: var(--danger);
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(223, 44, 44, 0.1);
}

.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.check-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.45;
}

.check-row input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #111111;
}

.check-row a {
  color: #617185;
  font-style: italic;
}

.primary-button,
.black-button,
.continue-button {
  border: 0;
  cursor: pointer;
}

.primary-button,
.black-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.primary-button {
  width: 100%;
  height: 52px;
  margin-top: 40px;
  color: #ffffff;
  background: #000000;
  border-radius: 8px;
  font-weight: 750;
}

.primary-button:disabled {
  color: #ffffff;
  background: #d4d8df;
  cursor: not-allowed;
}

.primary-button.is-loading,
.primary-button.is-loading:disabled {
  background: #000000;
  cursor: wait;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  padding: 0;
  color: #000000;
  background: transparent;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
}

.lookup-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lookup-foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lookup-foot i {
  color: #16a34a;
}

.support-card {
  padding: 18px;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  scroll-margin-top: 24px;
}

.support-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: #111111;
  background: var(--success-soft);
  border: 1px solid #d9f99d;
  border-radius: 10px;
}

.support-head p,
.support-head h2 {
  margin: 0;
}

.support-head p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.support-head h2 {
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.2;
}

.support-links {
  display: grid;
  gap: 8px;
}

.support-link {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 12px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
}

.support-link:hover {
  background: #ffffff;
  border-color: #cbd5e1;
}

.support-logo {
  display: grid;
  place-items: center;
  width: 74px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.support-link img {
  max-width: 54px;
  max-height: 20px;
  filter: grayscale(1) contrast(1.15);
  object-fit: contain;
}

.support-link span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.support-link strong {
  font-size: 14px;
}

.support-link small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-link > i {
  color: #64748b;
  font-size: 12px;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 1000;
  margin-bottom: 0px;
  background-color: #000;
}

.hdr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header .brand,
.site-footer .brand {
  color: #111111;
}

.site-header .brand-mark,
.site-footer .brand-mark {
  color: #111111;
  background: var(--lime);
  border-color: #bfdc2d;
}

.primary-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #eaf1f8;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 8px 10px;
  border-radius: 12px;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
  font-size: 18px;
}

.nav-list a:hover {
  text-decoration: underline;
}

.menu-toggle .bar {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle.is-open .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 0px);
  overflow: hidden;
  color: #ffffff;
  background: #050505;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84),
      rgba(0, 0, 0, 0.55) 52%,
      rgba(0, 0, 0, 0.72)
    ),
    url("/public/hero_bg.png") center / cover no-repeat;
  filter: saturate(0.82) contrast(1.08);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: center;
  gap: 64px;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 58px 0 76px;
}

.hero__title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.highlight {
  color: var(--lime);
}

.hero__subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.45;
}

.hero__right {
  width: 100%;
}

.hero__card {
  color: rgb(27, 31, 40);
  box-shadow: rgba(0, 0, 0, 0.45) 0px 28px 80px;
  background: rgb(229, 231, 235);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-image: initial;
  border-radius: 12px;
  padding: 32px;
}

.card__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin: 4px 2px 20px;
}

.card__title strong {
  font-weight: 700;
}

.card__form {
  display: grid;
  gap: 18px;
}

.inp {
  width: 100%;
  height: 48px;
  color: rgb(0, 0, 0);
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 16px;
  border-radius: 12px;
  padding: 8px 14px;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(223, 227, 234);
  border-image: initial;
  background: rgb(244, 246, 250);
}

.inp:focus {
  background: #ffffff;
  border-color: #94a3b8;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
  outline: 0;
}

.chk {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 4px;
  color: #363636;
  font-size: 14px;
  line-height: 1.45;
}

.chk input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: #111111;
}

.chk a {
  color: #363636;
  text-underline-offset: 2px;
  font-style: italic;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  color: var(--lime);
  background: #000000;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn:disabled {
  color: #ffffff;
  background: #cbd5e1;
  cursor: not-allowed;
}

.btn.is-loading,
.btn.is-loading:disabled {
  color: var(--lime);
  background: #000000;
  cursor: wait;
}

.card__link {
  margin: 18px 0 0;
  text-align: center;
}

.card__link a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 16px;
}

.support {
  margin-top: 0;
  color: #000;
}

.support__toggle {
  width: 100%;
  background: #111;
  color: #fff;
  border: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  border-top: 1px solid #393939;
}

.support__container,
.support__inner,
.ft-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.support__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  font-size: 28px;
}

.support__container strong {
  font-size: 20px;
  font-weight: 700;
}

.chev {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

[aria-expanded="false"] > .chev,
[aria-expanded="false"] .chev {
  transform: rotate(180deg);
}

.support__panel {
  background: #e5e7eb;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.support__inner {
  padding: 26px 0 34px;
}

.acc {
  display: grid;
  gap: 10px;
}

.acc__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.acc__item:last-child {
  border-bottom: 0;
}

.acc__btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  cursor: pointer;
}

.acc__btn span {
  font-weight: 800;
  color: #000;
  letter-spacing: 0.2px;
  font-size: 20px;
}

.acc__content {
  padding: 2px 8px 18px;
}

.acc__link {
  display: inline-block;
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 2px;
  word-break: break-word;
  font-size: 18px;
  font-weight: 700;
}

.acc__link:hover {
  text-decoration: underline;
}

.site-footer {
  background: #363636;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9edf2;
}

.ft-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ft-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ft-brand img {
  height: auto;
  width: 80%;
  display: block;
}

.ft-social {
  display: flex;
  justify-content: center;
}

.ft-social a {
  align-items: center;
  justify-content: center;
  color: #e9edf2;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.ft-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ft-cnpj,
.ft-note {
  margin: 0;
}

.ft-cnpj {
  font-size: 12px;
  color: #e9edf2;
  opacity: 0.75;
  margin: 0;
  text-align: center;
}

.ft-note {
  margin-top: 6px;
  color: #64748b;
  font-size: 13px;
}

.ft-logos {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.ft-logos img {
  height: 22px;
  width: auto;
  opacity: 0.9;
  filter: grayscale(1) contrast(1.05) brightness(0.96);
  transition: opacity 0.15s ease;
}

.topbar {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  height: 72px;
  padding: 0 max(24px, calc((100% - 1160px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 226, 234, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar h1 {
  margin: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #0f172a;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.page-column,
.pix-column {
  width: min(580px, calc(100% - 32px));
  margin: 0 auto;
}

.flow-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(215, 255, 53, 0.22),
      transparent 30%
    ),
    linear-gradient(180deg, #fbfcfe 0%, var(--page) 42%, #eef2f7 100%);
}

.plate-card {
  height: 46px;
  padding: 12px 16px;
  color: #475569;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  border: 1px solid #e2e8f0;
  border-top: 0;
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.vehicle-card {
  display: grid;
  gap: 10px;
  margin: 16px 0 40px;
  padding: 18px;
  background: var(--blue-soft);
  border: 1px solid #dbeafe;
  border-radius: 8px;
  font-size: 14px;
}

.vehicle-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.section-title h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.section-title span {
  color: #616875;
  font-size: 12px;
}

.section-title b {
  color: #000000;
  font-size: 16px;
}

.select-all,
.debt-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: start;
  gap: 14px;
}

.select-all {
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.select-all input,
.debt-check {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: #111111;
}

.debt-item {
  margin-top: 12px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.debt-title {
  font-size: 18px;
  line-height: 1.45;
}

.debt-provider {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.debt-side {
  min-width: 190px;
  text-align: right;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  color: var(--danger);
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.amount {
  margin-top: 16px;
  color: var(--danger);
  font-weight: 800;
}

.fees {
  margin-top: 12px;
  color: #7e8795;
  font-size: 12px;
}

.item-total {
  margin-top: 18px;
  font-size: 18px;
}

.total-card,
.order-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.total-card {
  margin: 40px 0 24px;
  padding: 22px 24px 24px;
}

.total-head {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: #0f172a;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.total-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.total-title > i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: #111111;
  background: var(--success-soft);
  border: 1px solid #d9f99d;
  border-radius: 10px;
  font-size: 16px;
}

.total-title span {
  display: grid;
  gap: 2px;
}

.total-title small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.chevron {
  flex: 0 0 auto;
  color: #64748b;
  font-size: 14px;
  transition: transform 160ms ease;
}

.total-card:not(.is-open) .chevron {
  transform: rotate(180deg);
}

.total-detail {
  display: none;
  padding: 14px 0 0;
  color: #5f6876;
  font-size: 14px;
}

.total-detail.is-open {
  display: grid;
  gap: 12px;
}

.total-detail div,
.total-actions,
.order-row,
.highlight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.selected-items {
  display: grid !important;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.selected-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.selected-item span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #334155;
}

.selected-item span i {
  color: #64748b;
  font-size: 12px;
}

.selected-item small {
  color: var(--muted);
  font-size: 11px;
}

.selected-item strong {
  color: #0f172a;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.empty-selection {
  color: var(--muted);
  font-size: 13px;
}

.total-actions {
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.total-actions strong {
  font-size: 21px;
}

.continue-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 98px;
  height: 40px;
  color: var(--lime);
  background: #000000;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.continue-button:disabled {
  color: #64748b;
  background: #e2e8f0;
  cursor: not-allowed;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.52);
  z-index: 20;
}

.warning-card {
  width: min(420px, 100%);
  padding: 24px;
  background: #ffffff;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.grabber {
  display: none;
}

.warning-card h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--danger);
  font-size: 22px;
}

.warning-card p {
  margin: 10px 0;
  color: #3f3f46;
  line-height: 1.45;
}

.danger-copy strong,
.law-box dd {
  color: var(--danger);
}

.law-box {
  margin: 22px 0 24px;
  padding: 18px;
  text-align: left;
  background: #fff7f7;
  border-left: 4px solid var(--danger);
  border-radius: 8px;
}

.law-box h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.law-box p {
  margin: 0 0 14px;
  color: #666;
  font-size: 13px;
}

.law-box dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.law-box div {
  display: flex;
  gap: 5px;
}

.law-box dt,
.law-box dd {
  margin: 0;
  font-size: 14px;
}

.law-box dd {
  font-weight: 800;
}

.black-button {
  height: 48px;
  color: var(--lime);
  background: #000000;
  border-radius: 8px;
  font-weight: 800;
}

.outline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.outline-action:disabled {
  color: #64748b;
  background: #f8fafc;
  cursor: not-allowed;
}

.warning-card .black-button,
.wide {
  width: 100%;
}

.pix-column {
  padding-top: 24px;
  padding-bottom: 40px;
}

.order-card {
  padding: 24px;
}

.order-card h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 500;
}

.order-card h2 i {
  color: #111111;
  font-size: 20px;
}

.order-row,
.highlight-row {
  gap: 16px;
  padding: 9px 0;
}

.order-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
}

.order-row span i {
  color: #64748b;
  font-size: 13px;
}

.order-row strong,
.highlight-row strong,
.total-actions strong,
.debt-side {
  font-variant-numeric: tabular-nums;
}

.highlight-row {
  margin-top: 10px;
  padding: 16px 18px;
  background: var(--success-soft);
  border-radius: 8px;
}

.highlight-row strong {
  font-size: 22px;
}

.pix-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 14px;
  color: #334155;
  text-align: center;
  font-weight: 600;
}

.pix-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(246, 248, 251, 0.82);
  backdrop-filter: blur(6px);
}

.pix-loading-panel {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(320px, 100%);
  padding: 24px;
  color: var(--ink);
  text-align: center;
  background: #ffffff;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.pix-loading-panel i {
  font-size: 32px;
}

.pix-loading-panel strong {
  font-size: 18px;
}

.pix-loading-panel span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.qr-box {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  color: #111111;
  background:
    linear-gradient(90deg, #111 12px, transparent 12px) 0 0 / 28px 28px,
    linear-gradient(#111 12px, transparent 12px) 0 0 / 28px 28px,
    #ffffff;
  border: 12px solid #ffffff;
  font-weight: 900;
}

.pix-instruction {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.45;
}

textarea {
  width: 100%;
  padding: 12px;
  resize: vertical;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.55;
  background: #ffffff;
}

.wide {
  margin-top: 18px;
}

.payment-success {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  color: #0f172a;
  background: #f3ffd7;
  border: 1px solid #d9f99d;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.success-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: #16a34a;
  border-radius: 999px;
}

.payment-success h2 {
  margin: 0;
  font-size: 20px;
}

.payment-success p {
  margin: 6px 0 14px;
  color: #475569;
  line-height: 1.45;
}

.payment-success dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.payment-success dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.payment-success dt {
  color: #64748b;
}

.payment-success dd {
  margin: 0;
  font-weight: 800;
}

.compact {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-top: 52px;
  }

  .hero__right {
    max-width: 480px;
  }

  .ft-container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ft-logos {
    justify-content: center;
  }

  .hero-header {
    align-items: center;
  }

  .nav-links {
    gap: 12px;
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 36px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.12;
  }
}

@media (max-width: 620px) {
  .hdr-container,
  .hero__grid,
  .support__container,
  .support__inner,
  .ft-container {
    width: min(100% - 28px, 580px);
  }

  .hdr-container {
    min-height: 68px;
  }

  .site-header .menu-toggle {
    display: grid;
    gap: 4px;
    color: #111111;
    background: #f8fafc;
    border-color: #dbe2ea;
  }

  .site-header .menu-toggle.is-open {
    background: var(--lime);
    border-color: var(--lime);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: block;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 4px;
  }

  .nav-list a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .nav-list a:hover {
    background: #f8fafc;
    text-decoration: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    min-height: auto;
    padding: 36px 0 44px;
  }

  .hero__title {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero__subtitle {
    margin-top: 16px;
    font-size: 16px;
  }

  .hero__card {
    padding: 24px 18px;
  }

  .card__title {
    font-size: 22px;
  }

  .support__container {
    min-height: 70px;
    font-size: 22px;
  }

  .acc__btn {
    min-height: 58px;
    padding: 0 16px;
    font-size: 16px;
  }

  .acc__content {
    padding: 0 16px 16px;
  }

  .ft-container {
    gap: 18px;
  }

  .hero-header,
  .hero-grid {
    width: min(100% - 28px, 580px);
  }

  .hero-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    z-index: 80;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    font-size: 13px;
  }

  .brand-text {
    font-size: 19px;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
    flex: 0 0 auto;
    font-size: 18px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
    z-index: 100;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 12px;
    color: #ffffff;
    border-radius: 8px;
  }

  .nav-links a:active,
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .outline-button {
    justify-content: center;
    margin-top: 4px;
    background: var(--lime);
    border-color: var(--lime);
    color: #111111 !important;
    font-weight: 800;
  }

  .lookup-card {
    padding: 24px 18px;
  }

  .support-card {
    padding: 16px;
  }

  .hero-grid {
    gap: 24px;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 16px;
  }

  .lookup-card h2 {
    font-size: 22px;
  }

  .lookup-head,
  .order-card h2 {
    align-items: flex-start;
  }

  .lookup-head {
    gap: 12px;
  }

  .lookup-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .input-shell {
    height: 50px;
  }

  .lookup-foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .support-link {
    grid-template-columns: 76px minmax(0, 1fr) 16px;
    gap: 10px;
    padding: 10px;
  }

  .support-link img {
    max-width: 48px;
    max-height: 18px;
  }

  .primary-button,
  .black-button {
    width: 100%;
  }

  .topbar {
    grid-template-columns: 44px 1fr 44px;
    height: 64px;
    padding: 0 14px;
  }

  .topbar h1 {
    font-size: 16px;
  }

  .page-column,
  .pix-column {
    width: min(100% - 24px, 580px);
  }

  .plate-card {
    height: 42px;
    padding: 10px 14px;
  }

  .vehicle-card {
    margin: 12px 0 28px;
    padding: 14px;
  }

  .section-title,
  .debt-item,
  .select-all {
    grid-template-columns: 32px 1fr;
  }

  .section-title {
    display: grid;
    grid-template-columns: 1fr;
  }

  .debt-side {
    grid-column: 2;
    min-width: 0;
    text-align: left;
  }

  .badge {
    max-width: 100%;
    white-space: normal;
  }

  .amount,
  .fees,
  .item-total {
    margin-top: 10px;
  }

  .total-card {
    margin-top: 28px;
    padding: 18px;
  }

  .total-head {
    font-size: 16px;
  }

  .total-title {
    gap: 10px;
  }

  .total-title > i {
    width: 36px;
    height: 36px;
  }

  .total-actions {
    align-items: stretch;
  }

  .total-actions strong {
    width: 100%;
  }

  .continue-button {
    width: 100%;
    min-width: 0;
  }

  .selected-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .selected-item span {
    align-items: flex-start;
  }

  .modal-backdrop {
    align-items: end;
    padding: 12px;
  }

  .warning-card {
    width: 100%;
    padding: 20px;
    border-radius: 14px;
  }

  .law-box div,
  .order-row,
  .highlight-row {
    align-items: flex-start;
  }

  .law-box div {
    display: grid;
    gap: 2px;
  }

  .order-card {
    padding: 18px;
  }

  .order-row,
  .highlight-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .order-row span {
    align-items: flex-start;
  }

  .highlight-row strong {
    font-size: 24px;
  }

  .qr-box {
    width: 168px;
    height: 168px;
  }

  textarea {
    font-size: 13px;
    min-height: 112px;
  }
}

/* Home page reference overrides */
/* Requested hero background */
.home-page .hero__bg,
.hero__bg {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  background:
    linear-gradient(90deg, #000000b3, #0000008c 40%, #00000059 60%, #0000008c),
    url("/public/hero_bg.png") center / cover no-repeat !important;
  background-color: #0000001a !important;
  filter: saturate(110%) !important;
  z-index: 0 !important;
  margin-left: -5px !important;
}

.home-page .hero__grid,
.hero__grid {
  align-self: center !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 100px 20px 72px !important;
  display: grid !important;
  grid-template-columns: 1fr 420px !important;
  gap: 40px !important;
  align-items: center !important;
  z-index: 10 !important;
}

@media (max-width: 1800px) {
  .home-page .hero__grid,
  .hero__grid {
    padding: 160px 20px 72px !important;
  }
}

.home-page .hero__title,
.hero__title {
  font-weight: 900 !important;
  line-height: 1.6 !important;
  font-size: 4rem !important;
  letter-spacing: 3px !important;
  margin: 8px 0 18px !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

.home-page .hero__subtitle,
.hero__subtitle {
  font-size: 18px !important;
  color: #fff !important;
  max-width: 720px !important;
  font-weight: 400 !important;
}

.home-page .security-check,
.security-check {
  display: grid !important;
  grid-template-columns: 36px 1fr 58px !important;
  align-items: center !important;
  gap: 12px !important;
  width: 304px !important;
  height: 78px !important;
  margin: 0 auto !important;
  padding: 14px 10px 12px 12px !important;
  color: #222 !important;
  background: #f9f9f9 !important;
  border: 1px solid #d3d3d3 !important;
  border-radius: 2px !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08) !important;
  font-size: 14px !important;
  cursor: pointer !important;
  user-select: none !important;
}

.home-page .security-check input,
.security-check input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.home-page .security-check__box,
.security-check__box {
  position: relative !important;
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  background: #fff !important;
  border: 2px solid #6f6f6f !important;
  border-radius: 2px !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08) !important;
}

.home-page .security-check.is-loading .security-check__box,
.security-check.is-loading .security-check__box {
  width: 32px !important;
  height: 32px !important;
  background: transparent !important;
  border: 4px solid #d9d9d9 !important;
  border-top-color: #1a73e8 !important;
  border-radius: 50% !important;
  animation: recaptcha-spin 0.8s linear infinite !important;
  box-shadow: none !important;
}

.home-page .security-check.is-verified .security-check__box,
.security-check.is-verified .security-check__box {
  width: 32px !important;
  height: 32px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-page .security-check.is-verified .security-check__box::after,
.security-check.is-verified .security-check__box::after {
  content: "" !important;
  position: absolute !important;
  left: 7px !important;
  top: 1px !important;
  width: 13px !important;
  height: 24px !important;
  border: solid #34a853 !important;
  border-width: 0 4px 4px 0 !important;
  transform: rotate(45deg) !important;
}

.home-page .security-check span,
.security-check span {
  color: #222 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

.home-page .security-check__brand,
.security-check__brand {
  display: grid !important;
  justify-items: center !important;
  gap: 2px !important;
  color: #555 !important;
}

.home-page .security-check__brand img,
.security-check__brand img {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
}

.home-page .security-check__brand small,
.security-check__brand small {
  color: #555 !important;
  font-size: 9px !important;
  line-height: 1 !important;
}

@keyframes recaptcha-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-page .ft-logos img,
.ft-logos img {
  height: 22px !important;
  width: auto !important;
  opacity: 0.9 !important;
  filter: grayscale(1) contrast(1.05) brightness(0.96) !important;
  transition: opacity 0.15s ease !important;
}

.home-page .inp,
.inp {
  width: 100%;
  height: 68px;
  color: rgb(0, 0, 0);
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 16px;
  border-radius: 12px;
  padding: 8px 14px;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(223, 227, 234);
  border-image: initial;
  background: rgb(244, 246, 250);
}

.inp::placeholder {
  color: rgb(194, 197, 202);
}

.home-page .site-header {
  position: relative !important;
  top: 0 !important;
  z-index: 1000 !important;
  margin-bottom: -120px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-page .hdr-container {
  max-width: 1200px !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 14px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.home-page nav.primary-nav {
  margin-left: auto !important;
}

.home-page .nav-list {
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.home-page .nav-list a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #eaf1f8 !important;
  background: transparent !important;
  border-radius: 12px !important;
  padding: 8px 10px !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  text-decoration: none !important;
}

.home-page .nav-list a:hover,
.home-page .nav-list a:focus-visible {
  color: #eaf1f8 !important;
  background: #ffffff0f !important;
  text-decoration: none !important;
}

.home-page .nav-list li:last-child a,
.home-page .nav-list .nav-cta {
  border: 1px solid #fff !important;
  border-radius: 12px !important;
  padding: 10px 16px !important;
  color: #eaf1f8 !important;
  background: transparent !important;
}

.home-page .menu-toggle {
  position: relative !important;
  display: none !important;
  width: 40px !important;
  height: 40px !important;
  margin-left: auto !important;
  padding: 8px !important;
  color: #eaf1f8 !important;
  background: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 10px !important;
}

.home-page .menu-toggle.is-open,
.home-page .site-header .menu-toggle.is-open {
  color: #eaf1f8 !important;
  background: transparent !important;
  border-color: #fff !important;
}

.home-page .menu-toggle .bar {
  position: absolute !important;
  left: 9px !important;
  right: 9px !important;
  width: auto !important;
  height: 2px !important;
  display: block !important;
  margin: 0 !important;
  background: #eaf1f8 !important;
  border-radius: 2px !important;
  transition:
    transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.18s ease !important;
}

.home-page .menu-toggle .bar:nth-child(1) {
  top: 12px !important;
}

.home-page .menu-toggle .bar:nth-child(2) {
  top: 19px !important;
}

.home-page .menu-toggle .bar:nth-child(3) {
  top: 26px !important;
}

.home-page .menu-toggle[aria-expanded="true"] .bar:nth-child(1),
.home-page .menu-toggle.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}

.home-page .menu-toggle[aria-expanded="true"] .bar:nth-child(2),
.home-page .menu-toggle.is-open .bar:nth-child(2) {
  opacity: 0 !important;
}

.home-page .menu-toggle[aria-expanded="true"] .bar:nth-child(3),
.home-page .menu-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg) !important;
}

@media (min-width: 901px) {
  .home-page .hero__card {
    min-height: 549px !important;
    padding: 48px 32px 34px !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .home-page .hero__card .card__form {
    flex: 1 1 auto !important;
    align-content: start !important;
  }

  .home-page .hero__card .card__link {
    margin-top: auto !important;
  }
}

@media (max-width: 900px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .home-page .menu-toggle,
  .menu-toggle {
    display: block !important;
    background: transparent !important;
    border-color: #fff !important;
  }

  .home-page nav.primary-nav,
  nav.primary-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 14px !important;
    bottom: auto !important;
    left: 14px !important;
    height: 180px !important;
    background: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    transform: translateY(-12px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition:
      transform 0.18s ease,
      opacity 0.18s ease !important;
    box-shadow: 0 28px 80px #00000073 !important;
    z-index: 80 !important;
  }

  .home-page nav.primary-nav.is-open,
  nav.primary-nav.is-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .home-page .nav-list,
  .nav-list {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    padding: 14px !important;
  }

  .home-page .nav-list a,
  .nav-list a {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    color: #000 !important;
    background: transparent !important;
    font-size: 16px !important;
    padding: 12px 10px !important;
  }

  .home-page .nav-list li:last-child a,
  .home-page .nav-list .nav-cta {
    color: #000 !important;
    border-color: transparent !important;
    background: transparent !important;
  }

  .home-page .hero__grid,
  .hero__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 50px !important;
    padding: 120px 12px !important;
  }

  .home-page .hero__left,
  .hero__left {
    order: 1 !important;
  }

  .home-page .hero__right,
  .hero__right {
    order: 2 !important;
    width: min(100%, 420px) !important;
    margin: 0 auto !important;
  }

  .home-page .hero__title,
  .home-page .highlight,
  .hero__title,
  .highlight {
    font-size: 50px !important;
  }
}

@media (max-width: 768px) {
  .home-page .site-header,
  .site-header {
    min-height: 64px !important;
  }

  .home-page .hdr-container,
  .hdr-container {
    min-height: 64px !important;
    padding: 14px 20px !important;
  }

  .home-page .pd-logo,
  .pd-logo {
    width: 170px !important;
    max-width: 70vw !important;
  }

  .home-page .hero,
  .hero {
    min-height: auto !important;
  }

  .home-page .hero__bg,
  .hero__bg {
    background-position: center top !important;
  }

  .home-page .hero__title,
  .home-page .highlight,
  .hero__title,
  .highlight {
    font-size: 24px !important;
    line-height: 1.55 !important;
    letter-spacing: 2px !important;
    margin: 8px 0 14px !important;
  }

  .home-page .hero__subtitle,
  .hero__subtitle {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .home-page .hero__card,
  .hero__card {
    padding: 20px 12px !important;
  }

  .home-page .hero__right,
  .hero__right {
    margin-left: -2px !important;
  }

  .home-page .inp,
  .inp {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .home-page .security-check,
  .security-check {
    width: min(100%, 304px) !important;
  }
}

@media (max-width: 720px) {
  .home-page .support__container,
  .support__container {
    padding: 16px !important;
  }

  .home-page .acc,
  .acc {
    padding: 8px 14px 18px !important;
  }

  .home-page .ft-container,
  .ft-container {
    flex-direction: column !important;
    align-items: center !important;
    padding: 24px 20px !important;
    gap: 16px !important;
  }

  .home-page .ft-brand .pd-logo,
  .ft-brand .pd-logo {
    width: 120px !important;
  }

  .home-page .ft-center,
  .ft-center {
    order: 2 !important;
  }

  .home-page .ft-logos,
  .ft-logos {
    order: 3 !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding: 0 !important;
  }

  .home-page .ft-logos img,
  .ft-logos img {
    height: 18px !important;
  }

  .home-page .ft-cnpj,
  .ft-cnpj {
    max-width: 200px !important;
    font-size: 10px !important;
    text-align: center !important;
  }
}

/* Debitos page reference layout */
.debitos-page {
  min-height: 100%;
  background: #f4f6f9 !important;
  font-family: Ubuntu, sans-serif !important;
}

.debitos-page .appbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid #e7ebf0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.debitos-page .appbar__inner {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  max-width: 680px;
  height: 64px;
  margin: 0 auto;
  padding: 0 16px;
}

.debitos-page .back {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #1f2937;
  text-decoration: none;
  border-radius: 999px;
}

.debitos-page .back:active,
.debitos-page .back:hover {
  background: #f1f5f9;
}

.debitos-page .appbar__title {
  margin: 0;
  color: #111827;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.debitos-main {
  width: min(100%, 680px);
  margin: 0 auto;
  padding-bottom: 112px;
}

.debitos-page .hero-strap {
  position: relative;
  overflow: hidden;
  min-height: 218px;
  background: #111827;
}

.debitos-page .hero-img {
  display: block;
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.debitos-page .hero-strap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.debitos-page .search-wrap {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.debitos-page .search-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.debitos-page .search-label__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #111827;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
}

.debitos-page .search input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.debitos-page .container,
.debitos-page .debts-container {
  width: auto;
  margin: 18px 14px 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.debitos-page .section-bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.debitos-page .section-title {
  display: block;
  margin: 0;
  padding: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 800;
}

.debitos-page .section-stamp {
  flex: 0 0 auto;
  color: #7b8794;
  font-size: 12px;
  font-weight: 500;
}

.debitos-page .row--bulk {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  margin: 0 0 12px;
  padding: 12px 14px;
  color: #334155;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  cursor: pointer;
}

.debitos-page .row--bulk input,
.debitos-page .debt-check {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #111827;
}

.debitos-page .debt-list {
  display: grid;
  gap: 12px;
}

.debitos-page .debt-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 104px;
  padding: 18px 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.debitos-page .debt-title {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.debitos-page .debt-title strong {
  color: #111827;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.debitos-page .debt-provider {
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.debitos-page .debt-title small {
  color: #94a3b8;
  font-size: 12px;
}

.debitos-page .debt-side {
  min-width: 124px;
  text-align: right;
}

.debitos-page .amount {
  color: #111827;
  font-size: 18px;
  font-weight: 900;
}

.debitos-page .fees {
  margin-top: 4px;
  color: #64748b;
  font-size: 11px;
}

.debitos-page .item-total {
  margin-top: 7px;
  color: #111827;
  font-size: 12px;
}

.debitos-page .debitos-total {
  position: fixed;
  right: max(12px, calc((100% - 680px) / 2 + 12px));
  bottom: 14px;
  left: max(12px, calc((100% - 680px) / 2 + 12px));
  z-index: 25;
  margin: 0;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
}

.debitos-page .debitos-total .total-head {
  padding-bottom: 10px;
  font-size: 16px;
}

.debitos-page .debitos-total .total-title > i {
  display: none;
}

.debitos-page .debitos-total .total-title strong {
  font-size: 16px;
}

.debitos-page .debitos-total .total-title small {
  margin-top: 2px;
}

.debitos-page .debitos-total .total-actions {
  padding-top: 12px;
}

.debitos-page .debitos-total .total-actions strong {
  font-size: 22px;
}

.debitos-page .continue-button {
  height: 44px;
  min-width: 128px;
  color: #d7ff35;
  background: #000;
  border: 0;
  cursor: pointer;
}

.debitos-page .continue-button:disabled {
  color: #64748b;
  background: #e2e8f0;
  cursor: not-allowed;
}

.debitos-page .resumo-placa {
  margin: 0;
  color: #475569;
}

@media (max-width: 620px) {
  .debitos-page .appbar__inner {
    height: 58px;
  }

  .debitos-page .hero-strap,
  .debitos-page .hero-img {
    height: 196px;
    min-height: 196px;
  }

  .debitos-page .section-bar {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .debitos-page .debt-item {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .debitos-page .debt-side {
    grid-column: 2;
    min-width: 0;
    text-align: left;
  }

  .debitos-page .debitos-total {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}
