.page {
  min-height: 100%;
}

.hero + .section {
  padding-top: var(--space-7);
}

.section-header {
  display: grid;
  gap: var(--space-3);
}

.section-header.-tight {
  gap: var(--space-2);
}

.section-title--upper {
  text-transform: uppercase;
  letter-spacing: -0.6px;
}

.section-actions {
  margin-top: var(--space-7);
  display: flex;
  justify-content: center;
}

.section-actions .btn {
  min-width: 240px;
}

.surface {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.offer-hero {
  position: relative;
  min-height: 260px;
  padding: 28px 0 24px;
  display: grid;
  align-items: end;
}

.offer-hero__bg {
  position: absolute;
  inset: 0;
  background: #dfe7ef center / cover no-repeat;
  pointer-events: none;
}

.offer-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.offer-hero .container {
  position: relative;
}

.offer-hero__title {
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.02;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
  max-width: 16ch;
}

.results-header {
  padding-top: var(--space-7);
  display: grid;
  gap: var(--space-3);
}

.results-title {
  font-size: 44px;
  letter-spacing: -1px;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.9);
}

.results-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(16, 24, 40, 0.7);
  max-width: 56ch;
}

.results-filters {
  margin-top: var(--space-6);
  display: flex;
  gap: 10px;
  overflow: auto hidden;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.results-filters::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  background: #ffffff;
  font-weight: 500;
  color: rgba(16, 24, 40, 0.86);
}

.results-grid {
  margin-top: var(--space-7);
  display: grid;
  gap: var(--space-5);
}

.flight-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  overflow: hidden;
}

.flight-card__top {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.flight-card__logo {
  height: 128px;
  width: auto;
  display: block;
}

.flight-card__airline-text {
  font-weight: 700;
  color: rgba(16, 24, 40, 0.86);
}

.flight-card__mid {
  padding: 16px 18px;
}

.flight-card__cols {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: start;
}

.flight-card__kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.86);
  letter-spacing: 0.6px;
}

.flight-card__plane {
  font-size: 14px;
}

.flight-card__route {
  margin-top: 6px;
  font-weight: 500;
  color: rgba(16, 24, 40, 0.76);
}

.flight-card__date {
  margin-top: 6px;
  color: rgba(16, 24, 40, 0.86);
}

.flight-card__time {
  margin-top: 4px;
  color: rgba(16, 24, 40, 0.7);
  font-weight: 500;
}

.flight-card__direct {
  color: #0b8f79;
  font-weight: 700;
}

.flight-card__icons {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: #0b8f79;
  font-weight: 700;
}

.flight-card__bag.is-muted {
  color: rgba(16, 24, 40, 0.2);
}

.flight-card__days {
  color: rgba(16, 24, 40, 0.65);
  font-weight: 500;
}

.flight-card__bottom {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.flight-card__price-label {
  color: rgba(16, 24, 40, 0.62);
  font-weight: 400;
}

.flight-card__price-value {
  margin-top: 6px;
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.6px;
}

.flight-card__next {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 146, 194, 0.16);
  color: #1a8ad6;
  font-weight: 700;
}

@media (max-width: 420px) {
  .offer-hero__title {
    font-size: 40px;
  }

  .results-title {
    font-size: 40px;
  }

  .flight-card__cols {
    grid-template-columns: 1fr 1fr;
  }

  .flight-card__icons {
    grid-column: 1 / -1;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
  }
}

.offer-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: background-color 150ms ease, border-color 150ms ease;
  cursor: pointer;
}

.offer-back:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.7);
}

.offer-back span {
  font-size: 24px;
  line-height: 1;
  font-family: system-ui, -apple-system, sans-serif !important;
  font-weight: 300 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -3px;
}

.trend-title {
  font-size: 44px;
  letter-spacing: -1px;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.9);
}

.trend-card {
  margin-top: var(--space-6);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 18px;
}

.trend-card__head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 6px 10px;
  align-items: start;
}

.trend-card__label {
  font-weight: 700;
  color: rgba(16, 24, 40, 0.86);
}

.trend-card__price {
  grid-column: 1 / -1;
  color: #0b8f79;
  font-weight: 700;
}

.trend-card__price-value {
  font-weight: 500;
}

.trend-card__info {
  grid-row: 1 / span 2;
  justify-self: end;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(17, 146, 194, 0.4);
  background: #ffffff;
  color: #1a8ad6;
  font-weight: 500;
}

.trend-chart {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  padding: 16px;
  overflow: hidden;
}

.trend-bars {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: clamp(4px, 1.2vw, 8px);
  align-items: end;
  height: 150px;
  padding: 10px 0 0;
}

.trend-bar {
  width: 100%;
  border-radius: 6px;
  background: #0fb4cf;
  height: 60%;
}

.trend-bar[data-bar="jun"] { height: 72%; }
.trend-bar[data-bar="jul"] { height: 54%; }
.trend-bar[data-bar="ago"] { height: 48%; background: #0b8f79; }
.trend-bar[data-bar="set"] { height: 72%; }
.trend-bar[data-bar="out"] { height: 76%; }
.trend-bar[data-bar="nov"] { height: 68%; }
.trend-bar[data-bar="dez"] { height: 78%; }
.trend-bar[data-bar="jan"] { height: 86%; }
.trend-bar[data-bar="fev"] { height: 92%; }
.trend-bar[data-bar="mar"] { height: 12%; background: rgba(16, 24, 40, 0.12); }
.trend-bar[data-bar="abr"] { height: 12%; background: rgba(16, 24, 40, 0.12); }

.trend-bar.is-muted {
  background: rgba(16, 24, 40, 0.12);
}

.trend-months {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: clamp(4px, 1.2vw, 8px);
  font-weight: 500;
  color: rgba(16, 24, 40, 0.6);
  text-align: center;
  font-size: 14px;
}

.trend-months .is-muted {
  color: rgba(16, 24, 40, 0.28);
}

.alert-card {
  margin-top: var(--space-6);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.alert-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #4c24b8;
}

.alert-card__title {
  font-size: 26px;
  letter-spacing: -0.6px;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.9);
}

.alert-card__btn {
  margin-top: 12px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(17, 146, 194, 0.65);
  background: #ffffff;
  color: #1a8ad6;
  font-weight: 700;
}

.more-options {
  margin-top: var(--space-7);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 18px;
}

.more-options__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: rgba(16, 24, 40, 0.9);
}

.more-options__list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.more-options__item {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #ffffff;
  color: #1a8ad6;
  font-weight: 700;
  text-decoration: none;
}

.faq-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 18px;
}

.faq-title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1px;
  color: rgba(16, 24, 40, 0.9);
}

.faq-list {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.1);
}

.faq-item {
  border-top: 1px solid rgba(16, 24, 40, 0.1);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-q {
  list-style: none;
  width: 100%;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: rgba(16, 24, 40, 0.9);
  cursor: pointer;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal__dialog {
  position: relative;
  width: min(560px, 100%);
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: rgba(16, 24, 40, 0.75);
}

.modal__title {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: rgba(16, 24, 40, 0.9);
  padding-right: 52px;
}

.modal__rows {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.modal__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.modal__row-title {
  font-size: 22px;
  font-weight: 500;
  color: rgba(16, 24, 40, 0.9);
}

.modal__row-sub {
  margin-top: 4px;
  font-size: 16px;
  color: rgba(16, 24, 40, 0.55);
  font-weight: 500;
}

.modal__stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.stepper-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(16, 24, 40, 0.24);
  background: #ffffff;
  color: rgba(16, 24, 40, 0.7);
  font-size: 26px;
  font-weight: 700;
}

.stepper-btn.is-primary {
  border-color: rgba(16, 24, 40, 0.85);
  color: rgba(16, 24, 40, 0.9);
}

.stepper-btn:disabled {
  opacity: 0.45;
}

.stepper-value {
  min-width: 24px;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: rgba(16, 24, 40, 0.9);
}

.modal__actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}

.modal__cta {
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  background: #1a8ad6;
  color: #ffffff;
  font-weight: 500;
  font-size: 22px;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-caret {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-right: 3px solid rgba(16, 24, 40, 0.6);
  border-bottom: 3px solid rgba(16, 24, 40, 0.6);
  transform: rotate(45deg);
}

.faq-item[open] .faq-caret {
  transform: rotate(-135deg);
}

.faq-a {
  padding: 0 16px 18px;
  color: rgba(16, 24, 40, 0.72);
  font-size: 18px;
  line-height: 1.5;
}

.checkout-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.checkout-header__inner {
  height: 74px;
  display: flex;
  align-items: center;
}

.checkout-brand__img {
  height: 30px;
  width: auto;
  display: block;
}

.checkout-notice {
  background: #ffffff;
  padding-top: 12px;
}

.notice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border-radius: 14px;
  border: 1px solid rgba(17, 146, 194, 0.2);
  background: rgba(17, 146, 194, 0.08);
  padding: 14px 14px;
}

.notice-card__time {
  font-weight: 500;
  color: #1a8ad6;
}

.notice-card__title {
  font-weight: 500;
  color: rgba(16, 24, 40, 0.9);
}

.notice-card__text {
  margin-top: 4px;
  color: rgba(16, 24, 40, 0.68);
  font-weight: 500;
}

.notice-progress {
  height: 5px;
  border-radius: 999px;
  background: #1a8ad6;
  margin-top: 8px;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 18px;
}

.form-title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -1px;
  color: rgba(16, 24, 40, 0.9);
}

.form-subtitle {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.82);
}

.checkout-form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.checkout-card {
  margin-top: var(--space-6);
}

.checkout-lead {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(16, 24, 40, 0.7);
  font-weight: 500;
}

.check-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(16, 24, 40, 0.78);
  font-weight: 500;
  line-height: 1.35;
}

.check-row--tight {
  margin-top: 18px;
}

.check-row__input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.check-row__content strong {
  font-weight: 500;
}

.checkout-link {
  color: #1a8ad6;
  font-weight: 700;
  text-decoration: none;
}

.checkout-link:hover {
  text-decoration: underline;
}

.checkout-inline-action {
  justify-self: start;
  background: transparent;
  border: 0;
  padding: 8px 0;
  color: #1a8ad6;
  font-weight: 500;
  font-size: 18px;
}

.policy-card {
  margin-top: var(--space-6);
  border-radius: 16px;
  background: rgba(16, 24, 40, 0.82);
  color: #ffffff;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.policy-card__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  font-weight: 500;
}

.policy-card__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.policy-card__btn {
  justify-self: start;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #ffffff;
  font-weight: 500;
}

.verify-card {
  margin-top: var(--space-6);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  padding: 18px;
  margin-bottom: 110px;
}

.verify-title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: rgba(16, 24, 40, 0.9);
}

.verify-list {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.verify-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.verify-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.verify-item__title {
  font-weight: 500;
  color: rgba(16, 24, 40, 0.9);
}

.verify-item__sub {
  margin-top: 8px;
  color: rgba(16, 24, 40, 0.72);
  font-weight: 600;
}

.buy-btn {
  margin-top: 16px;
  width: 100%;
  min-height: 64px;
  border-radius: 999px;
  border: 0;
  background: #25c36a;
  color: #ffffff;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.buy-btn:disabled {
  opacity: 0.6;
}

.field-block__label {
  display: block;
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(16, 24, 40, 0.66);
  margin-bottom: 8px;
}

.field-block__input {
  width: 100%;
  min-height: 56px;
  border-radius: 12px;
  border: 2px solid rgba(16, 24, 40, 0.18);
  padding: 14px 14px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(16, 24, 40, 0.86);
  background: #ffffff;
}

.field-block__input::placeholder {
  color: rgba(16, 24, 40, 0.46);
  font-style: italic;
}

.field-block__hint {
  display: block;
  margin-top: 8px;
  color: rgba(16, 24, 40, 0.5);
  font-weight: 500;
}

.field-block__select {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 2px solid rgba(16, 24, 40, 0.18);
  padding: 0 12px;
  min-height: 56px;
}

.field-block__select .field-block__input {
  border: 0;
  min-height: 54px;
  padding: 0;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(16, 24, 40, 0.18);
  background: #ffffff;
}

.segmented__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
}

.segmented__item + .segmented__item {
  border-left: 2px solid rgba(16, 24, 40, 0.18);
}

.segmented__radio {
  width: 18px;
  height: 18px;
}

.segmented__label {
  font-weight: 600;
  color: rgba(16, 24, 40, 0.78);
}

.collapse-card {
  margin-top: var(--space-6);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  overflow: hidden;
}

.collapse-card__summary {
  list-style: none;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  color: rgba(16, 24, 40, 0.9);
  cursor: pointer;
}

.collapse-card__summary::-webkit-details-marker {
  display: none;
}

.collapse-card__caret {
  width: 16px;
  height: 16px;
  border-right: 3px solid rgba(16, 24, 40, 0.6);
  border-bottom: 3px solid rgba(16, 24, 40, 0.6);
  transform: rotate(45deg);
}

.collapse-card[open] .collapse-card__caret {
  transform: rotate(-135deg);
}

.collapse-card__body {
  padding: 0 16px 18px;
  color: rgba(16, 24, 40, 0.7);
}

.assist-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.12);
}

.assist-box__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 143, 121, 0.12);
  color: rgba(11, 143, 121, 0.95);
  font-weight: 500;
  display: grid;
  place-items: center;
}

.assist-box__title {
  font-weight: 500;
  text-transform: lowercase;
}

.assist-box__text {
  margin-top: 4px;
  color: rgba(16, 24, 40, 0.68);
  font-weight: 500;
}

.checkout-total {
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
}

.checkout-total__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-total__label {
  font-weight: 500;
  color: rgba(16, 24, 40, 0.78);
}

.checkout-total__value {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: rgba(16, 24, 40, 0.9);
}

@media (max-width: 420px) {
  .two-cols {
    grid-template-columns: 1fr;
  }

  .form-title {
    font-size: 34px;
  }
}

@media (max-width: 420px) {
  .trend-title {
    font-size: 40px;
  }

  .alert-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .alert-card__icon {
    width: 42px;
    height: 42px;
  }

  .faq-title {
    font-size: 40px;
  }

  .faq-q {
    font-size: 20px;
  }
}
