:root {
  --navy-950: #020e1c;
  --navy-900: #03203f;
  --navy-800: #04305d;
  --navy-700: #0a4178;
  --navy-600: #0e4e8f;
  --gold: #d9a83f;
  --gold-2: #f2c866;
  --gold-ink: #a5761d;
  --ink: #16202e;
  --muted: #5c6b7e;
  --line: #e6eaf1;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --green: #1e9e5a;
  --red: #d64545;
  --rule: #d92d20;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(3, 32, 63, .12);
  --shadow-sm: 0 6px 18px rgba(3, 32, 63, .08);
  --container: 1140px;
  --font-head: "Plus Jakarta Sans", "Inter", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }

/* Marca */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand__mark svg { transform: translate(-1px, 1px); }
.brand__text { color: #fff; font-size: 17px; font-weight: 500; }
.brand__text strong { font-weight: 800; }

/* Cabecalho */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy-900);
  box-shadow: 0 2px 14px rgba(2, 14, 28, .25);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 72px;
  position: relative;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}
.nav a { color: #c6d4e6; transition: color .18s ease; }
.nav a:hover { color: #fff; }

.help-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 11px;
  padding: 7px 15px;
  color: #fff;
  line-height: 1.2;
  transition: background .18s ease, border-color .18s ease;
}
.help-btn:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); }
.help-btn small { display: block; font-size: 10.5px; color: #b9c9dd; font-weight: 500; }
.help-btn strong { display: block; font-size: 13px; font-weight: 700; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Botoes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .22s ease, background .2s ease, filter .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--navy {
  background: var(--navy-900);
  color: #fff;
  border-radius: 9px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: var(--shadow-sm);
}
.btn--navy:hover { background: var(--navy-800); box-shadow: var(--shadow); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy-950);
  box-shadow: 0 10px 28px rgba(217, 168, 63, .35);
}
.btn--gold:hover { filter: brightness(1.05); transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { box-shadow: var(--shadow); transform: translateY(-1px); }

.btn--back {
  background: #fff;
  border-color: #d7dee9;
  color: #33415c;
}
.btn--back:hover { border-color: var(--navy-700); color: var(--navy-800); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: var(--navy-700);
  margin-bottom: 14px;
}
.eyebrow--rule::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: var(--rule);
  margin: 12px auto 0;
}

/* Hero */
.hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 72px 0 84px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--navy-700);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--navy-900);
}
.hero__lead {
  margin: 20px 0 6px;
  font-size: 17.5px;
  color: #44536a;
  max-width: 560px;
}
.hero__lead strong { color: var(--navy-900); font-weight: 700; }

.hero__form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero__select {
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
}
.dd__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 9px;
  padding: 0 42px 0 16px;
  font: inherit;
  font-size: 15px;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.dd__toggle::after {
  content: "";
  position: absolute;
  right: 18px;
  top: calc(50% - 6px);
  width: 9px; height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .2s ease, top .2s ease;
  pointer-events: none;
}
.dd__label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero__select.open .dd__toggle,
.dd__toggle:focus-visible {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(10, 65, 120, .12);
}
.hero__select.open .dd__toggle::after {
  transform: rotate(-135deg);
  top: calc(50% - 2px);
}
.hero__select.has-value .dd__toggle {
  color: var(--navy-900);
  font-weight: 600;
}
.hero__select.err .dd__toggle {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 69, 69, .1);
}
.hero__select.err { animation: shake .4s ease; }

.dd__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 50;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 55px rgba(3, 32, 63, .18);
  padding: 6px;
  animation: ddIn .18s ease;
}
@keyframes ddIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.dd__menu li {
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-800);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.dd__menu li:hover,
.dd__menu li:focus-visible {
  outline: none;
  background: rgba(10, 65, 120, .08);
  color: var(--navy-900);
}
.dd__menu li.is-selected {
  background: var(--navy-900);
  color: #fff;
}
.hero__form .btn--navy { height: 56px; padding: 0 30px; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.hero .ferr { margin-top: 10px; }

/* Arte do hero: passaporte */
.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}
.idpage {
  position: relative;
  width: 252px;
  height: 332px;
  background:
    repeating-linear-gradient(115deg, rgba(10, 65, 120, .035) 0 1px, transparent 1px 8px),
    radial-gradient(140px 90px at 80% 18%, rgba(10, 65, 120, .06), transparent 70%),
    linear-gradient(180deg, #f7fafd, #edf3fa);
  border: 2px solid var(--navy-800);
  border-radius: 12px;
  box-shadow: 0 26px 55px rgba(3, 32, 63, .18);
  padding: 12px 13px 11px 24px;
  display: flex;
  flex-direction: column;
  transform: rotate(-2deg);
  flex-shrink: 0;
}
.idpage__vert {
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(10, 65, 120, .4);
  white-space: nowrap;
}
.idpage__top { display: flex; gap: 10px; }
.idpage__fine {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.idpage__fine span {
  height: 2.5px;
  border-radius: 2px;
  background: rgba(51, 65, 92, .18);
}
.idpage__fine span:nth-child(2) { width: 92%; }
.idpage__fine span:nth-child(3) { width: 96%; }
.idpage__fine span:nth-child(4) { width: 70%; }
.idpage__docnum {
  text-align: right;
  font-family: ui-monospace, Consolas, "Courier New", monospace;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #c0392b;
  margin: 7px 0 4px;
}
.idpage__head {
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid rgba(10, 65, 120, .18);
  border-bottom: 1px solid rgba(10, 65, 120, .18);
  padding: 6px 0;
}
.idpage__word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy-900);
}
.idpage__flag {
  position: relative;
  width: 17px; height: 12px;
  border-radius: 2px;
  background: #009c3b;
  overflow: hidden;
  flex-shrink: 0;
}
.idpage__flag::after {
  content: "";
  position: absolute;
  inset: 2.5px 3px;
  background: #ffdf00;
  transform: rotate(45deg);
  border-radius: 1px;
}
.idpage__body { display: flex; gap: 10px; margin-top: 10px; }
.idpage__photo {
  width: 62px; height: 78px;
  background: #e8eef5;
  border: 1px solid #cfdae8;
  border-radius: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.idpage__fields {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px 6px;
  align-content: start;
}
.idf--c1 { grid-column: span 1; }
.idf--c2 { grid-column: span 2; }
.idf--c3 { grid-column: span 3; }
.idf--meio { grid-column: span 3; }
.idf--full { grid-column: span 6; }
.idf small {
  display: block;
  font-size: 4.6px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #8a99ad;
  white-space: nowrap;
}
.idf b {
  display: block;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #22384f;
  white-space: nowrap;
}
.idf__red { color: #c0392b !important; }
.idf__script {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 11px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #1f3350 !important;
  line-height: 1.1;
}
.idpage__mrz {
  margin-top: auto;
  font-family: ui-monospace, Consolas, "Courier New", monospace;
  font-size: 8px;
  letter-spacing: .6px;
  line-height: 1.7;
  color: #5c6b7e;
  border-top: 1px solid rgba(10, 65, 120, .18);
  padding-top: 8px;
  word-break: break-all;
}

.cover {
  position: relative;
  width: 202px;
  height: 284px;
  background:
    radial-gradient(140px 180px at 30% 10%, rgba(255, 255, 255, .12), transparent 65%),
    linear-gradient(160deg, #0d4a8c, #08386b 40%, #052a52 75%, #041f3e);
  border: 1px solid rgba(242, 200, 102, .3);
  border-radius: 10px 16px 16px 10px;
  box-shadow:
    4px 0 0 -1px #f1f5fa,
    7px 0 0 -2px #d7e0eb,
    10px 0 0 -3px #eef2f7,
    0 26px 55px rgba(3, 32, 63, .35);
  color: var(--gold-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px 20px;
  transform: rotate(2deg);
  flex-shrink: 0;
}
.cover::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, rgba(0, 0, 0, .38), transparent);
  border-radius: 10px 0 0 10px;
  pointer-events: none;
}
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: .3;
  pointer-events: none;
}
.cover__top {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.7;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .45);
}
.cover__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 10px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .45);
}
.cover__map {
  width: 152px;
  margin: auto 0;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .4));
}
.cover__chip {
  margin-bottom: 2px;
  opacity: .95;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .4));
}

/* Secoes */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section__head h2 {
  font-size: clamp(27px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.7px;
  color: var(--navy-900);
}
.section__head p { margin-top: 14px; color: var(--muted); font-size: 17px; }

/* Cards de servico */
.svcs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.svc {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  transition: transform .18s ease, box-shadow .22s ease, border-color .2s ease;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(3, 32, 63, .28);
}
.svc__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy-800);
  flex-shrink: 0;
}
.svc__txt { flex: 1; line-height: 1.4; }
.svc__txt strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 3px;
}
.svc__txt span { color: var(--muted); font-size: 14px; }
.svc__chev { color: #93a3b8; flex-shrink: 0; transition: transform .2s ease, color .2s ease; }
.svc:hover .svc__chev { transform: translateX(4px); color: var(--navy-700); }

/* Como funciona */
.hiw {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}
.hiw::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 13%;
  right: 13%;
  height: 2px;
  background: #dbe3ee;
}
.hiw__item { position: relative; }
.hiw__tile {
  position: relative;
  z-index: 1;
  width: 88px; height: 88px;
  border-radius: 24px;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 14px 30px rgba(3, 32, 63, .28);
}
.hiw__num {
  position: absolute;
  top: -7px; right: -11px;
  width: 27px; height: 27px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
}
.hiw__item h3 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.hiw__item p {
  color: var(--muted);
  font-size: 15px;
  max-width: 310px;
  margin: 0 auto;
}

/* Split / diferenciais */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.split__text h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.6px;
  color: var(--navy-900);
}
.split__lead { margin: 16px 0 10px; color: var(--muted); font-size: 16.5px; }
.checklist { list-style: none; margin: 18px 0 30px; }
.checklist li { position: relative; padding-left: 40px; margin: 18px 0; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 27px; height: 27px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy-950);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.checklist strong { display: block; color: var(--navy-900); font-size: 15.5px; }
.checklist span { color: var(--muted); font-size: 14.5px; }

.doc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform .35s ease;
}
.doc:hover { transform: rotate(0); }
.doc__head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.doc__dot { width: 10px; height: 10px; border-radius: 50%; }
.doc__dot:nth-child(1) { background: #ff5f57; }
.doc__dot:nth-child(2) { background: #febc2e; }
.doc__dot:nth-child(3) { background: #28c840; }
.doc__title { margin-left: 8px; font-size: 12.5px; color: var(--muted); }
.doc__body { padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.doc__line { height: 12px; border-radius: 6px; background: #e8edf5; }
.doc__line--title {
  height: 18px; width: 62%;
  background: linear-gradient(90deg, var(--navy-700), var(--navy-600));
  opacity: .85;
}
.doc__line--short { width: 46%; }
.doc__line--mid { flex: 1; height: 11px; }
.doc__item { display: flex; align-items: center; gap: 12px; }
.doc__check {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: #e5f7ec;
  color: var(--green);
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.doc__tag {
  align-self: flex-start;
  margin-top: 8px;
  background: rgba(217, 168, 63, .14);
  color: var(--gold-ink);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 15px;
  border-radius: 999px;
}

/* Depoimentos */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }
.quote blockquote { color: var(--ink); font-size: 15px; line-height: 1.7; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.quote__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-2);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13.5px;
  flex-shrink: 0;
}
.quote figcaption strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.quote figcaption small { color: var(--muted); font-size: 13px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 22px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: rgba(3, 32, 63, .2); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 0;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--navy-700);
  font-weight: 400;
  transition: transform .22s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 0 18px; color: var(--muted); font-size: 15px; }

/* CTA final */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  color: #fff;
  padding: 92px 0;
}
.cta__glow {
  position: absolute;
  width: min(640px, 92vw); height: min(640px, 92vw);
  border-radius: 50%;
  background: rgba(217, 168, 63, .13);
  filter: blur(110px);
  top: -260px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta__inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(27px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.7px; }
.cta p { margin: 16px 0 30px; color: #b9c9dd; font-size: 17px; }
.cta__note { display: block; margin-top: 16px; color: #8ba1ba; font-size: 13.5px; }

/* Rodape */
.footer { background: var(--navy-950); color: #9fb0c4; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px 44px;
}
.brand--footer { margin-bottom: 16px; }
.footer__about { font-size: 14px; max-width: 320px; color: #8195ac; }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 15px; font-weight: 700; }
.footer__col a { display: block; padding: 5px 0; color: #8195ac; font-size: 14.5px; transition: color .18s ease; }
.footer__col a:hover { color: #fff; }
.footer__badge { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 5px 0; color: #8195ac; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  font-size: 13px;
  color: #6f83a0;
}
.footer__bottom .container { display: flex; flex-direction: column; gap: 8px; }
.footer__aviso { max-width: 920px; line-height: 1.6; color: #7e93ad; }

/* Animacao de entrada */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Erros */
.ferr { display: none; color: var(--red); font-size: 13px; margin-top: 6px; }
.ferr.show { display: block; }

/* Checkout */
.co-body {
  background: #f2f5fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.co-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.co-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.co-header .brand__mark {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}
.co-header .brand__text { color: var(--navy-900); }
.co-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-weight: 600;
  font-size: 14.5px;
}
.co-back:hover { text-decoration: underline; }

.co-title {
  text-align: center;
  font-weight: 800;
  color: var(--navy-900);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -.5px;
  margin: 36px 16px 24px;
}
.co-main {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 56px;
  padding: 0 20px;
  flex: 1;
}
.co-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(3, 32, 63, .09);
  padding: 34px 40px 30px;
}

.progress__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.progress__top b { color: var(--navy-900); }
.progress__bar {
  height: 8px;
  border-radius: 99px;
  background: #e8edf5;
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: 25%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--navy-700), var(--navy-900));
  transition: width .45s ease;
}
.progress__label {
  margin-top: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-900);
}

.co-section { padding: 28px 0; border-bottom: 1px solid #eef1f6; }
.co-step .co-section:last-of-type { border-bottom: none; }
.co-section h2 { font-size: 20px; font-weight: 800; color: var(--navy-900); margin-bottom: 4px; }
.co-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }

.co-field { margin-bottom: 20px; }
.flabel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #33415c;
  margin-bottom: 8px;
}
.flabel b { color: var(--red); font-weight: 700; }
.help {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.4px solid #93a3b8;
  color: #93a3b8;
  font-size: 10px;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
  cursor: help;
  flex-shrink: 0;
}

.co-card input[type="text"],
.co-card input[type="email"],
.co-card input[type="tel"],
.co-card select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid #d7dee9;
  border-radius: 10px;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.co-card input:focus,
.co-card select:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(10, 65, 120, .12);
}
.co-card input:disabled {
  background: #f2f5fa;
  color: #93a3b8;
  cursor: not-allowed;
}
.co-card input.err,
.co-card select.err {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 69, 69, .08);
}

.co-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.co-grid2 .co-field { margin-bottom: 0; }
.co-grid2 + .co-grid2, .co-grid2 + .co-field, .co-field + .co-grid2 { margin-top: 20px; }

.radios { display: flex; gap: 28px; padding: 4px 0 2px; flex-wrap: wrap; }
.radios label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  cursor: pointer;
  color: var(--ink);
}
.co-card input[type="radio"],
.co-card input[type="checkbox"] {
  accent-color: var(--navy-900);
  width: 17px; height: 17px;
  cursor: pointer;
}

.fbox {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
}
.fbox__tag {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.checkline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  font-size: 14.5px;
  color: #33415c;
  cursor: pointer;
}

.co-note { font-size: 13px; color: #7e8da3; margin-top: 10px; line-height: 1.6; }

.co-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.co-grid3 .co-field { margin-bottom: 0; }
.co-grid3 + .co-grid2, .co-grid3 + .co-field, .co-field + .co-grid3, .co-grid2 + .co-grid3 { margin-top: 20px; }

/* Revisao: cards com editar */
.rev-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #fff;
}
.rev-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid #eef1f6;
  background: #fbfcfe;
}
.rev-card__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--navy-900);
}
.rev-card__title svg { color: var(--navy-700); flex-shrink: 0; }
.rev-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  background: #fff;
  border: 1px solid #d7dee9;
  border-radius: 8px;
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
  flex-shrink: 0;
}
.rev-edit:hover { border-color: var(--navy-700); color: var(--navy-900); }
.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 22px;
  padding: 18px;
}
.rev-grid > div { min-width: 0; }
.rev-grid small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #8595a8;
  margin-bottom: 3px;
}
.rev-grid span {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  overflow-wrap: break-word;
}

/* Declaracao */
.decl {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 22px;
  cursor: pointer;
}
.decl input { position: absolute; opacity: 0; width: 0; height: 0; }
.decl__box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #c2cddb;
  display: grid;
  place-items: center;
  color: transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  margin-top: 1px;
}
.decl input:checked + .decl__box {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}
.decl input:focus-visible + .decl__box { box-shadow: 0 0 0 3px rgba(10, 65, 120, .18); }
.decl__text { font-size: 14px; color: #33415c; line-height: 1.55; }

.opt-cards { display: grid; gap: 12px; }
.opt-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1.5px solid #d7dee9;
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.opt-card input { margin-top: 3px; flex-shrink: 0; }
.opt-card strong { display: block; color: var(--navy-900); font-size: 15.5px; }
.opt-card span { color: var(--muted); font-size: 14px; }
.opt-card em {
  margin-left: auto;
  font-style: normal;
  font-weight: 700;
  color: var(--navy-700);
  font-size: 14.5px;
  white-space: nowrap;
  padding-left: 10px;
}
.opt-card:has(input:checked) {
  border-color: var(--navy-700);
  background: rgba(10, 65, 120, .035);
  box-shadow: 0 0 0 3px rgba(10, 65, 120, .1);
}

.summary {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
}
.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f1;
  font-size: 14.5px;
}
.summary__row:last-child { border-bottom: none; }
.summary__row span { color: var(--muted); flex-shrink: 0; }
.summary__row strong { color: var(--ink); font-weight: 600; text-align: right; }

.order {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
  margin-top: 16px;
}
.order__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  font-size: 14.5px;
  color: #33415c;
  border-bottom: 1px dashed #e2e8f1;
}
.order__row--total {
  border-bottom: none;
  font-weight: 800;
  color: var(--navy-900);
  font-size: 16px;
}

.co-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 28px;
}
.co-actions--end { justify-content: flex-end; }
.co-demo { margin-top: 16px; font-size: 12.5px; color: #93a3b8; text-align: center; }

.co-success { text-align: center; padding: 34px 10px 20px; }
.co-success__ic {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: #e5f7ec;
  color: var(--green);
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.co-success h2 { font-size: 25px; font-weight: 800; color: var(--navy-900); }
.co-code {
  display: inline-block;
  background: #f7f9fc;
  border: 1px dashed #c9d5e4;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--navy-900);
  font-size: 18px;
  margin: 16px 0 14px;
}
.co-success p { color: var(--muted); font-size: 15px; max-width: 480px; margin: 0 auto 8px; }
.co-success .btn { margin-top: 20px; }
.co-success__lead { font-size: 16px; margin-top: 8px; }
.co-success__baixar {
  margin: 18px auto 10px;
  min-width: 260px;
}
.co-success__link { color: var(--navy-700); font-weight: 600; text-decoration: underline; }
.co-success .co-voltar { margin-top: 18px; }

.co-footer {
  max-width: 880px;
  margin: 0 auto;
  padding: 10px 20px 44px;
  text-align: center;
  font-size: 12.5px;
  color: #8a99ad;
  line-height: 1.65;
}
.co-footer p + p { margin-top: 8px; }

/* Meus Pedidos */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: capitalize;
  white-space: nowrap;
}
.badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.badge--pago { background: #e5f7ec; color: #157347; }
.badge--pendente { background: #fef3c7; color: #b45309; }

.mp-lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.mp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.mp-item__info strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
}
.mp-item__info small { color: var(--muted); font-size: 13.5px; }
.mp-item__acao {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mp-lock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #b45309;
  background: #fef3c7;
  padding: 8px 13px;
  border-radius: 9px;
  max-width: 380px;
}
.mp-vazio {
  margin-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  background: #f7f9fc;
  border: 1px dashed #c9d5e4;
  border-radius: 12px;
  padding: 22px;
}

/* Resumo do pedido */
.co-resumo {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 22px;
}
.co-resumo__title {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.co-resumo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.co-resumo__grid small {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a99ad;
  margin-bottom: 2px;
}
.co-resumo__grid strong {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
}

/* Tipos de processamento */
.procs { display: grid; gap: 14px; }
.proc {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid #d7dee9;
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.proc:hover { border-color: #b6c3d4; }
.proc:has(input:checked) {
  border-color: var(--navy-800);
  box-shadow: 0 0 0 1.5px var(--navy-800);
}
.proc input {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--navy-900);
  width: 18px; height: 18px;
  cursor: pointer;
}
.proc__body { flex: 1; min-width: 0; }
.proc__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.proc__head svg { flex-shrink: 0; }
.proc--normal .proc__head svg { color: var(--navy-700); }
.proc--emergencia .proc__head svg { color: #d97706; }
.proc--urgencia .proc__head svg { color: #dc2626; }
.proc__head strong {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-900);
}
.proc__price {
  margin-left: auto;
  text-align: right;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy-900);
  line-height: 1.25;
  white-space: nowrap;
}
.proc__price small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #93a3b8;
}
.proc--emergencia .proc__price { color: #d97706; }
.proc--urgencia .proc__price { color: #dc2626; }
.proc__desc { color: var(--muted); font-size: 14px; margin-top: 4px; }
.proc__req {
  margin-top: 14px;
  border-left: 3px solid;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 13.5px;
}
.proc__req span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.proc__req ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.proc__req li {
  position: relative;
  padding-left: 14px;
  color: #4a5568;
}
.proc__req li::before { content: "•"; position: absolute; left: 0; }
.proc__req--amber { background: #fffbeb; border-color: #f59e0b; }
.proc__req--amber span { color: #b45309; }
.proc__req--amber li::before { color: #f59e0b; }
.proc__req--red { background: #fef2f2; border-color: #dc2626; }
.proc__req--red span { color: #b91c1c; }
.proc__req--red li::before { color: #dc2626; }

.co-pagto-actions { padding-top: 28px; }
.co-voltar {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  color: var(--muted);
}
.co-voltar:hover { color: var(--navy-800); text-decoration: underline; }

/* Pagamento Pix */
.pix-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  margin-top: 18px;
}
.pix-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy-800);
  font-size: 15px;
}
.pix-status--pago { color: var(--green); }
.pix-status--erro { color: var(--red); }
.spinner {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2.5px solid #dbe3ee;
  border-top-color: var(--navy-700);
  animation: spin360 .8s linear infinite;
  flex-shrink: 0;
}
@keyframes spin360 { to { transform: rotate(360deg); } }
.pix-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 20px 0 26px;
}
.pix-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f4f6fa;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 16px;
}
.pix-step.is-active {
  background: #fff;
  border-color: #d7dee9;
  box-shadow: var(--shadow-sm);
}
.pix-step__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #cfd8e3;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 13.5px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pix-step.is-active .pix-step__num { border-color: var(--navy-800); }
.pix-step > div { min-width: 0; }
.pix-step strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-900);
}
.pix-step strong svg { color: var(--navy-700); flex-shrink: 0; }
.pix-step small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }

.pix-qrcard {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.pix-qr { display: block; width: 216px; height: 216px; }
.pix-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-900);
  margin: 12px 0 6px;
}
.pix-copybtn {
  width: 100%;
  max-width: 360px;
  margin: 8px auto 0;
  padding: 14px 24px;
  border-radius: 11px;
  font-size: 15px;
}
.pix-manual { font-size: 13px; color: var(--muted); margin: 18px 0 8px; }
.pix-codebox {
  font-family: ui-monospace, Consolas, "Courier New", monospace;
  font-size: 12.5px;
  line-height: 1.75;
  color: #33415c;
  background: #f4f6fa;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  word-break: break-all;
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.pix-codebox:hover { border-color: var(--navy-700); background: #fff; }

/* Responsivo */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { padding-top: 8px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .quotes { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hiw { gap: 32px; }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 100%;
    left: -24px; right: -24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 14px 24px 20px;
  }
  .nav.nav--open { display: flex; }
  .nav a { padding: 10px 0; font-size: 16px; width: 100%; }
  .help-btn { display: none; }
  .burger { display: flex; }
}

@media (max-width: 720px) {
  .svcs { grid-template-columns: 1fr; }
  .hiw { grid-template-columns: 1fr; gap: 40px; }
  .hiw::before { display: none; }
}

@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 48px 0 60px; }
  .section { padding: 60px 0; }
  .hero__art { gap: 16px; }
  .idpage { width: 210px; height: 280px; padding: 10px 11px 9px 20px; }
  .idpage__photo { width: 52px; height: 66px; }
  .idpage__mrz { font-size: 6.5px; }
  .cover { width: 172px; height: 242px; padding: 18px 12px 15px; }
  .cover__map { width: 126px; }
  .hero__form { flex-direction: column; align-items: stretch; }
  .hero__select { min-width: 0; max-width: none; width: 100%; }
  .hero__form .btn--navy { width: 100%; }
  .co-card { padding: 26px 20px; }
  .co-grid2 { grid-template-columns: 1fr; }
  .co-grid3 { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .co-actions { flex-direction: column-reverse; }
  .co-actions .btn { width: 100%; }
  .co-resumo__grid { grid-template-columns: 1fr; }
  .proc__price { margin-left: 0; width: 100%; text-align: left; }
  .pix-qr { width: 184px; height: 184px; }
}

/* Celulares estreitos: reduz o tamanho REAL da arte pra nao travar a largura */
@media (max-width: 430px) {
  .hero__art { gap: 10px; }
  .idpage { width: 162px; height: 214px; padding: 8px 8px 7px 15px; }
  .idpage__photo { width: 40px; height: 50px; }
  .idpage__docnum { font-size: 7px; margin: 4px 0 3px; }
  .idpage__word { font-size: 8.5px; letter-spacing: 1.6px; }
  .idpage__mrz { font-size: 5px; padding-top: 5px; }
  .idf small { font-size: 3.8px; }
  .idf b { font-size: 6px; }
  .idf__script { font-size: 9px !important; }
  .cover { width: 132px; height: 186px; padding: 13px 9px 11px; }
  .cover__top { font-size: 7.5px; letter-spacing: 1.2px; }
  .cover__title { font-size: 13px; letter-spacing: 2.5px; }
  .cover__map { width: 98px; }
}
@media (max-width: 340px) {
  .idpage { width: 146px; height: 193px; }
  .cover { width: 118px; height: 167px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
