:root {
  --navy-950: #031f47;
  --navy-900: #052b63;
  --navy-850: #073875;
  --navy-800: #0b3e80;
  --blue-700: #0d57b8;
  --blue-600: #1667ce;
  --blue-100: #eaf3ff;
  --orange-600: #f28a00;
  --orange-500: #ff9d18;
  --orange-100: #fff2de;
  --ink: #10294b;
  --muted: #6c7b95;
  --muted-2: #8b98ad;
  --line: #d7e1ef;
  --line-strong: #bdcde3;
  --surface: #ffffff;
  --surface-soft: #f5f8fd;
  --surface-blue: #edf5ff;
  --success: #16845b;
  --danger: #b43a45;
  --shadow-sm: 0 8px 24px rgba(5, 43, 99, .08);
  --shadow-md: 0 24px 70px rgba(2, 24, 58, .18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
:focus-visible { outline: 3px solid rgba(255, 157, 24, .55); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-900);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 880px); margin-inline: auto; }

.topbar {
  color: rgba(255,255,255,.86);
  background: var(--navy-950);
  font-size: 12px;
  letter-spacing: .01em;
}
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-group { display: flex; align-items: center; gap: 18px; }
.topbar .verified { display: inline-flex; align-items: center; gap: 7px; }
.topbar .verified::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52d49c;
  box-shadow: 0 0 0 4px rgba(82,212,156,.13);
}
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(13, 87, 184, .10);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-link { flex: 0 0 auto; }
.logo { width: 214px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.primary-nav > a:not(.btn) { color: #27466e; }
.primary-nav > a:not(.btn):hover { color: var(--blue-700); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy-900);
  background: #fff;
  place-items: center;
}
.menu-toggle svg { width: 24px; fill: currentColor; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--orange-500); box-shadow: 0 10px 25px rgba(242,138,0,.24); }
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 14px 30px rgba(242,138,0,.30); }
.btn-blue { color: #fff; background: var(--blue-700); }
.btn-outline { color: var(--navy-900); border-color: var(--line-strong); background: #fff; }
.btn-dark { color: #fff; background: var(--navy-900); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; fill: currentColor; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 62px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 9% 12%, rgba(44,129,226,.32), transparent 27%),
    radial-gradient(circle at 93% 8%, rgba(255,157,24,.22), transparent 23%),
    linear-gradient(135deg, #031f47 0%, #073875 58%, #052b63 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
}
.hero::before { width: 560px; height: 560px; right: -290px; top: 80px; }
.hero::after { width: 380px; height: 380px; left: -210px; bottom: -180px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
  align-items: start;
  gap: 56px;
}
.hero-copy { padding-top: 22px; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 28px; color: rgba(255,255,255,.62); font-size: 13px; }
.breadcrumbs a:hover { color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 99px; background: var(--orange-500); }
.eyebrow.on-dark { color: #bcd9ff; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.hero h1 span { color: #ffbd55; }
.hero .lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.79);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 30px;
}
.hero-trust-item {
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(255,255,255,.07);
}
.hero-trust-item svg { width: 24px; height: 24px; margin-bottom: 10px; fill: #ffbd55; }
.hero-trust-item strong { display: block; color: #fff; font-size: 13px; line-height: 1.35; }
.hero-trust-item span { display: block; margin-top: 3px; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.45; }
.private-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 26px;
  padding: 15px 17px;
  border-left: 3px solid var(--orange-500);
  border-radius: 0 12px 12px 0;
  color: rgba(255,255,255,.74);
  background: rgba(0,0,0,.12);
  font-size: 13px;
}
.private-note svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 1px; fill: #ffbd55; }

.assessment-card {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.48);
  border-top: 7px solid var(--orange-500);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.assessment-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -150px;
  top: -170px;
  border-radius: 50%;
  background: rgba(255,157,24,.10);
  pointer-events: none;
}
.form-head { padding: 28px 32px 18px; }
.form-kicker { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.form-kicker span:first-child { color: var(--blue-700); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-time { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 11px; font-weight: 700; }
.form-time svg { width: 15px; height: 15px; fill: currentColor; }
.form-head h2 { margin: 8px 0 4px; color: var(--navy-900); font-size: 30px; line-height: 1.15; letter-spacing: -.03em; }
.form-head p { margin: 0; color: var(--muted); font-size: 14px; }
.assessment-form { padding: 0 32px 30px; }
.form-section { padding: 20px 0; border-top: 1px solid #e9eef6; }
.form-section:first-of-type { border-top: 0; padding-top: 8px; }
.form-section-title { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.form-section-title strong { color: var(--navy-900); font-size: 14px; }
.form-section-title small { color: var(--muted-2); font-size: 11px; }
.region-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.region-option { position: relative; }
.region-option input { position: absolute; opacity: 0; pointer-events: none; }
.region-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: 17px;
  background: #f9fbfe;
  transition: border .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.region-card:hover { transform: translateY(-1px); border-color: #91b5e6; }
.region-option input:checked + .region-card { border-color: var(--blue-600); background: var(--blue-100); box-shadow: 0 0 0 4px rgba(22,103,206,.08); }
.region-icon {
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-700);
  background: #fff;
  box-shadow: 0 5px 16px rgba(13,87,184,.09);
}
.region-icon svg { width: 25px; height: 25px; fill: currentColor; }
.region-card strong { display: block; color: var(--navy-900); font-size: 15px; line-height: 1.3; }
.region-card span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; line-height: 1.35; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px 14px; }
.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field-label { display: block; margin: 0 0 6px; color: var(--navy-900); font-size: 12px; font-weight: 800; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  padding: 12px 13px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field select { padding-right: 38px; }
.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa6b9; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(22,103,206,.10); }
.field-help { display: block; margin-top: 5px; color: var(--muted-2); font-size: 10px; line-height: 1.35; }
.field-error { display: none; margin-top: 5px; color: var(--danger); font-size: 10px; font-weight: 700; }
.field.has-error .field-error { display: block; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: rgba(180,58,69,.72); background: #fffafa; }

.date-panel {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
}
.date-divider { width: 1px; background: var(--line); }
.date-field label { display: block; color: var(--blue-700); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.date-field input { width: 100%; min-height: 39px; border: 0; color: var(--ink); background: transparent; padding: 6px 0 0; font-weight: 700; }
.date-field input:focus { outline: 0; }

.passengers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.passenger-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 82px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}
.passenger-copy strong { display: block; color: var(--navy-900); font-size: 13px; }
.passenger-copy span { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; }
.counter { display: grid; grid-template-columns: 40px 46px 40px; height: 46px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; }
.counter button { border: 0; color: var(--blue-700); background: #fff; font-size: 20px; font-weight: 800; }
.counter button:hover { background: var(--blue-100); }
.counter button:disabled { color: #b6c1d1; cursor: not-allowed; }
.counter output { display: grid; place-items: center; border-inline: 1px solid var(--line); color: var(--navy-900); font-weight: 900; }

.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: #4f6079;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}
.choice input:checked + span { color: var(--blue-700); border-color: var(--blue-600); background: var(--blue-100); box-shadow: 0 0 0 3px rgba(22,103,206,.07); }

.form-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  padding: 15px 16px;
  border: 1px solid #f4d6ad;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff8ed, #fffdf9);
}
.form-summary strong { display: block; color: #895000; font-size: 12px; }
.form-summary span { display: block; margin-top: 2px; color: #8e6f47; font-size: 10px; }
.readiness-meter { width: 95px; }
.readiness-meter b { display: block; margin-bottom: 5px; color: #925500; text-align: right; font-size: 12px; }
.meter-track { height: 7px; overflow: hidden; border-radius: 999px; background: #f1dfc5; }
.meter-fill { height: 100%; width: 0; border-radius: inherit; background: var(--orange-500); transition: width .35s ease; }

.consent-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 16px 0 14px; color: var(--muted); font-size: 10px; line-height: 1.45; }
.consent-row input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--blue-700); }
.consent-row a { color: var(--blue-700); text-decoration: underline; text-underline-offset: 2px; }
.submit-button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--orange-500);
  box-shadow: 0 15px 32px rgba(242,138,0,.28);
  font-size: 16px;
  font-weight: 900;
}
.submit-button:hover { background: var(--orange-600); transform: translateY(-1px); }
.submit-button:disabled { opacity: .65; cursor: wait; transform: none; }
.submit-button svg { width: 23px; height: 23px; display: inline-block; vertical-align: -6px; margin-right: 7px; fill: currentColor; }
.form-note { margin: 10px 10px 0; color: var(--muted-2); text-align: center; font-size: 10px; line-height: 1.45; }
.form-alert { display: none; margin: 13px 0 0; padding: 11px 13px; border-radius: 12px; font-size: 11px; font-weight: 700; }
.form-alert.is-visible { display: block; }
.form-alert.error { color: #8f2632; background: #fff0f1; }
.form-alert.success { color: #146846; background: #eaf8f2; }

.trust-strip { position: relative; z-index: 5; margin-top: -26px; }
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.trust-strip-item { display: flex; align-items: center; gap: 12px; min-height: 80px; padding: 17px 20px; }
.trust-strip-item + .trust-strip-item { border-left: 1px solid var(--line); }
.trust-strip-item svg { width: 25px; height: 25px; flex: 0 0 auto; fill: var(--blue-700); }
.trust-strip-item strong { display: block; color: var(--navy-900); font-size: 12px; }
.trust-strip-item span { display: block; color: var(--muted); font-size: 10px; }

.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--surface-soft); }
.section-dark { color: #fff; background: var(--navy-950); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(31px, 4vw, 48px); line-height: 1.12; letter-spacing: -.04em; }
.section-heading p { margin: 16px 0 0; color: var(--muted); font-size: 17px; }
.section-dark .section-heading h2 { color: #fff; }
.section-dark .section-heading p { color: rgba(255,255,255,.68); }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.feature-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(5,43,99,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: #b6cbe8; box-shadow: 0 18px 45px rgba(5,43,99,.10); }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 15px; color: var(--blue-700); background: var(--blue-100); }
.feature-icon svg { width: 26px; height: 26px; fill: currentColor; }
.feature-card:nth-child(2n) .feature-icon { color: #a75a00; background: var(--orange-100); }
.feature-card h3 { margin: 0; color: var(--navy-900); font-size: 18px; line-height: 1.25; }
.feature-card p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }

.region-section-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.destination-card { position: relative; overflow: hidden; min-height: 440px; padding: 34px; border-radius: 28px; color: #fff; }
.destination-card.br { background: linear-gradient(145deg, #07543f, #0b8a67); }
.destination-card.eu { background: linear-gradient(145deg, #0b3b7b, #071e46); }
.destination-card.na { background: linear-gradient(145deg, #8a4a00, #d67800); }
.destination-card::before { content: ""; position: absolute; width: 340px; height: 340px; right: -150px; top: -160px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.destination-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -85px; top: -95px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.destination-top { position: relative; z-index: 1; }
.destination-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.10); }
.destination-icon svg { width: 34px; height: 34px; fill: #fff; }
.destination-card h3 { margin: 0; font-size: 30px; line-height: 1.1; letter-spacing: -.03em; }
.destination-card p { max-width: 520px; margin: 13px 0 0; color: rgba(255,255,255,.75); font-size: 14px; }
.destination-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.destination-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.09); font-size: 11px; font-weight: 800; }
.destination-list { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 29px; }
.destination-list div { display: flex; gap: 8px; align-items: flex-start; color: rgba(255,255,255,.82); font-size: 12px; }
.destination-list svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 1px; fill: #fff; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.process-grid::before { content: ""; position: absolute; top: 33px; left: 9%; right: 9%; height: 1px; background: #c9d8eb; }
.process-card { position: relative; z-index: 1; padding: 0 18px 22px; text-align: center; }
.process-number { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 18px; border: 7px solid var(--surface-soft); border-radius: 50%; color: #fff; background: var(--blue-700); box-shadow: 0 0 0 1px #b9cce6; font-size: 17px; font-weight: 900; }
.process-card:nth-child(4) .process-number { background: var(--orange-500); }
.process-card h3 { margin: 0; color: var(--navy-900); font-size: 16px; }
.process-card p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }

.compliance-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
  padding: 48px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.compliance-panel::after { content: ""; position: absolute; width: 360px; height: 360px; right: -220px; bottom: -260px; border-radius: 50%; background: rgba(255,157,24,.13); }
.compliance-badge { width: 130px; height: 130px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 34px; background: rgba(255,255,255,.08); transform: rotate(-4deg); }
.compliance-badge svg { width: 68px; height: 68px; fill: #ffbd55; }
.compliance-copy { position: relative; z-index: 1; }
.compliance-copy h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.12; letter-spacing: -.035em; }
.compliance-copy p { margin: 18px 0 0; color: rgba(255,255,255,.70); }
.compliance-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 24px; }
.compliance-point { display: flex; gap: 9px; color: rgba(255,255,255,.82); font-size: 12px; }
.compliance-point svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; fill: #ffbd55; }


/* Google Reviews e prova social */
.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(22,103,206,.10), transparent 26%),
    radial-gradient(circle at 92% 82%, rgba(255,157,24,.11), transparent 24%),
    #fff;
}
.reviews-shell {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: 58px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}
.google-review-brand {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #34445d;
  font-size: 13px;
  font-weight: 850;
}
.google-g {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: transparent;
  background: conic-gradient(from -40deg, #4285f4 0 25%, #34a853 25% 48%, #fbbc05 48% 71%, #ea4335 71% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}
.google-g.small { width: 20px; height: 20px; font-size: 18px; border-radius: 6px; }
.google-stars { color: #f5a300; letter-spacing: .08em; font-size: 14px; }
.reviews-intro h2 { margin: 0; color: var(--navy-900); font-size: clamp(34px, 4.6vw, 54px); line-height: 1.08; letter-spacing: -.045em; }
.reviews-intro > p { margin: 20px 0 0; color: var(--muted); font-size: 16px; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0; }
.experience-grid > div { padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface-soft); }
.experience-grid strong { display: block; color: var(--navy-900); font-size: 24px; line-height: 1.1; letter-spacing: -.03em; }
.experience-grid span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.btn-google { color: #fff; background: var(--navy-900); box-shadow: 0 12px 28px rgba(5,43,99,.17); }
.btn-google:hover { background: var(--blue-700); box-shadow: 0 15px 32px rgba(13,87,184,.22); }
.reviews-cta-row { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; margin-top: 18px; }
.reviews-write-link { color: var(--blue-700); font-size: 12px; font-weight: 850; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.reviews-write-link:hover { color: var(--navy-900); }
.reviews-note { display: block; max-width: 500px; margin-top: 10px; color: var(--muted-2); font-size: 10px; line-height: 1.45; }
.reviews-carousel { min-width: 0; }
.reviews-viewport {
  overflow: hidden;
  border: 1px solid #d4e0ef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(5,43,99,.13);
}
.reviews-viewport:focus-visible { outline-offset: 6px; }
.reviews-track { display: flex; will-change: transform; transition: transform .58s cubic-bezier(.22,.61,.36,1); }
.review-card {
  min-width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 38px 40px 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(255,157,24,.12), transparent 28%),
    linear-gradient(145deg, #fff, #f9fbff);
}
.review-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-source { display: inline-flex; align-items: center; gap: 6px; color: #41516a; font-size: 11px; font-weight: 850; }
.review-verified { padding: 6px 9px; border-radius: 999px; color: var(--success); background: #eaf8f2; font-size: 9px; font-weight: 850; }
.review-stars { margin-top: 44px; color: #f5a300; font-size: 22px; letter-spacing: .10em; }
.review-card blockquote { margin: 21px 0 32px; color: var(--navy-900); font-size: clamp(25px, 3vw, 37px); font-weight: 800; line-height: 1.33; letter-spacing: -.035em; }
.review-card footer { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.review-avatar { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--navy-900)); font-size: 13px; font-weight: 900; }
.review-card footer strong { display: block; color: var(--navy-900); font-size: 13px; }
.review-card footer span:not(.review-avatar) { display: block; color: var(--muted); font-size: 10px; }
.reviews-controls { display: grid; grid-template-columns: 44px 1fr auto 44px; align-items: center; gap: 12px; margin-top: 18px; }
.carousel-arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--blue-700); background: #fff; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.carousel-arrow:hover { transform: translateY(-1px); border-color: #92b6e6; background: var(--blue-100); }
.carousel-arrow svg { width: 22px; height: 22px; fill: currentColor; }
.review-dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.review-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: #c8d4e4; transition: width .25s ease, background .25s ease; }
.review-dot.is-active { width: 28px; background: var(--orange-500); }
.reviews-counter { color: var(--muted); font-size: 11px; font-weight: 800; font-variant-numeric: tabular-nums; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 6px 18px rgba(5,43,99,.04); }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 20px 58px 20px 22px; color: var(--navy-900); font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 21px; top: 50%; transform: translateY(-50%); width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); font-size: 20px; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 22px 21px; color: var(--muted); font-size: 14px; }
.faq-answer p { margin: 0; }

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 44px 48px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), #0c4e9e);
  box-shadow: var(--shadow-md);
}
.cta-band::before { content: ""; position: absolute; width: 280px; height: 280px; right: -130px; top: -150px; border-radius: 50%; background: rgba(255,157,24,.18); }
.cta-band h2 { position: relative; margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.15; letter-spacing: -.035em; }
.cta-band p { position: relative; max-width: 720px; margin: 12px 0 0; color: rgba(255,255,255,.72); }
.cta-actions { position: relative; display: flex; flex-direction: column; gap: 8px; min-width: 240px; }
.cta-actions small { color: rgba(255,255,255,.56); text-align: center; font-size: 10px; }

.site-footer { color: rgba(255,255,255,.68); background: #021a3b; }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr 1fr 1fr; gap: 45px; padding: 64px 0 48px; }
.footer-logo { width: 190px; height: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 360px; margin: 0 0 20px; font-size: 13px; }
.footer-title { margin: 0 0 18px; color: #fff; font-size: 14px; }
.footer-links, .footer-contact { display: grid; gap: 10px; font-size: 12px; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact div { display: grid; gap: 2px; }
.footer-contact strong { color: rgba(255,255,255,.90); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #20b75a;
  box-shadow: 0 13px 35px rgba(0,0,0,.23);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-inner {
  width: min(100%, 820px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(2,24,58,.25);
}
.cookie-inner p { margin: 0; color: var(--muted); font-size: 11px; }
.cookie-inner p a { color: var(--blue-700); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.cookie-actions .btn { min-height: 40px; padding: 9px 14px; font-size: 11px; }

@media (max-width: 1080px) {
  .reviews-shell { grid-template-columns: 1fr; gap: 38px; }
  .reviews-intro { max-width: 820px; }
  .region-section-grid { grid-template-columns: 1fr 1fr; }
  .region-section-grid .destination-card.br { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { max-width: 840px; padding-top: 0; }
  .assessment-card { width: min(100%, 780px); margin-inline: auto; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-strip-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-strip-item:nth-child(4) { border-top: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > :nth-child(2) { display: none; }
}

@media (max-width: 860px) {
  .topbar .topbar-group:last-child { display: none; }
  .header-inner { min-height: 72px; }
  .logo { width: 180px; }
  .menu-toggle { display: grid; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 30px 50px rgba(2,24,58,.18);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 14px 5px; border-bottom: 1px solid #edf1f7; }
  .primary-nav .btn { margin-top: 12px; }
  .region-section-grid { grid-template-columns: 1fr; }
  .region-section-grid .destination-card.br { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .compliance-panel { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; min-width: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :nth-child(2) { display: block; }
}

@media (max-width: 760px) {
  .region-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 24px), var(--container)); }
  .topbar-inner { min-height: 32px; justify-content: center; text-align: center; }
  .topbar-group { gap: 10px; }
  .topbar-group span:last-child { display: none; }
  .hero { padding: 38px 0 55px; }
  .hero h1 { font-size: 40px; }
  .hero .lead { font-size: 17px; }
  .breadcrumbs { margin-bottom: 20px; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust-item { min-height: 0; display: grid; grid-template-columns: 26px 1fr; column-gap: 10px; align-items: center; }
  .hero-trust-item svg { grid-row: 1 / span 2; margin: 0; }
  .hero-trust-item span { margin-top: 0; }
  .assessment-card { border-radius: 24px; }
  .form-head { padding: 23px 20px 15px; }
  .form-head h2 { font-size: 25px; }
  .assessment-form { padding: 0 20px 24px; }
  .form-section { padding: 17px 0; }
  .region-grid, .form-grid, .passengers-grid { grid-template-columns: 1fr; }
  .region-card { min-height: 82px; }
  .date-panel { grid-template-columns: 1fr; gap: 9px; }
  .date-divider { width: 100%; height: 1px; }
  .form-summary { grid-template-columns: 1fr; }
  .readiness-meter { width: 100%; }
  .readiness-meter b { text-align: left; }
  .trust-strip { margin-top: -17px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-strip-item + .trust-strip-item { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 70px 0; }
  .section-sm { padding: 50px 0; }
  .section-heading { margin-bottom: 30px; }
  .reviews-shell { padding: 28px 20px; border-radius: 24px; }
  .experience-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 370px; padding: 28px 24px; }
  .review-stars { margin-top: 32px; }
  .review-card blockquote { font-size: 27px; }
  .review-card-head { align-items: flex-start; }
  .review-verified { display: none; }
  .reviews-controls { grid-template-columns: 44px 1fr 44px; }
  .reviews-counter { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .destination-card { min-height: 0; padding: 27px 24px; }
  .destination-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 5px; }
  .process-card { display: grid; grid-template-columns: 58px 1fr; column-gap: 15px; text-align: left; padding: 0 0 18px; }
  .process-number { width: 54px; height: 54px; grid-row: 1 / span 2; margin: 0; border-width: 5px; }
  .process-card h3 { align-self: end; }
  .process-card p { margin-top: 2px; }
  .compliance-panel { padding: 31px 24px; }
  .compliance-badge { width: 95px; height: 95px; border-radius: 25px; }
  .compliance-badge svg { width: 52px; height: 52px; }
  .compliance-points { grid-template-columns: 1fr; }
  .faq-list summary { padding: 18px 52px 18px 18px; font-size: 14px; }
  .faq-answer { padding: 0 18px 18px; font-size: 13px; }
  .cta-band { padding: 31px 24px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 50px 0 38px; }
  .footer-main > :nth-child(2) { display: none; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom-links { flex-wrap: wrap; }
  .whatsapp-float { width: 54px; height: 54px; right: 14px; bottom: 14px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
}

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


/* =========================================================
   FORMULÁRIO GUIADO DE ALTA CONVERSÃO — V20260730.1
   ========================================================= */
.wizard-card { min-height: 654px; }
.wizard-head { padding-bottom: 16px; }
.wizard-head h2 { max-width: 500px; }
.wizard-progress { margin-top: 20px; }
.wizard-progress-copy { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 8px; }
.wizard-progress-copy span { color: var(--blue-700); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.wizard-progress-copy strong { color: var(--muted); font-size: 11px; }
.wizard-progress-track { height: 7px; overflow: hidden; border-radius: 999px; background: #e8eef7; }
.wizard-progress-track span { display: block; width: 25%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--orange-500), #ffb94f); transition: width .35s ease; }
.wizard-form { padding-top: 0; }
.wizard-stage { min-height: 330px; }
.wizard-step { animation: wizardFade .26s ease both; }
@keyframes wizardFade { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
.wizard-question { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: start; margin: 2px 0 20px; padding-top: 3px; }
.wizard-question-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--navy-900); box-shadow: 0 9px 20px rgba(5,43,99,.18); font-size: 14px; font-weight: 900; }
.wizard-question h3 { margin: 0; color: var(--navy-900); font-size: 24px; line-height: 1.18; letter-spacing: -.025em; }
.wizard-question p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.travel-choice-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.travel-choice { position: relative; min-width: 0; }
.travel-choice input { position: absolute; opacity: 0; pointer-events: none; }
.travel-choice-card { min-height: 136px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 17px 15px; border: 1.5px solid var(--line); border-radius: 18px; background: #f8fafd; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.travel-choice-card:hover { transform: translateY(-2px); border-color: #91b5e6; background: #fff; }
.travel-choice input:checked + .travel-choice-card { border-color: var(--blue-600); background: var(--blue-100); box-shadow: 0 0 0 4px rgba(22,103,206,.08); }
.travel-choice-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 14px; border-radius: 14px; color: var(--blue-700); background: #fff; box-shadow: 0 7px 18px rgba(13,87,184,.10); }
.travel-choice-icon svg { width: 24px; height: 24px; fill: currentColor; }
.travel-choice-card strong { color: var(--navy-900); font-size: 15px; line-height: 1.3; }
.travel-choice-card > span:last-child { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.wizard-reassurance { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 12px 14px; border-radius: 13px; color: var(--muted); background: var(--surface-soft); font-size: 10px; line-height: 1.45; }
.wizard-reassurance svg { width: 20px; height: 20px; flex: 0 0 auto; fill: var(--success); }
.wizard-group-error { display: none; margin-top: 8px; color: var(--danger); font-size: 10px; font-weight: 800; }
.wizard-group-error.is-visible { display: block; }
.wizard-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px 14px; }
.input-with-icon { position: relative; }
.input-with-icon > svg { position: absolute; z-index: 1; left: 14px; top: 50%; width: 20px; height: 20px; transform: translateY(-50%); fill: var(--blue-700); pointer-events: none; }
.input-with-icon input { padding-left: 44px; }
.wizard-fieldset { min-width: 0; margin: 17px 0 0; padding: 0; border: 0; }
.wizard-fieldset legend { width: 100%; margin: 0 0 8px; color: var(--navy-900); font-size: 12px; font-weight: 800; }
.wizard-fieldset.has-error > .field-error { display: block; }
.compact-choice-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.compact-choice { position: relative; min-width: 0; }
.compact-choice input { position: absolute; opacity: 0; pointer-events: none; }
.compact-choice > span { min-height: 67px; display: flex; flex-direction: column; justify-content: center; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 14px; color: var(--ink); background: #fff; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.compact-choice > span:hover { border-color: #8eb3e6; }
.compact-choice input:checked + span { border-color: var(--blue-600); background: var(--blue-100); box-shadow: 0 0 0 3px rgba(22,103,206,.07); }
.compact-choice strong { color: var(--navy-900); font-size: 12px; line-height: 1.3; }
.compact-choice small { margin-top: 2px; color: var(--muted); font-size: 9px; line-height: 1.35; }
.compact-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; padding: 13px; border: 1px solid #d9e5f4; border-radius: 15px; background: #f8fbff; }
.travellers-compact { display: grid; grid-template-columns: 1fr 1.45fr; align-items: center; gap: 16px; margin-top: 16px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-soft); }
.travellers-copy strong { display: block; color: var(--navy-900); font-size: 13px; }
.travellers-copy span { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }
.travellers-counters { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.mini-counter { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 8px 7px 11px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.mini-counter > span strong { display: block; color: var(--navy-900); font-size: 10px; }
.mini-counter > span small { display: block; color: var(--muted); font-size: 8px; }
.mini-counter .counter { grid-template-columns: 30px 32px 30px; height: 36px; border-radius: 10px; }
.mini-counter .counter button { font-size: 17px; }
.mini-counter .counter output { font-size: 11px; }
.stage-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.checklist-fieldset { margin-top: 15px; }
.prepared-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.prepared-choice { position: relative; min-width: 0; }
.prepared-choice input { position: absolute; opacity: 0; pointer-events: none; }
.prepared-choice span { min-height: 49px; display: flex; align-items: center; gap: 9px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 13px; color: #4f6079; background: #fff; font-size: 10px; font-weight: 800; line-height: 1.3; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.prepared-choice svg { width: 18px; height: 18px; flex: 0 0 auto; fill: #7891b1; }
.prepared-choice input:checked + span { color: var(--blue-700); border-color: var(--blue-600); background: var(--blue-100); }
.prepared-choice input:checked + span svg { fill: var(--blue-700); }
.attention-check { position: relative; display: block; margin-top: 12px; }
.attention-check input { position: absolute; opacity: 0; pointer-events: none; }
.attention-check span { min-height: 54px; display: block; padding: 10px 12px 10px 42px; border: 1px dashed #c9d6e7; border-radius: 13px; color: var(--muted); background: #fbfcfe; }
.attention-check span::before { content: ""; position: absolute; left: 13px; top: 50%; width: 17px; height: 17px; transform: translateY(-50%); border: 1.5px solid #9cafc7; border-radius: 5px; background: #fff; }
.attention-check input:checked + span { border-style: solid; border-color: #e5a442; background: #fff8ec; }
.attention-check input:checked + span::before { border-color: var(--orange-500); background: var(--orange-500); box-shadow: inset 0 0 0 4px #fff; }
.attention-check strong { display: block; color: var(--navy-900); font-size: 10px; }
.attention-check small { display: block; margin-top: 2px; font-size: 8.5px; line-height: 1.35; }
.readiness-compact { margin-top: 12px; padding: 11px 13px; border: 1px solid #f1d4aa; border-radius: 14px; background: linear-gradient(135deg,#fff8ee,#fffdf9); }
.readiness-compact > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.readiness-compact span { color: #8c5c1f; font-size: 10px; font-weight: 800; }
.readiness-compact strong { color: #8c5200; font-size: 13px; }
.readiness-compact .meter-track { margin-top: 6px; }
.readiness-compact small { display: block; margin-top: 5px; color: #92744e; font-size: 8px; line-height: 1.35; }
.service-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.service-choice { position: relative; min-width: 0; }
.service-choice input { position: absolute; opacity: 0; pointer-events: none; }
.service-choice span { min-height: 61px; display: flex; align-items: center; gap: 8px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 14px; background: #fff; font-size: 16px; }
.service-choice svg { width: 20px; height: 20px; flex: 0 0 auto; fill: var(--blue-600); }
.service-choice strong { color: var(--navy-900); font-size: 10px; }
.service-choice input:checked + span { border-color: var(--blue-600); background: var(--blue-100); box-shadow: 0 0 0 3px rgba(22,103,206,.07); }
.priority-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.national-no-score { display: flex; align-items: center; gap: 10px; margin-top: 17px; padding: 13px 14px; border: 1px solid #cbe7dc; border-radius: 14px; color: #286b53; background: #f0faf6; font-size: 9px; }
.national-no-score svg { width: 22px; height: 22px; flex: 0 0 auto; fill: var(--success); }
.national-no-score strong { display: block; color: #156044; font-size: 10px; }
.wizard-summary { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin: -3px 0 17px; }
.summary-pill { min-width: 0; padding: 10px 11px; border: 1px solid #dce6f3; border-radius: 13px; background: #f7faff; }
.summary-pill span { display: block; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.summary-pill strong { display: block; overflow: hidden; margin-top: 2px; color: var(--navy-900); font-size: 10px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.contact-fields { margin-top: 2px; }
.optional-details { margin-top: 13px; border: 1px solid var(--line); border-radius: 14px; background: #fbfcfe; }
.optional-details summary { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 13px; color: var(--navy-900); font-size: 10px; font-weight: 800; cursor: pointer; list-style: none; }
.optional-details summary::-webkit-details-marker { display: none; }
.optional-details summary::after { content: "+"; color: var(--blue-700); font-size: 18px; line-height: 1; }
.optional-details[open] summary::after { content: "−"; }
.optional-details summary span { color: var(--muted); font-size: 8px; font-weight: 700; }
.optional-details-body { display: grid; grid-template-columns: 1fr 1.25fr; gap: 11px; padding: 0 13px 13px; }
.optional-details-body textarea { min-height: 50px; }
.wizard-footer { display: flex; align-items: center; justify-content: flex-end; gap: 10px; padding-top: 17px; border-top: 1px solid #e9eef6; }
.wizard-back, .wizard-next { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 14px; padding: 11px 17px; font-size: 12px; font-weight: 900; transition: transform .2s ease, background .2s ease, opacity .2s ease; }
.wizard-back { margin-right: auto; color: var(--navy-900); border: 1px solid var(--line); background: #fff; }
.wizard-next { min-width: 150px; color: #fff; border: 0; background: var(--orange-500); box-shadow: 0 12px 26px rgba(242,138,0,.22); }
.wizard-back svg, .wizard-next svg { width: 18px; height: 18px; fill: currentColor; }
.wizard-back:hover, .wizard-next:hover { transform: translateY(-1px); }
.wizard-next:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.wizard-submit { width: auto; min-width: 260px; min-height: 56px; padding-inline: 22px; }
.wizard-alert { margin: 0 0 2px; }
.wizard-form .consent-row { margin: 13px 0 0; }
.wizard-form .form-note { margin-top: 9px; }

@media (max-width: 1100px) {
  .wizard-card { min-height: auto; }
  .wizard-stage { min-height: 410px; }
}

@media (max-width: 720px) {
  .wizard-head { padding: 21px 18px 14px; }
  .wizard-head h2 { font-size: 23px; }
  .wizard-form { padding: 0 18px 21px; }
  .wizard-stage { min-height: 0; }
  .wizard-question { grid-template-columns: 36px 1fr; gap: 11px; margin-bottom: 16px; }
  .wizard-question-number { width: 36px; height: 36px; border-radius: 12px; }
  .wizard-question h3 { font-size: 20px; }
  .travel-choice-grid { grid-template-columns: 1fr; gap: 9px; }
  .travel-choice-card { min-height: 76px; flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; padding: 12px 14px; }
  .travel-choice-icon { width: 42px; height: 42px; flex: 0 0 auto; margin: 0; }
  .travel-choice-card strong { font-size: 14px; }
  .travel-choice-card > span:last-child { margin: 2px 0 0; }
  .wizard-fields, .compact-dates, .contact-fields, .optional-details-body { grid-template-columns: 1fr; }
  .compact-choice-grid { grid-template-columns: 1fr; gap: 7px; }
  .timing-grid, .stage-grid, .priority-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 6px; }
  .compact-choice > span { min-height: 56px; }
  .timing-grid .compact-choice > span, .stage-grid .compact-choice > span, .priority-grid .compact-choice > span { min-height: 66px; align-items: center; padding: 8px 6px; text-align: center; }
  .timing-grid .compact-choice strong, .stage-grid .compact-choice strong, .priority-grid .compact-choice strong { font-size: 10px; }
  .timing-grid .compact-choice small, .stage-grid .compact-choice small, .priority-grid .compact-choice small { font-size: 7.5px; }
  .travellers-compact { grid-template-columns: 1fr; gap: 10px; }
  .prepared-grid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .prepared-choice span { min-height: 57px; align-items: flex-start; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .wizard-summary { grid-template-columns: 1fr 1fr; }
  .wizard-summary .summary-pill:last-child { grid-column: 1 / -1; }
  .wizard-footer { position: sticky; z-index: 4; bottom: 0; margin: 12px -18px -4px; padding: 12px 18px 4px; background: linear-gradient(to top,#fff 80%,rgba(255,255,255,0)); }
  .wizard-next, .wizard-submit { flex: 1 1 auto; min-width: 0; }
  .wizard-back { flex: 0 0 auto; padding-inline: 13px; }
  .wizard-submit { font-size: 14px; }
}

@media (max-width: 390px) {
  .wizard-summary { grid-template-columns: 1fr; }
  .wizard-summary .summary-pill:last-child { grid-column: auto; }
  .travellers-counters { grid-template-columns: 1fr; }
  .wizard-progress-copy strong { display: none; }
}


#avaliacao { scroll-margin-top: 102px; }
@media (max-width: 640px) { #avaliacao { scroll-margin-top: 82px; } .whatsapp-float { display: none; } }
@media (max-width: 350px) { .prepared-grid, .service-grid { grid-template-columns: 1fr; } }
