:root {
  --brand-navy: #042b66;
  --brand-blue: #0045ad;
  --brand-orange: #fc9f14;
  --brand-orange-dark: #dc8000;
  --ink: #13243d;
  --muted: #5e6b7d;
  --line: #d9e1ec;
  --line-strong: #becadc;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #eef4ff;
  --danger: #b42318;
  --danger-soft: #fff2f0;
  --success: #167a4a;
  --success-soft: #ecf8f1;
  --shadow-sm: 0 8px 24px rgba(4, 43, 102, 0.08);
  --shadow-lg: 0 24px 64px rgba(4, 43, 102, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-display: "Odin Rounded", "Comfortaa", Arial, sans-serif;
  --font-body: "Comfortaa", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.cookie-open {
  padding-bottom: 116px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--brand-navy);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(252, 159, 20, 0.65);
  outline-offset: 3px;
}

/* Utility bar */
.utility-bar {
  color: #fff;
  background: var(--brand-navy);
  font-size: 12px;
}

.utility-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.utility-bar__trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.utility-bar__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(252, 159, 20, 0.16);
}

.utility-bar__contacts {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.utility-bar__contacts a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 160ms ease;
}

.utility-bar__contacts a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.utility-bar__contacts span {
  color: rgba(255, 255, 255, 0.7);
}

.utility-bar__contacts strong {
  font-size: 12px;
  letter-spacing: 0.01em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(217, 225, 236, 0.86);
  transition: box-shadow 160ms ease, background-color 160ms ease;
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(4, 43, 102, 0.08);
}

.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 196px;
  height: auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__actions > span {
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Buttons */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: #fff;
  background: var(--brand-blue);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover {
  background: var(--brand-navy);
  box-shadow: 0 10px 24px rgba(4, 43, 102, 0.18);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 13px;
}

.button--primary {
  min-height: 56px;
  color: var(--brand-navy);
  background: var(--brand-orange);
  border-color: rgba(4, 43, 102, 0.08);
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(252, 159, 20, 0.22);
}

.button--primary:hover {
  color: #fff;
  background: var(--brand-orange-dark);
  box-shadow: 0 14px 30px rgba(220, 128, 0, 0.28);
}

.button--primary svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.button--full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 66px 0 72px;
  background:
    linear-gradient(90deg, rgba(238, 244, 255, 0.72) 0%, rgba(255, 255, 255, 0.94) 48%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(4, 43, 102, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 43, 102, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 64%);
}

.hero__accent {
  position: absolute;
  z-index: -2;
  pointer-events: none;
}

.hero__accent--orange {
  width: 250px;
  height: 250px;
  top: -150px;
  right: 8%;
  border: 38px solid rgba(252, 159, 20, 0.19);
  border-radius: 50%;
}

.hero__accent--blue {
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -250px;
  background: rgba(0, 69, 173, 0.07);
  transform: rotate(28deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 84px);
}

.hero__copy {
  max-width: 520px;
}

.eyebrow,
.form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before,
.form-kicker::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--brand-orange);
}

.hero h1 {
  max-width: 520px;
  margin: 20px 0 16px;
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero__lead {
  max-width: 540px;
  margin: 0;
  color: #42536b;
  font-size: 18px;
  line-height: 1.65;
}

.hero__contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hero__contact-card > div {
  min-width: 0;
  padding: 17px 19px;
}

.hero__contact-card > div + div {
  border-left: 1px solid var(--line);
}

.hero__contact-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__contact-card a {
  display: inline-block;
  color: var(--brand-navy);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.hero__contact-card a:hover {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__trust-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #45556d;
  font-size: 14px;
}

.hero__trust-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  fill: var(--brand-blue);
}

.hero__trust-list strong {
  color: var(--brand-navy);
  font-weight: 700;
}

.hero__condition {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Quote form */
.quote-wrap {
  position: relative;
  min-width: 0;
}

.quote-card {
  position: relative;
  width: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(190, 202, 220, 0.85);
  border-top: 5px solid var(--brand-orange);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.quote-card__header {
  margin-bottom: 22px;
}

.quote-card__header h2 {
  margin: 10px 0 4px;
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.quote-card__header p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trip-type,
.passengers-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.trip-type {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
  padding: 5px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.trip-type legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.choice-pill {
  position: relative;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.choice-pill span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  color: #536278;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.choice-pill input:checked + span {
  color: var(--brand-navy);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: 0 3px 10px rgba(4, 43, 102, 0.08);
}

.choice-pill input:focus-visible + span {
  outline: 3px solid rgba(252, 159, 20, 0.55);
  outline-offset: 2px;
}

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.field {
  position: relative;
  min-width: 0;
}

.field > label,
.passengers-fieldset > legend {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 700;
}

.field > label span {
  color: #7c8999;
  font-size: 10px;
  font-weight: 500;
}

.field input[type="text"],
.field input[type="date"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.field input::placeholder {
  color: #8a96a6;
  opacity: 1;
}

.field input:hover {
  border-color: #9eacc0;
}

.field input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 69, 173, 0.1);
}

.field input.is-invalid,
.input-shell:has(input.is-invalid) {
  border-color: var(--danger);
  background: var(--danger-soft);
}

.input-shell:has(input.is-invalid) {
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.input-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 50px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.input-shell:hover {
  border-color: #9eacc0;
}

.input-shell:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 69, 173, 0.1);
}

.input-shell > svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-left: 13px;
  fill: var(--brand-blue);
}

.input-shell input[type="text"] {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.input-shell input[type="text"]:focus {
  border: 0;
  box-shadow: none;
}

.input-shell__loader {
  display: none;
}

.field-hint {
  display: block;
  min-height: 17px;
  margin-top: 5px;
  color: #778497;
  font-size: 10px;
  line-height: 1.35;
}

.swap-route {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 29px;
  color: var(--brand-blue);
  background: var(--surface-blue);
  border: 1px solid #cad8ef;
  border-radius: 50%;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.swap-route:hover {
  color: #fff;
  background: var(--brand-blue);
  transform: rotate(180deg);
}

.swap-route svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.passengers-fieldset {
  margin-top: 20px;
}

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

.passenger-control {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.passenger-control__label {
  min-width: 0;
}

.passenger-control__label strong,
.passenger-control__label span {
  display: block;
}

.passenger-control__label strong {
  color: var(--brand-navy);
  font-size: 12px;
}

.passenger-control__label span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  white-space: nowrap;
}

.stepper {
  display: grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
}

.stepper button {
  width: 32px;
  height: 34px;
  color: var(--brand-blue);
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color 140ms ease, background-color 140ms ease;
}

.stepper button:hover:not(:disabled) {
  color: #fff;
  background: var(--brand-blue);
}

.stepper button:disabled {
  color: #b7c0cc;
  cursor: not-allowed;
}

.stepper input {
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--brand-navy);
  background: #fff;
  border: 0;
  border-inline: 1px solid var(--line);
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  -moz-appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.child-ages {
  margin-top: 16px;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.child-ages__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.child-ages__header strong {
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 700;
}

.child-ages__header span,
.child-ages__hint {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.child-ages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.child-age-field {
  min-width: 0;
}

.child-age-field:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.child-age-field label {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-navy);
  font-size: 10px;
  font-weight: 700;
}

.child-age-field select {
  width: 100%;
  min-height: 44px;
  padding: 10px 36px 10px 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: auto;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.child-age-field select:hover {
  border-color: #9eacc0;
}

.child-age-field select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 69, 173, 0.1);
}

.child-age-field select.is-invalid {
  border-color: var(--danger);
  background: var(--danger-soft);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.child-ages__hint {
  display: block;
  margin-top: 9px;
}

.form-feedback {
  min-height: 18px;
  margin-top: 13px;
  color: var(--danger);
  font-size: 11px;
  font-weight: 600;
}

.form-feedback.is-success {
  padding: 10px 12px;
  color: var(--success);
  background: var(--success-soft);
  border: 1px solid rgba(22, 122, 74, 0.18);
  border-radius: var(--radius-sm);
}

.privacy-note {
  margin: 11px 0 0;
  color: #778497;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.privacy-note a {
  color: var(--brand-blue);
  font-weight: 700;
  text-underline-offset: 2px;
}

/* Autocomplete */
.location-field {
  z-index: 2;
}

.location-field:focus-within {
  z-index: 40;
}

.location-options {
  position: absolute;
  top: 78px;
  left: 0;
  z-index: 120;
  width: min(430px, calc(100vw - 32px));
  max-height: 318px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(4, 43, 102, 0.2);
  scrollbar-width: thin;
  scrollbar-color: #aab7c9 transparent;
}

.route-grid > .location-field:last-child .location-options {
  right: 0;
  left: auto;
}

.location-options::before {
  content: "";
  position: sticky;
  top: 0;
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
  z-index: 1;
}

.location-option {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-bottom: 1px solid #edf1f6;
  border-radius: 0;
  text-align: left;
  cursor: pointer;
}

.location-option:last-child {
  border-bottom: 0;
}

.location-option:hover,
.location-option.is-active,
.location-option[aria-selected="true"] {
  background: var(--surface-blue);
}

.location-option__place {
  min-width: 0;
}

.location-option__place strong,
.location-option__place span,
.location-option__meta {
  display: block;
}

.location-option__place strong {
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-option__place span {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-option__code {
  align-self: start;
  min-width: 48px;
  padding: 5px 7px;
  color: var(--brand-navy);
  background: #fff;
  border: 1px solid #cdd8e8;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
}

.location-option__meta {
  grid-column: 1 / -1;
  color: #748196;
  font-size: 9px;
  line-height: 1.4;
}

.location-options__empty {
  padding: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.location-options__empty strong {
  display: block;
  margin-bottom: 3px;
  color: var(--brand-navy);
  font-size: 12px;
}


/* Oferta de bloqueio selecionada no formulário */
.selected-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 2px;
  padding: 13px 14px;
  background: var(--surface-blue);
  border: 1px solid #c7d7ee;
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-sm);
}

.selected-block__content {
  min-width: 0;
}

.selected-block__content span,
.selected-block__content strong,
.selected-block__content small {
  display: block;
}

.selected-block__content span {
  color: var(--brand-blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-block__content strong {
  margin-top: 3px;
  color: var(--brand-navy);
  font-size: 12px;
  line-height: 1.35;
}

.selected-block__content small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.selected-block > button {
  flex: 0 0 auto;
  padding: 6px 2px;
  color: var(--brand-blue);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.selected-block > button:hover {
  color: var(--brand-navy);
}

/* Bloqueios aéreos em destaque */
.featured-blocks {
  padding: 72px 0 78px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

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

.section-heading h2 {
  margin: 12px 0 0;
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.block-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.block-card:hover {
  border-color: #c4d2e7;
  box-shadow: 0 18px 42px rgba(4, 43, 102, 0.13);
  transform: translateY(-3px);
}

.block-card.is-selected {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 69, 173, 0.1), 0 18px 42px rgba(4, 43, 102, 0.14);
}

.block-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 43, 102, 0.96), rgba(0, 69, 173, 0.78)),
    var(--brand-blue);
  border-bottom: 1px solid rgba(4, 43, 102, 0.08);
}

.block-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(4, 43, 102, 0.22) 100%);
}

.block-card__media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.block-card:hover .block-card__media img {
  transform: scale(1.035);
}

.block-card__media-fallback {
  position: relative;
  z-index: 0;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.block-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.block-card__topline {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.block-card__airline,
.block-card__availability {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.block-card__airline {
  padding: 6px 8px;
  color: var(--brand-navy);
  background: var(--surface-blue);
  letter-spacing: 0.05em;
}

.block-card__availability {
  gap: 5px;
  color: #3f536f;
}

.block-card__availability::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-orange);
}

.block-card__route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.block-card__airport {
  min-width: 0;
}

.block-card__airport--destination {
  text-align: right;
}

.block-card__airport strong,
.block-card__airport small {
  display: block;
}

.block-card__airport strong {
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.025em;
}

.block-card__airport small {
  margin-top: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.block-card__route-line {
  position: relative;
  height: 1px;
  background: #c5d2e4;
}

.block-card__route-line::before,
.block-card__route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  background: #fff;
  border: 1px solid var(--brand-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.block-card__route-line::before {
  left: 0;
}

.block-card__route-line::after {
  right: 0;
}

.block-card__route-line svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 17px;
  padding: 2px;
  color: var(--brand-blue);
  background: #fff;
  fill: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.block-card__period {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 21px;
  padding: 12px 0;
  border-top: 1px solid #edf1f6;
  border-bottom: 1px solid #edf1f6;
}

.block-card__period span {
  color: var(--brand-navy);
  font-size: 10px;
  font-weight: 700;
}

.block-card__period small {
  color: var(--muted);
  font-size: 9px;
  white-space: nowrap;
}

.block-card__price {
  margin-top: 17px;
}

.block-card__price span,
.block-card__price strong,
.block-card__price small {
  display: block;
}

.block-card__price span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.block-card__price strong {
  margin-top: 2px;
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.15;
}

.block-card__price small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.button--block {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  padding: 10px 14px;
  font-size: 11px;
}

.block-card.is-selected .button--block {
  color: var(--brand-navy);
  background: var(--brand-orange);
}

.featured-blocks__disclaimer {
  max-width: 920px;
  margin: 19px 0 0;
  color: #6e7c90;
  font-size: 9px;
  line-height: 1.6;
}

.featured-blocks.is-empty {
  display: none;
}

/* Trust strip */
.trust-strip {
  color: #fff;
  background: var(--brand-blue);
  border-top: 5px solid var(--brand-orange);
}

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

.trust-strip article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 27px 24px;
}

.trust-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-strip__number {
  flex: 0 0 auto;
  color: var(--brand-orange);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 13px;
}

.trust-strip article div span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.45;
}

/* Footer */
.site-footer {
  background: #fff;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: start;
  padding-block: 42px;
}

.site-footer__brand img {
  width: 184px;
  height: auto;
}

.site-footer__brand p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer__contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.site-footer__contacts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-navy);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__contacts a,
.footer-cookie-button {
  display: block;
  margin-top: 4px;
  color: #58667a;
  background: none;
  padding: 0;
  font-size: 11px;
  line-height: 1.55;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.site-footer__contacts a:hover,
.footer-cookie-button:hover {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--brand-navy);
  box-shadow: 0 0 0 100vmax var(--brand-navy);
  clip-path: inset(0 -100vmax);
  font-size: 10px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 500;
  max-width: 940px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-left: 5px solid var(--brand-orange);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 64px rgba(4, 43, 102, 0.22);
}

.cookie-banner__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-navy);
  font-size: 13px;
}

.cookie-banner__content p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.button--cookie-primary,
.button--cookie-secondary {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 11px;
}

.button--cookie-primary {
  color: var(--brand-navy);
  background: var(--brand-orange);
}

.button--cookie-secondary {
  color: var(--brand-navy);
  background: #fff;
  border-color: var(--line-strong);
}

.button--cookie-secondary:hover {
  color: #fff;
  background: var(--brand-navy);
}

.mobile-sticky-cta {
  display: none;
}

.noscript-notice {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 999;
  padding: 14px;
  color: #fff;
  background: var(--brand-navy);
  border-radius: var(--radius-sm);
  font-size: 12px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1040px) {
  .featured-blocks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(490px, 1.18fr);
    gap: 38px;
  }

  .quote-card {
    padding: 26px;
  }

  .hero__contact-card a {
    font-size: 14px;
  }

  .site-footer__main {
    gap: 36px;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 52px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero__copy {
    max-width: 680px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__contact-card,
  .hero__trust-list {
    max-width: 600px;
    margin-inline: auto;
  }

  .hero__contact-card {
    margin-top: 28px;
  }

  .hero__trust-list {
    margin-top: 26px;
    text-align: left;
  }

  .quote-wrap {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    padding: 20px 24px;
  }

  .trust-strip article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .featured-blocks {
    padding: 56px 0 60px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 23px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  body.cookie-open {
    padding-bottom: 190px;
  }

  .container {
    width: min(100% - 30px, 680px);
  }

  .utility-bar__inner {
    min-height: 48px;
  }

  .utility-bar__trust {
    font-size: 10px;
  }

  .utility-bar__contacts a {
    min-height: 48px;
    padding-inline: 12px;
  }

  .utility-bar__contacts span {
    display: none;
  }

  .utility-bar__contacts strong {
    font-size: 10px;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 168px;
  }

  .site-header__actions > span {
    display: none;
  }

  .hero {
    padding: 44px 0 56px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 50px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .route-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .swap-route {
    justify-self: center;
    margin: 4px 0 10px;
    transform: rotate(90deg);
  }

  .swap-route:hover {
    transform: rotate(270deg);
  }

  .route-grid > .location-field:last-child .location-options,
  .location-options {
    right: auto;
    left: 0;
    width: 100%;
  }

  .location-options {
    max-height: 286px;
  }

  .date-grid,
  .passenger-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer__contacts > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    min-height: 70px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .button {
    flex: 1 1 0;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 200;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    background: var(--brand-orange);
    border: 1px solid rgba(4, 43, 102, 0.12);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(4, 43, 102, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .mobile-sticky-cta.is-visible {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.cookie-open .mobile-sticky-cta {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .featured-blocks__grid {
    grid-template-columns: 1fr;
  }

  .block-card {
    padding: 0;
  }

  .block-card__body {
    padding: 18px 19px 19px;
  }

  .selected-block {
    align-items: flex-start;
  }

  .container {
    width: calc(100% - 24px);
  }

  .utility-bar__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-top: 8px;
  }

  .utility-bar__trust {
    justify-content: center;
    padding-bottom: 7px;
  }

  .utility-bar__contacts {
    width: calc(100% + 24px);
    margin-left: -12px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .utility-bar__contacts a {
    flex: 1 1 0;
    justify-content: center;
    border-left: 0;
  }

  .utility-bar__contacts a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .brand img {
    width: 150px;
  }

  .button--small {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero__copy {
    text-align: left;
  }

  .eyebrow {
    justify-content: flex-start;
  }

  .hero h1 {
    margin-inline: 0;
    font-size: 39px;
  }

  .hero__lead {
    margin-inline: 0;
  }

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

  .hero__contact-card > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero__contact-card a {
    font-size: 16px;
  }

  .quote-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .quote-card__header h2 {
    font-size: 25px;
  }

  .trip-type {
    gap: 5px;
  }

  .choice-pill span {
    padding-inline: 8px;
    font-size: 11px;
  }

  .passenger-control {
    padding: 11px;
  }

  .location-option {
    padding: 13px 12px;
  }

  .site-footer__main {
    padding-block: 34px;
  }

  .site-footer__contacts {
    grid-template-columns: 1fr;
  }

  .site-footer__contacts > div:last-child {
    grid-column: auto;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Experiência móvel de alta conversão e atendimento presencial — v3.4.1 */
.mobile-quote-trust,
.featured-blocks__mobile-hint {
  display: none;
}

.site-footer__presence {
  color: #718096;
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.site-footer__presence .container {
  padding-block: 11px;
}

.site-footer__presence strong {
  color: var(--brand-navy);
  font-weight: 700;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .utility-bar {
    display: none;
  }

  .site-header__inner {
    min-height: 58px;
    gap: 12px;
  }

  .brand img {
    width: 140px;
  }

  .site-header__actions {
    gap: 0;
  }

  .site-header__actions .button--small {
    min-height: 38px;
    padding: 8px 12px;
    color: var(--brand-navy);
    background: var(--brand-orange);
    border-color: rgba(4, 43, 102, 0.1);
    font-size: 11px;
    box-shadow: none;
  }

  .site-header__actions .button--small:hover {
    color: #fff;
    background: var(--brand-orange-dark);
  }

  .hero {
    overflow: visible;
    padding: 10px 0 28px;
    background: var(--surface-soft);
  }

  .hero::before,
  .hero__accent {
    display: none;
  }

  .hero__grid {
    gap: 0;
  }

  .quote-wrap {
    order: -1;
    width: 100%;
    scroll-margin-top: 70px;
  }

  .hero__copy {
    display: none;
  }

  .quote-card {
    padding: 17px 14px 15px;
    border-top-width: 4px;
    border-radius: 13px;
    box-shadow: 0 12px 34px rgba(4, 43, 102, 0.13);
  }

  .quote-card__header {
    margin-bottom: 12px;
  }

  .quote-card__header .form-kicker {
    display: none;
  }

  .quote-card__header h2 {
    margin: 0 0 2px;
    font-size: 23px;
  }

  .quote-card__header p {
    font-size: 10px;
    line-height: 1.45;
  }

  .mobile-quote-trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 12px;
    padding: 8px 9px;
    color: #536278;
    background: var(--surface-blue);
    border: 1px solid #d4e0f1;
    border-radius: 8px;
    font-size: 8.5px;
    line-height: 1.35;
  }

  .mobile-quote-trust a {
    flex: 0 0 auto;
    color: var(--brand-navy);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }

  .selected-block {
    margin: 10px 0 2px;
    padding: 11px 12px;
  }

  .trip-type {
    gap: 4px;
    margin-bottom: 13px;
    padding: 4px;
  }

  .choice-pill span {
    min-height: 42px;
    padding: 8px;
    font-size: 12px;
  }

  .route-grid {
    gap: 0;
  }

  .field > label,
  .passengers-fieldset > legend {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .field input[type="text"],
  .field input[type="date"],
  .input-shell {
    min-height: 50px;
  }

  .field input[type="text"],
  .input-shell input[type="text"] {
    font-size: 16px;
  }

  .field input[type="date"] {
    padding: 9px 8px;
    font-size: 14px;
  }

  .field-hint {
    display: none;
  }

  .swap-route {
    width: 38px;
    height: 38px;
    margin: 3px 0 7px;
  }

  .date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 11px;
  }

  .passengers-fieldset {
    margin-top: 13px;
  }

  .passenger-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .passenger-control {
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    min-height: 0;
    padding: 9px;
  }

  .passenger-control__label {
    text-align: center;
  }

  .passenger-control__label span {
    font-size: 8px;
    white-space: normal;
  }

  .stepper {
    width: 100%;
    grid-template-columns: 36px minmax(34px, 1fr) 36px;
  }

  .stepper button {
    width: 36px;
    height: 38px;
  }

  .stepper input {
    width: 100%;
    height: 38px;
    font-size: 16px;
  }

  .child-ages {
    margin-top: 11px;
    padding: 11px;
  }

  .child-ages__header {
    display: block;
    margin-bottom: 8px;
  }

  .child-ages__header strong {
    display: block;
    margin-bottom: 2px;
  }

  .child-ages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .child-age-field select {
    min-height: 46px;
    font-size: 16px;
  }

  .form-feedback {
    min-height: 12px;
    margin-top: 7px;
  }

  .button--primary {
    min-height: 54px;
    font-size: 14px;
  }

  .privacy-note {
    margin-top: 7px;
    font-size: 8px;
    line-height: 1.45;
  }

  .trust-strip {
    display: none;
  }

  .featured-blocks {
    padding: 30px 0 36px;
  }

  .section-heading {
    gap: 5px;
    margin-bottom: 5px;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .section-heading h2 {
    margin-top: 6px;
    font-size: 27px;
  }

  .section-heading > p {
    max-width: 100%;
    margin: 0;
    font-size: 10px;
    line-height: 1.45;
  }

  .featured-blocks__mobile-hint {
    display: block;
    margin: 8px 0 11px;
    color: #6d7b8f;
    font-size: 8.5px;
  }

  .featured-blocks__grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -15px;
    padding: 1px 15px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .featured-blocks__grid::-webkit-scrollbar {
    display: none;
  }

  .block-card {
    flex: 0 0 min(82vw, 318px);
    scroll-snap-align: start;
  }

  .block-card__media {
    aspect-ratio: 16 / 9;
  }

  .block-card__body {
    padding: 15px 16px 16px;
  }

  .block-card__route {
    margin-top: 15px;
  }

  .block-card__period {
    margin-top: 15px;
    padding: 10px 0;
  }

  .block-card__price {
    margin-top: 12px;
  }

  .block-card__price strong {
    font-size: 25px;
  }

  .button--block {
    min-height: 46px;
    margin-top: 13px;
    font-size: 12px;
  }

  .featured-blocks__disclaimer {
    margin-top: 10px;
    font-size: 8px;
    line-height: 1.5;
  }

  .site-footer__main {
    gap: 22px;
    padding-block: 27px;
  }

  .site-footer__brand img {
    width: 150px;
  }

  .site-footer__brand p {
    margin-top: 8px;
    font-size: 10px;
  }

  .site-footer__contacts {
    gap: 18px;
  }

  .site-footer__presence {
    font-size: 9px;
  }

  .site-footer__presence .container {
    padding-block: 9px;
  }

  .site-footer__bottom {
    font-size: 9px;
  }

  .mobile-sticky-cta {
    min-height: 54px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 132px;
  }

  .site-header__actions .button--small {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .featured-blocks__grid {
    display: flex;
    grid-template-columns: none;
    margin-inline: -12px;
    padding-inline: 12px;
    scroll-padding-inline: 12px;
  }

  .block-card {
    flex-basis: min(84vw, 310px);
  }

  .site-footer__contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .site-footer__contacts > div:last-child {
    grid-column: 1 / -1;
  }
}

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

  .mobile-quote-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

/* Calendário unificado de datas — v3.6.1 */
.date-picker-field {
  position: relative;
  margin-top: 18px;
}

.date-picker-field__label {
  display: block;
  margin-bottom: 7px;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 700;
}

.date-picker-field__label span {
  color: #7c8999;
  font-size: 10px;
  font-weight: 500;
}

.date-picker-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  min-height: 66px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.date-picker-trigger:hover {
  border-color: #9eacc0;
}

.date-picker-trigger:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 69, 173, 0.1);
}

.date-picker-trigger.is-invalid {
  border-color: var(--danger);
  background: var(--danger-soft);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.date-picker-segment.is-invalid {
  background: rgba(180, 35, 24, 0.05);
}

.date-picker-trigger.is-oneway {
  grid-template-columns: minmax(0, 1fr);
}

.date-picker-segment {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 13px;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  transition: background-color 150ms ease;
}

.date-picker-segment:hover {
  background: var(--surface-blue);
}

.date-picker-segment:focus-visible {
  position: relative;
  z-index: 2;
  outline-offset: -4px;
}

.date-picker-segment__label {
  color: var(--brand-blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.date-picker-segment strong {
  overflow: hidden;
  color: #728095;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.date-picker-segment.is-filled strong {
  color: var(--brand-navy);
  font-weight: 700;
}

.date-picker-segment small {
  overflow: hidden;
  color: #8490a0;
  font-size: 9px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.date-picker-trigger__divider {
  width: 1px;
  align-self: stretch;
  margin-block: 10px;
  background: var(--line);
}

.date-picker-hint {
  min-height: 17px;
}

body.calendar-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.flight-calendar {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 24px;
}

.flight-calendar__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 31, 70, 0.62);
  backdrop-filter: blur(3px);
}

.flight-calendar__panel {
  position: relative;
  width: min(880px, 100%);
  max-height: min(760px, calc(100dvh - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(190, 202, 220, 0.9);
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(1, 24, 59, 0.34);
}

.flight-calendar__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px 15px;
  border-bottom: 1px solid var(--line);
}

.flight-calendar__kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.flight-calendar__header h3 {
  margin: 0;
  color: var(--brand-navy);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.flight-calendar__header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.flight-calendar__close,
.flight-calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--brand-navy);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.flight-calendar__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.flight-calendar__close:hover,
.flight-calendar__nav:hover:not(:disabled) {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.flight-calendar__close svg,
.flight-calendar__nav svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.flight-calendar__toolbar {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.flight-calendar__nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.flight-calendar__nav:disabled {
  color: #a9b3c1;
  background: #f6f8fb;
  cursor: not-allowed;
  opacity: 0.62;
}

.flight-calendar__selection {
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flight-calendar__months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 350px;
  padding: 20px 24px 24px;
  overflow: auto;
  overscroll-behavior: contain;
}

.flight-calendar__month {
  min-width: 0;
  padding-inline: 18px;
}

.flight-calendar__month + .flight-calendar__month {
  border-left: 1px solid var(--line);
}

.flight-calendar__month h4 {
  margin: 0 0 14px;
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.flight-calendar__weekdays,
.flight-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.flight-calendar__weekdays {
  margin-bottom: 7px;
}

.flight-calendar__weekdays abbr {
  color: #7a8798;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.flight-calendar__days {
  row-gap: 4px;
}

.flight-calendar__day,
.flight-calendar__day-placeholder {
  aspect-ratio: 1 / 1;
  min-width: 0;
}

.flight-calendar__day {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  color: #26374f;
  background: transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  isolation: isolate;
  transition: color 120ms ease, background-color 120ms ease, transform 120ms ease;
}

.flight-calendar__day span {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
}

.flight-calendar__day:hover:not(:disabled) span {
  color: var(--brand-navy);
  background: var(--surface-blue);
  border-color: #bed0ec;
}

.flight-calendar__day.is-in-range,
.flight-calendar__day.is-range-start,
.flight-calendar__day.is-range-end {
  background: #eaf1ff;
  border-radius: 0;
}

.flight-calendar__day.is-range-start {
  border-radius: 9px 0 0 9px;
}

.flight-calendar__day.is-range-end {
  border-radius: 0 9px 9px 0;
}

.flight-calendar__day.is-departure span,
.flight-calendar__day.is-return span {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 5px 14px rgba(0, 69, 173, 0.22);
}

.flight-calendar__day.is-departure:hover:not(:disabled) span,
.flight-calendar__day.is-return:hover:not(:disabled) span {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.flight-calendar__day.is-departure.is-return {
  border-radius: 9px;
}

.flight-calendar__day.is-today:not(.is-departure):not(.is-return) span {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.flight-calendar__day:disabled {
  color: #bcc4cf;
  cursor: not-allowed;
  text-decoration: line-through;
}

.flight-calendar__day:focus-visible {
  z-index: 3;
  outline: 3px solid rgba(252, 159, 20, 0.72);
  outline-offset: -2px;
}

.flight-calendar__footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 13px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.flight-calendar__clear {
  min-height: 42px;
  padding: 8px 3px;
  color: var(--brand-blue);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flight-calendar__clear:disabled {
  color: #9aa5b4;
  cursor: not-allowed;
  text-decoration: none;
}

.flight-calendar__footer-summary {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flight-calendar__confirm {
  min-height: 44px;
  padding: 10px 18px;
  color: var(--brand-navy);
  background: var(--brand-orange);
  border: 1px solid rgba(4, 43, 102, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.flight-calendar__confirm:hover:not(:disabled) {
  color: #fff;
  background: var(--brand-orange-dark);
}

.flight-calendar__confirm:disabled {
  color: #7f8b9c;
  background: #e8ecf2;
  border-color: #dce2ea;
  cursor: not-allowed;
  opacity: 1;
}

@media (max-width: 760px) {
  .date-picker-field {
    margin-top: 11px;
  }

  .date-picker-field__label {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .date-picker-trigger {
    min-height: 58px;
  }

  .date-picker-segment {
    min-height: 58px;
    padding: 8px 10px;
  }

  .date-picker-segment strong {
    font-size: 12px;
  }

  .date-picker-segment small {
    font-size: 8px;
  }

  .date-picker-hint {
    display: none;
  }

  .flight-calendar {
    place-items: stretch;
    padding: 0;
  }

  .flight-calendar__backdrop {
    display: none;
  }

  .flight-calendar__panel {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .flight-calendar__header {
    flex: 0 0 auto;
    gap: 14px;
    padding: max(14px, env(safe-area-inset-top)) 15px 11px;
  }

  .flight-calendar__kicker {
    display: none;
  }

  .flight-calendar__header h3 {
    font-size: 20px;
  }

  .flight-calendar__header p {
    margin-top: 3px;
    font-size: 10px;
  }

  .flight-calendar__close {
    width: 38px;
    height: 38px;
  }

  .flight-calendar__toolbar {
    flex: 0 0 auto;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
    padding: 8px 14px;
  }

  .flight-calendar__nav {
    width: 36px;
    height: 36px;
  }

  .flight-calendar__selection {
    font-size: 10px;
  }

  .flight-calendar__months {
    grid-template-columns: minmax(0, 1fr);
    flex: 1 1 auto;
    min-height: 0;
    padding: 16px 12px 26px;
  }

  .flight-calendar__month {
    padding-inline: 0;
  }

  .flight-calendar__month + .flight-calendar__month {
    display: none;
  }

  .flight-calendar__month h4 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .flight-calendar__weekdays abbr {
    font-size: 10px;
  }

  .flight-calendar__days {
    row-gap: 5px;
  }

  .flight-calendar__day span {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .flight-calendar__footer {
    position: sticky;
    bottom: 0;
    flex: 0 0 auto;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -10px 26px rgba(4, 43, 102, 0.08);
  }

  .flight-calendar__footer-summary {
    display: none;
  }

  .flight-calendar__clear {
    min-height: 48px;
    font-size: 10px;
  }

  .flight-calendar__confirm {
    width: 100%;
    min-height: 48px;
    padding-inline: 14px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .date-picker-trigger {
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  }

  .date-picker-segment {
    padding-inline: 8px;
  }

  .date-picker-segment strong {
    font-size: 11px;
  }

  .flight-calendar__day span {
    width: 35px;
    height: 35px;
  }
}
