/* Fontes servidas do proprio dominio (arquivos variaveis, subset latin cobre o portugues) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

: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;
}
/* O conteudo (com o dropdown) fica acima da arte: sem isso, as imagens do
   passaporte (que criam contexto de empilhamento pela animacao/will-change)
   cobrem o menu aberto quando ele desce sobre a area das imagens. */
.hero__content { position: relative; z-index: 2; }
.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: fotos reais do passaporte (pagina de dados + capa), flutuando */
.hero__art {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22px;
  padding-bottom: 30px;
}

/* Entrada suave (uma vez, no carregamento) */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow { animation: riseIn .55s .05s cubic-bezier(.2, .7, .3, 1) both; }
.hero__title { animation: riseIn .55s .12s cubic-bezier(.2, .7, .3, 1) both; }
.hero__lead { animation: riseIn .55s .19s cubic-bezier(.2, .7, .3, 1) both; }
.hero__form { animation: riseIn .55s .26s cubic-bezier(.2, .7, .3, 1) both; }

/* Flutuacao continua: a peca sobe e desce, a sombra no chao respira junto */
.float { position: relative; }
.float--page { animation: riseIn .7s .32s cubic-bezier(.2, .7, .3, 1) both; }
.float--cover { animation: riseIn .7s .44s cubic-bezier(.2, .7, .3, 1) both; }
.float > *:first-child {
  animation: floatBob 6.8s ease-in-out infinite;
  will-change: transform;
}
.float__shadow {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -24px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(3, 32, 63, .28), rgba(3, 32, 63, 0) 72%);
  animation: floatShadow 6.8s ease-in-out infinite;
  pointer-events: none;
}
.float--cover > *:first-child,
.float--cover .float__shadow { animation-duration: 7.8s; animation-delay: -2.4s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(-15px); }
}
@keyframes floatShadow {
  0%, 100% { transform: scaleX(1); opacity: .85; }
  50% { transform: scaleX(.86); opacity: .5; }
}

/* Fotos reais do passaporte (material oficial de divulgacao da Casa da Moeda) */
/* O picture precisa ser block: e ele quem recebe o transform do floatBob */
.float > picture { display: block; }
.passimg {
  display: block;
  height: auto;
  border-radius: 10px;
  box-shadow:
    0 24px 48px rgba(3, 22, 45, .38),
    0 9px 20px rgba(3, 22, 45, .28);
}
.passimg--pagina { width: 355px; border-radius: 8px; }
.passimg--capa { width: 214px; }
.float--page { z-index: 1; }
.float--cover { margin-left: -70px; z-index: 2; }
/* 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 {
  background: transparent;
  border-bottom: none;
}
.co-header .container {
  max-width: 768px;
  padding: 32px 16px 0;
}
.co-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.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: hsl(210, 100%, 17%);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}
.co-back:hover { text-decoration: underline; }

.co-title {
  text-align: center;
  font-family: inherit;
  font-weight: 700;
  color: hsl(210, 100%, 17%);
  font-size: 18px;
  letter-spacing: -.025em;
  margin: 24px 16px 24px;
}
.co-main {
  width: 100%;
  max-width: 768px;
  margin: 0 auto 56px;
  padding: 0 16px;
  flex: 1;
}
.co-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, .06);
  padding: 32px;
}

.progress__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: #475569;
  margin-bottom: 12px;
}
.progress__top b { color: #1e293b; font-weight: 600; }
.progress__top span:first-child { color: #334155; font-weight: 500; font-variant-numeric: tabular-nums; }
.progress__top span:first-child b { color: inherit; font-weight: 500; }
.progress__bar {
  height: 6px;
  border-radius: 99px;
  background: #e2e8f0;
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: 25%;
  border-radius: 99px;
  background: hsl(210, 100%, 17%);
  transition: width .3s ease-out;
}
.progress__label {
  margin-top: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 500;
  font-size: 14px;
  color: #1e293b;
}

.co-section { margin-top: 28px; }
.co-section h2 {
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: hsl(210, 100%, 17%);
  margin-bottom: 0;
}
.co-sub { color: #475569; font-size: 14px; line-height: 1.625; margin: 6px 0 16px; }
.co-section > .co-sub { padding-bottom: 16px; border-bottom: 1px solid #e2e8f0; }

.co-field { margin-bottom: 16px; }
.flabel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 6px;
}
.flabel b { color: #dc2626; font-weight: 600; margin-left: -6px; }
.co-card .ferr { font-size: 12px; color: #dc2626; }
.help {
  width: 14px; height: 14px;
  color: transparent;
  font-size: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cpath d='M12 17h.01'/%3E%3C/svg%3E") center / contain no-repeat;
  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: 14px;
  height: 40px;
  color: #0f172a;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.co-card input::placeholder { color: #94a3b8; }
.co-card input:focus,
.co-card select:focus {
  outline: none;
  border-color: hsl(210, 100%, 17%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05), 0 0 0 1px hsla(210, 100%, 17%, .3);
}
.co-card input:disabled {
  background: #f2f5fa;
  color: #94a3b8;
  cursor: not-allowed;
}
.co-card input.err,
.co-card select.err {
  border-color: #dc2626;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05), 0 0 0 1px rgba(220, 38, 38, .25);
}
.co-card input.ok,
.co-card select.ok { border-color: var(--green); }
.co-card input.ok {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231e9e5a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

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

.radios { display: flex; gap: 24px; padding: 4px 0 2px; flex-wrap: wrap; }
.radios label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  color: #334155;
}
/* Checkbox com o MESMO desenho do radio (bolinha navy com miolo branco):
   decisao do dono, todos os controles de marcar do checkout iguais */
.co-card input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  margin: 0;
  flex: none;
  border: 2px solid hsl(210, 100%, 17%);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease;
}
.co-card input[type="checkbox"]:checked {
  background-color: hsl(210, 100%, 17%);
  border-color: hsl(210, 100%, 17%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='3' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.co-card input[type="checkbox"]:focus {
  border-color: hsl(210, 100%, 17%);
  box-shadow: none;
}
.co-card input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px hsla(210, 100%, 17%, .55);
}
/* Mesmo peso de borda do checkbox (2px navy): lado a lado no formulario os
   dois controles precisam ter o mesmo peso visual */
.co-card input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  margin: 0;
  flex: none;
  border: 2px solid hsl(210, 100%, 17%);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease;
}
.co-card input[type="radio"]:checked {
  /* Espelho do checkbox marcado (fundo navy + glifo branco): circulo navy
     com miolo branco; background-image porque ::before nao renderiza em <input> */
  background-color: hsl(210, 100%, 17%);
  border-color: hsl(210, 100%, 17%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='3' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.co-card input[type="radio"]:focus {
  border-color: hsl(210, 100%, 17%);
  box-shadow: none;
}
.co-card input[type="radio"]:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px hsla(210, 100%, 17%, .55);
}

.fbox {
  background: rgba(248, 250, 252, .8);
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
}
.fbox__tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 12px;
}
.checkline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  font-size: 14.5px;
  color: #33415c;
  cursor: pointer;
}
/* O checkbox do .checkline herda o desenho global de .co-card
   input[type="checkbox"] (bolinha navy com miolo branco), sem regra propria:
   regra duplicada aqui venceria a global e desfaria a unificacao */

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

.co-draft {
  margin: 16px 0 0;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-800);
  background: #eef4fb;
  border: 1px solid #d3e2f2;
  border-radius: 4px;
}

.co-grid3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.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: 16px; }

/* Revisao: cards com editar */
.rev-card {
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  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 rgba(226, 232, 240, .8);
  background: rgba(248, 250, 252, .4);
}
.rev-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
  color: #1e293b;
}
.rev-card__title svg { color: hsl(210, 100%, 17%); flex-shrink: 0; }
.rev-edit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: hsl(210, 100%, 17%);
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 7px 12px;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
  flex-shrink: 0;
}
.rev-edit:hover { background: #f8fafc; border-color: #cbd5e1; color: hsl(210, 100%, 17%); }
.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: rgba(248, 250, 252, .8);
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 16px 18px;
  margin-top: 22px;
  cursor: pointer;
}
/* Input real estilizado, igual aos demais checkboxes do card. O antigo input
   escondido (width/height 0) + quadrado desenhado fazia o Chromium tratar o
   foco como foco de teclado e acender o anel :focus-visible ate no clique. */
.decl input { margin-top: 2px; }
.decl__text { font-size: 14px; color: #334155; 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;
  margin-top: 32px;
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}
.co-actions--end { justify-content: flex-end; }
.co-demo { margin-top: 16px; font-size: 12.5px; color: #93a3b8; text-align: center; }

/* Botoes do checkout no visual do resto do form (nao afeta a home) */
.co-main .btn--navy,
.co-main .btn--back {
  height: 44px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.co-main .btn--navy {
  background: hsl(210, 100%, 17%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}
.co-main .btn--navy:hover {
  background: hsla(210, 100%, 17%, .9);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
}
.co-main .btn--back {
  border-color: #cbd5e1;
  color: hsl(210, 100%, 17%);
}
.co-main .btn--back:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: hsl(210, 100%, 17%);
}
.co-main .btn--sm { height: 38px; padding: 0 16px; }

/* Nome anterior + motivo (caixa destacada) */
.nomebox {
  background: rgba(248, 250, 252, .8);
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 16px;
}

/* Resumo do pedido: dados do solicitante */
.orderinfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  border: 1px solid rgba(10, 65, 120, .16);
  background: linear-gradient(180deg, rgba(10, 65, 120, .055), rgba(10, 65, 120, .015));
  border-radius: 4px;
  padding: 18px 20px;
}
.orderinfo small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
  margin-bottom: 2px;
}
.orderinfo span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-900);
  word-break: break-word;
}

/* ===== Guia personalizado (tela final após o pagamento) ===== */
.co-guide { display: grid; gap: 18px; }
.gcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 26px 28px;
}
.gcard h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.gcard h3 svg { color: var(--navy-700); flex-shrink: 0; }
.gcard__sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.gcard > p { font-size: 14.5px; color: #33415c; line-height: 1.65; }

/* Confirmação (verde) */
.gcard--green {
  border-color: #bfe6cf;
  background: #f2fbf5;
  text-align: center;
  padding-top: 32px;
}
.gok {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #d8f2e2;
  color: var(--green);
  display: grid; place-items: center;
  margin: 0 auto 14px;
}
.gcard--green h2 { font-size: 24px; font-weight: 800; color: var(--navy-900); margin-bottom: 6px; }
.gcard__lead { max-width: 560px; margin: 0 auto; font-size: 15px; color: #33415c; }
.gpedido {
  margin: 18px auto 0;
  padding: 14px 18px;
  max-width: 560px;
  background: #fff;
  border: 1px dashed #b9cbdd;
  border-radius: 12px;
}
.gpedido span { display: block; font-size: 14px; color: #33415c; }
.gpedido b { font-weight: 800; letter-spacing: 1.5px; color: var(--navy-900); font-size: 16px; }
.gpedido small { display: block; font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.55; }
.gpedido a { color: var(--navy-700); font-weight: 600; text-decoration: underline; }
.gcard--green .gcard__mail { margin: 14px auto 0; max-width: 560px; font-size: 13.5px; color: var(--muted); }
.gcard--green .gcard__mail b { color: var(--navy-900); }

/* O que comprou × o que faz na PF (azul) */
.gcard--blue { border-color: #bcd6f0; background: #f3f8fd; }
.gcompare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0 4px;
}
.gcompare__col {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
}
.gcompare__col--nos { border-color: #bfe6cf; background: #f2fbf5; }
.gcompare__col strong { display: block; font-size: 14px; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; }
.gcompare__col ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  font-size: 13.5px;
  color: #33415c;
}
.gcompare__note { margin: 10px 0 14px; font-size: 13.5px; color: var(--muted); }

/* Prioridade (âmbar) */
.gcard--amber { border-color: #ecd9a8; background: #fdf9ee; }
.gcard--amber h3 svg { color: #b7791f; }
.gcard--amber p, .gcard--amber li { font-size: 14px; color: #4a3f23; }
.gstrong { font-weight: 700; margin-top: 10px; }
.glist { margin: 8px 0 12px; padding-left: 20px; display: grid; gap: 6px; }

/* Resumo do que informou */
.gres__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.gres__item small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--muted);
  margin-bottom: 2px;
}
.gres__item p { font-size: 14.5px; font-weight: 600; color: var(--ink); word-break: break-word; }
.gres__item--largo { grid-column: 1 / -1; }
.gres__mut { color: var(--muted); font-weight: 400; font-size: 13.5px; margin-top: 2px; }
.gsec { border-top: 1px solid #eef1f6; margin-top: 16px; padding-top: 14px; }
.gsec__tag {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.gsec > p { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.gsec > p.gres__mut { font-weight: 400; color: var(--muted); }
.gres__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  border-top: 1px solid #eef1f6;
  margin-top: 16px;
  padding-top: 14px;
}
.gcopy {
  border: none;
  background: none;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  margin-left: 6px;
}

/* Passo a passo SINPA */
.gsteps {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.gsteps li { display: flex; gap: 14px; align-items: flex-start; }
.gsteps__num {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
}
.gsteps strong { display: block; font-size: 15px; color: var(--navy-900); margin-bottom: 3px; }
.gsteps p { font-size: 14px; color: #33415c; line-height: 1.6; }
.gsteps__btn { margin-top: 10px; }

/* Documentos do dia */
.gdocs {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.gdocs li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #33415c;
  line-height: 1.6;
}
.gdocs svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

.gacts { display: flex; gap: 14px; }
.gacts .btn { flex: 1; }

.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;
}

.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); } }
/* Como pagar: passos compactos direto na tela do pagamento (o primeiro passo,
   o que a pessoa faz agora, vem destacado) */
.pix-steps {
  list-style: none;
  counter-reset: pixsteps;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 470px;
  margin: 0 auto 20px;
  text-align: left;
}
.pix-steps li {
  counter-increment: pixsteps;
  position: relative;
  padding: 9px 12px 9px 41px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcfe;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.pix-steps li:first-child { border-color: var(--navy-700); background: #fff; }
.pix-steps li::before {
  content: counter(pixsteps);
  position: absolute;
  left: 11px; top: 50%;
  transform: translateY(-50%);
  width: 21px; height: 21px;
  border-radius: 50%;
  border: 1.5px solid #cfd8e3;
  background: #fff;
  color: var(--navy-900);
  font-size: 11.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.pix-steps li:first-child::before { border-color: var(--navy-700); }
.pix-steps b { display: block; color: var(--navy-900); font-weight: 700; font-size: 13.5px; }
.pix-steps small { display: block; font-size: 12px; margin-top: 1px; }

.pix-payrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 4px 0 2px;
}
.pix-qrcard {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.pix-qr { display: block; width: 216px; height: 216px; }
.pix-qrcard.is-expired .pix-qr { filter: blur(6px); opacity: .35; }
.pix-qrbadge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.pix-qrbadge img { display: block; }
.pix-qrcard.is-expired .pix-qrbadge { display: none; }
.pix-qrexp {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}
.pix-qrexp strong { font-size: 15px; font-weight: 800; color: var(--navy-900); }
.pix-qrexp .btn { padding: 10px 18px; font-size: 13.5px; border-radius: 9px; }
/* Topo do pagamento: valor em destaque + validade do codigo numa linha */
.pix-paytop { margin-bottom: 18px; }
.pix-paytop > small {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #93a3b8;
  text-transform: uppercase;
}
.pix-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.5px;
  color: var(--navy-900);
  margin: 2px 0 0;
}
.pix-validade {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f4f6fa;
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.pix-validade b {
  font-family: ui-monospace, Consolas, "Courier New", monospace;
  font-weight: 700;
  color: var(--navy-800);
  font-variant-numeric: tabular-nums;
}

/* Botao que revela o QR no celular (no computador o QR ja vem aberto) */
.pix-qrtoggle {
  display: none;
  width: 100%;
  max-width: 400px;
  margin: 14px auto 0;
  padding: 12px 16px;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.pix-qrtoggle:hover { border-color: var(--navy-700); }
.pix-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 12px;
}
.pix-divider::before,
.pix-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.pix-divider span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #93a3b8;
  white-space: nowrap;
}
.pix-copybtn {
  width: 100%;
  max-width: 400px;
  margin: 12px auto 0;
  padding: 14px 24px;
  border-radius: 11px;
  font-size: 15px;
}
.pix-copybtn:disabled { opacity: .45; cursor: not-allowed; }
.pix-codebox {
  font-family: ui-monospace, Consolas, "Courier New", monospace;
  font-size: 12.5px;
  color: #33415c;
  background: #f4f6fa;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.pix-codebox:hover { border-color: var(--navy-700); background: #fff; }
.pix-secure {
  max-width: 480px;
  margin: 22px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
  color: #93a3b8;
}
.pix-secure svg { vertical-align: -2px; margin-right: 3px; }

/* Status de espera: linha forte + lembrete da confirmacao automatica embaixo */
.pix-status__txt { min-width: 0; }
.pix-status__txt small {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  margin-top: 2px;
  opacity: .85;
}

/* Passos por aparelho: no computador manda escanear o QR; no celular manda
   copiar o codigo (ninguem escaneia a propria tela). So uma das listas aparece. */
.pix-steps.pix-steps--celular { display: none; }
@media (max-width: 640px) {
  .pix-steps.pix-steps--celular { display: flex; }
  .pix-steps.pix-steps--computador { display: none; }

  /* Ordem do pagamento no celular: valor, passos, copia e cola, QR recolhido,
     status. O divisor "ou copie manualmente" e coisa de computador: no celular
     o copia e cola e o caminho principal, nao a alternativa. */
  .pix-pagar { display: flex; flex-direction: column; }
  .pix-paytop { order: 1; margin-bottom: 4px; }
  .pix-steps { order: 2; margin: 16px 0 8px; }
  .pix-divider { display: none; }
  .pix-codebox { order: 3; width: 100%; }
  .pix-copybtn { order: 4; }
  .pix-qrtoggle { order: 5; display: block; }
  .pix-payrow { order: 6; display: none; margin-top: 16px; }
  .pix-pagar.is-qr-aberto .pix-payrow { display: flex; }
  .pix-status { order: 7; }
  #pixVerificar { order: 8; }
  .pix-secure { order: 9; }
}

/* Tela final dedicada: card do solicitante + pagamento Pix */
/* Largura de tela de pagamento (mais estreita que o formulario, como nos checkouts reais) */
.co-pixview { display: block; max-width: 620px; margin: 0 auto; }

/* Card do solicitante: foto real da capa do passaporte + dados da compra */
.pvdoc {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 16px 22px;
  margin-bottom: 14px;
}
.pvdoc__cover {
  width: 82px;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(3, 22, 45, .28);
}
.pvdoc__fields {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  align-content: center;
}
.pvdoc__f--full { grid-column: 1 / -1; }
.pvdoc__f small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #93a3b8;
  white-space: nowrap;
}
.pvdoc__f b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 2px;
  overflow-wrap: anywhere;
}
.pvdoc__f--full:first-child b { font-size: 15px; font-weight: 800; }

.paysec {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 24px 24px 26px;
  margin-bottom: 18px;
}
.paysec__head { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.paysec__head h2 { font-size: 19px; font-weight: 800; color: var(--navy-900); margin: 0; }
.paysec__head .co-sub { margin: 3px 0 0; font-size: 13.5px; }
/* Logo oficial do Pix (Banco Central), sozinho e em bom tamanho */
.paysec__pixlogo { height: 34px; width: auto; margin-left: auto; flex-shrink: 0; }
/* Dentro do card, a caixa do Pix nao precisa de moldura propria (mantem o text-align:center) */
.paysec .pix-box { border: 0; border-radius: 0; padding: 0; margin: 0; }
/* Status vira um aviso ambar de largura total, abaixo do codigo */
.paysec .pix-status {
  display: flex; width: 100%; box-sizing: border-box;
  margin: 22px 0 4px; padding: 14px 16px; border-radius: 12px;
  background: #fdf6e3; border: 1px solid #efe0b3; color: #8a6a1c;
  font-weight: 700; font-size: 14.5px; text-align: left;
}
.paysec .pix-status--pago { background: rgba(30, 158, 90, .1); border-color: rgba(30, 158, 90, .35); color: var(--green); }
.paysec .pix-status--erro { background: rgba(214, 69, 69, .08); border-color: rgba(214, 69, 69, .35); color: var(--red); }

@media (max-width: 560px) {
  .paysec { padding: 20px 16px; }
  .pvdoc { padding: 14px 16px; gap: 16px; }
  .pvdoc__cover { width: 72px; }
  .pvdoc__fields { grid-template-columns: 1fr; gap: 8px; }
  .pvdoc__f b { font-size: 13px; }
  .pvdoc__f--full:first-child b { font-size: 14px; }
  .co-back { font-size: 13.5px; gap: 6px; }
  .pix-payrow { flex-direction: column; gap: 16px; }
  .paysec__pixlogo { height: 27px; }
}

/* Celulares estreitos: cabecalho do checkout compacto pra nao estourar a largura */
@media (max-width: 400px) {
  .co-header .brand__text { font-size: 15px; }
  .co-header .brand__mark { width: 30px; height: 30px; }
  .co-back { font-size: 12.5px; gap: 5px; }
  .co-back svg { width: 15px; height: 15px; }
  .pvdoc__cover { width: 56px; }
}

/* Responsivo */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  /* Empilhou: centraliza o texto e a arte, como num app */
  .hero__content { text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__form { justify-content: center; }
  .hero__art { padding-top: 4px; }
  .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: 14px; padding-bottom: 24px; }
  .passimg--pagina { width: 262px; }
  .passimg--capa { width: 158px; }
  .float--cover { margin-left: -52px; }
  .float__shadow { bottom: -18px; height: 13px; }
  .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-header__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .co-back { font-size: 14px; }
  .co-card { padding: 24px 20px; }
  .co-card input[type="text"],
  .co-card input[type="email"],
  .co-card input[type="tel"],
  .co-card select {
    height: 44px;
    font-size: 16px;
  }
  .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; }
  .pix-qr { width: 184px; height: 184px; }
  .orderinfo { grid-template-columns: 1fr; gap: 12px; }
  .gcard { padding: 22px 18px; }
  .gcompare { grid-template-columns: 1fr; }
  .gres__grid { grid-template-columns: 1fr; }
  .gres__foot { gap: 12px 28px; }
  .gacts { flex-direction: column; }
}

/* Checkout em telas largas: titulos acompanham o desktop (18px -> 20px) */
@media (min-width: 768px) {
  .co-title { font-size: 20px; }
  .co-section h2 { font-size: 20px; }
}

/* Celulares estreitos: reduz a escala real da arte pra nao travar a largura */
@media (max-width: 430px) {
  .hero__art { gap: 10px; }
  .passimg--pagina { width: 220px; }
  .passimg--capa { width: 132px; }
  .float--cover { margin-left: -44px; }
}
@media (max-width: 340px) {
  .hero__art { gap: 8px; }
  .passimg--pagina { width: 188px; }
  .passimg--capa { width: 114px; }
  .float--cover { margin-left: -38px; }
}

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

/* ===== Páginas legais (Política de Privacidade e Termos de Uso) ===== */
.legal-hero {
  background: var(--navy-900);
  color: #fff;
  padding: 52px 0 44px;
}
.legal-hero h1 { font-size: clamp(28px, 4vw, 38px); line-height: 1.2; }
.legal-hero p { margin-top: 8px; color: rgba(255, 255, 255, .7); font-size: 15px; }

.legal { padding: 52px 0 88px; }
.legal h2 {
  font-size: 21px;
  margin: 38px 0 12px;
  scroll-margin-top: 90px; /* âncora #cookies não fica escondida sob o header fixo */
}
.legal article h2:first-child { margin-top: 0; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--navy-600); text-decoration: underline; text-underline-offset: 3px; }

/* Links para as páginas legais citados no meio de textos (FAQ da home, nota do checkout) */
.faq__body a,
.co-note a { color: var(--navy-600); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 640px) {
  .legal-hero { padding: 36px 0 30px; }
  .legal { padding: 40px 0 64px; }
}

/* ===== Impressão do guia (Imprimir / Salvar PDF) ===== */
@media print {
  body { background: #fff; }
  .co-header, .gacts, .gsteps__btn, .gcopy, .gcard--blue .btn { display: none !important; }
  .co-main { max-width: 100%; margin: 0; padding: 0; }
  .co-guide { gap: 12px; }
  .gcard {
    box-shadow: none;
    border: 1px solid #d0d7e2;
    break-inside: avoid;
    padding: 18px 20px;
  }
  .gcard--green, .gcard--blue, .gcard--amber { background: #fff; }
}

/* ===== Comprovante de pagamento (tela do Pix: "Status não atualizou?") ===== */
.pix-comp {
  margin-top: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #d7dee9;
  border-radius: 12px;
  text-align: left;
}
.pix-comp__title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  color: var(--ink);
}
.pix-comp__title svg { color: var(--navy-600); flex: none; }
.pix-comp__txt {
  margin: 6px 0 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.pix-comp__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  background: #fff;
  border: 1.5px solid var(--navy-600);
  border-radius: 10px;
  color: var(--navy-600);
  font: inherit;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
}
.pix-comp__btn:hover { background: #f2f6fc; }
.pix-comp__btn:disabled { opacity: .6; cursor: default; }
.pix-comp__msg {
  margin-top: 10px;
  font-size: 13px;
  color: var(--red);
}
/* No celular a tela do Pix ordena os filhos por flex order (bloco ~1880):
   sem order o card pularia pro topo. Empata com o "Já paguei" (8) e a ordem
   do HTML resolve: verificar -> comprovante -> selo de segurança (9). */
@media (max-width: 640px) {
  .pix-comp { order: 8; }
}
