:root {
  --color-navy: #06152b;
  --color-gold: #d6a11c;
  --color-white: #ffffff;
  --color-text: #172033;
  --color-muted: rgba(255, 255, 255, .35);
  --color-border: rgba(255, 255, 255, .08);

  --font-primary: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --font-size-menu: 13px;
  --font-size-menu-mobile: 16px;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --header-height: 75px;
  --header-height-mobile: 82px;

  --content-width: 1320px;
  --content-padding: 20px;

  --transition-fast: .25s ease;
  --transition-default: .3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
}

.opo-main {
  overflow: hidden;
}

.opo-container {
  width: min(calc(100% - (var(--content-padding) * 2)),
      var(--content-width));
  margin-inline: auto;
}

/* Header */
.opo-header {
  width: 100%;
  min-height: var(--header-height);
  margin: 0;
  background: var(--color-navy);
  border-bottom: 1px solid var(--color-border);
}

.opo-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - (var(--content-padding) * 2)),
      var(--content-width));
  min-height: var(--header-height);
  gap: 30px;
  margin-inline: auto;
}

.opo-header-logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.opo-header-logo img {
  display: block;
  width: auto;
  height: 65px;
}

.opo-menu {
  display: flex;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
}

.opo-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  font-size: var(--font-size-menu);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.opo-menu a.active,
.opo-menu a:hover {
  color: var(--color-gold);
}

.opo-menu a::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 3px;
  content: '';
  background: var(--color-gold);
  transform: translateX(-50%);
  transition: width var(--transition-default);
}

.opo-menu a:hover::after {
  width: 28px;
}

.opo-header {
  position: relative;
  z-index: 110;
}

.opo-header-right {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
}

/* Seletor de idioma */
.opo-language-menu {
  position: relative;
}

.opo-language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 58px;
  height: 38px;
  padding: 0;
  color: var(--color-white);
  font: var(--font-weight-bold) 13px var(--font-primary);
  cursor: pointer;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  transition: var(--transition-fast);
}

.opo-language-toggle:hover,
.opo-language-toggle[aria-expanded="true"] {
  color: var(--color-gold);
  background: transparent;
  border-color: transparent;
}

.opo-language-toggle i {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.opo-language-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.opo-language-options {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
  width: 48px;
  padding: 0;
  overflow: hidden;
  background: var(--color-gold);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(4, 12, 28, .25);
}

.opo-language-options.is-open {
  display: block;
}

.opo-language-options a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  color: var(--color-navy);
  font: var(--font-weight-extrabold) 13px var(--font-primary);
  text-decoration: none;
}

.opo-language-options a:hover {
  color: var(--color-white);
  background: var(--color-navy);
}

.opo-language-options a[hidden] {
  display: none;
}

.opo-hamburger {
  display: none;
}

/* Hero */
.opo-hero {
  position: relative;
  width: 100%;
  background:
    linear-gradient(90deg,
      rgba(4, 12, 28, .76),
      rgba(12, 24, 40, .54) 43%,
      rgba(4, 12, 28, .10)),
    url('../images/hero/hero.webp') center / cover no-repeat;
}

.opo-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  width: min(calc(100% - (var(--content-padding) * 2)),
      var(--content-width));
  margin-inline: auto;
  padding-block: 92px 110px;
}

.opo-hero-content {
  max-width: 590px;
  padding-top: 8px;
}

.opo-hero-title {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--color-white);
  font-size: clamp(38px, 3.8vw, 58px);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.12;
  letter-spacing: -.02em;
}

.opo-hero-title span {
  color: var(--color-gold);
}

.opo-hero-description {
  max-width: 500px;
  margin: 0;
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.55;
}

/* Formulário */
.opo-form-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}

.opo-booking-card {
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  padding: 18px;
  overflow: visible;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(4, 12, 28, .18);
}

.opo-form-head {
  margin-bottom: 12px;
  text-align: center;
}

.opo-form-head h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: 19px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.15;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.opo-form-head p {
  margin: 3px 0 0;
  color: #50617d;
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  line-height: 1.35;
}

.opo-booking-box {
  --route-column: 68px;
  --route-line-start: 22px;
  --route-line-end: 46px;
  --route-icon-position: 34px;

  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #cad6e7;
  border-radius: 10px;
}

/* Trajeto entre origem e destino */
.opo-route-icon {
  position: absolute;
  top: 52px;
  left: var(--route-icon-position);
  z-index: 4;
  display: block;
  width: 14px;
  height: 28px;
  pointer-events: none;
  object-fit: contain;
  transform: translateX(-50%);
}

.opo-booking-row {
  position: relative;
  display: grid;
  grid-template-columns: var(--route-column) minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 0;
}

.opo-destination-row {
  position: relative;
  border-top: 0;
}

.opo-destination-row::before,
.opo-destination-row::after {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 1px;
  content: '';
  background: #dbe3ec;
}

.opo-destination-row::before {
  left: 0;
  width: var(--route-line-start);
}

.opo-destination-row::after {
  right: 0;
  left: var(--route-line-end);
}

.opo-date-trigger {
  appearance: none;
  -webkit-appearance: none;
  color: var(--color-text);
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-top: 1px solid #dbe3ec;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
}

.opo-booking-icon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--route-column);
  height: 100%;
  background: transparent;
}

.opo-booking-icon img {
  position: relative;
  z-index: 5;
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.opo-booking-icon img.is-changing {
  animation: opo-location-icon-change .24s ease;
}

@keyframes opo-location-icon-change {
  0% {
    opacity: .35;
    transform: scale(.84);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.opo-destination-row .opo-booking-icon img,
.opo-date-trigger .opo-booking-icon img {
  width: 24px;
  height: 24px;
}

.opo-booking-row input,
.opo-date-value {
  width: 100%;
  height: 100%;
  padding: 0 12px 0 4px;
  color: var(--color-text);
  font: var(--font-weight-medium) 14px var(--font-primary);
  background: transparent;
  border: 0;
  outline: 0;
}

.opo-date-value {
  display: flex;
  align-items: center;
  color: #50617d;
}

.opo-date-value.has-value {
  color: var(--color-text);
}

.opo-booking-row input::placeholder,
.opo-input-line input::placeholder,
.opo-phone-row input::placeholder {
  color: #91a0b5;
  opacity: 1;
}

.opo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.opo-field-label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
}

.opo-counter {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  height: 44px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #d4deeb;
  border-radius: 9px;
}

.opo-counter button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.opo-counter button img {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.opo-counter button:hover {
  background: #faf7ef;
}

.opo-counter span {
  color: var(--color-navy);
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  text-align: center;
}

.opo-input-line,
.opo-phone-row {
  height: 44px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #d4deeb;
  border-radius: 9px;
}

.opo-input-line {
  display: block;
  margin-top: 10px;
}

.opo-input-line:focus-within,
.opo-phone-row:focus-within {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(214, 161, 28, .14);
}

.opo-input-line input,
.opo-phone-row input {
  width: 100%;
  height: 100%;
  padding: 0 14px;
  color: var(--color-text);
  font: var(--font-weight-medium) 14px var(--font-primary);
  background: transparent;
  border: 0;
  outline: 0;
}

.opo-phone-field {
  margin-top: 10px;
}

.opo-phone-row {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  height: 44px;
  overflow: visible;
  background: var(--color-white);
  border: 1px solid #d4deeb;
  border-radius: 9px;
}

.opo-country-picker {
  position: relative;
  min-width: 0;
  height: 42px;
  border-right: 1px solid #dbe3ec;
}

.opo-country-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 8px;
  padding: 0 10px;
  color: var(--color-navy);
  font: var(--font-weight-bold) 14px var(--font-primary);
  cursor: pointer;
  background: var(--color-white);
  border: 0;
  border-radius: 8px 0 0 8px;
  outline: 0;
}

.opo-country-trigger:hover {
  background: #faf7ef;
}

.opo-country-trigger-flag {
  font-size: 18px;
  line-height: 1;
}

.opo-country-trigger-prefix {
  white-space: nowrap;
}

.opo-country-trigger.is-placeholder .opo-country-trigger-prefix,
.opo-country-trigger.is-placeholder i {
  color: #91a0b8;
}

.opo-country-trigger.is-placeholder .opo-country-trigger-prefix {
  font-size: 16px;
  font-weight: var(--font-weight-medium);
}

.opo-country-trigger i {
  margin-left: auto;
  color: #5d6b7c;
  font-size: 11px;
  transition: transform var(--transition-fast);
}

.opo-country-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.opo-country-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: -1px;
  z-index: 80;
  width: min(370px, calc(100vw - 32px));
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(4, 12, 28, .18);
}

.opo-country-mobile-head {
  display: none;
}

.opo-country-search-wrap {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid #e2e8f0;
}

.opo-country-search-wrap i {
  flex: 0 0 auto;
  margin-right: 10px;
  color: #718096;
  font-size: 14px;
}

.opo-country-search-wrap input {
  width: 100%;
  height: 100%;
  padding: 0;
  color: var(--color-text);
  font: var(--font-weight-medium) 14px var(--font-primary);
  background: transparent;
  border: 0;
  outline: 0;
}

.opo-country-list {
  max-height: 286px;
  padding: 6px 0;
  overflow-y: auto;
}

.opo-country-option {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 48px;
  gap: 10px;
  padding: 0 16px;
  color: var(--color-text);
  font: var(--font-weight-medium) 14px var(--font-primary);
  text-align: left;
  cursor: pointer;
  background: var(--color-white);
  border: 0;
}

.opo-country-option:hover,
.opo-country-option.is-selected {
  background: #f5f7fa;
}

.opo-country-option-flag {
  font-size: 19px;
  line-height: 1;
}

.opo-country-option-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opo-country-option-prefix {
  color: #8190a4;
  font-weight: var(--font-weight-medium);
}

.opo-country-divider {
  height: 1px;
  margin: 6px 0;
  background: #e2e8f0;
}

.opo-phone-error {
  display: none;
  margin: 7px 2px 0;
  color: #c2410c;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.35;
}

.opo-phone-error.is-visible {
  display: block;
}

.opo-form-submit {
  width: 100%;
  height: 48px;
  margin-top: 12px;
  color: var(--color-white);
  font: var(--font-weight-extrabold) 14px var(--font-primary);
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, #e0a700, #ffc846);
  border: 0;
  border-radius: 9px;
}

.opo-form-submit:disabled {
  cursor: wait;
  opacity: .65;
}

/* Calendário */
.opo-calendar-popover {
  position: absolute;
  top: 72px;
  right: calc(100% + 18px);
  z-index: 20;
  width: 360px;
  max-width: calc(100vw - 40px);
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  background: var(--color-white);
  border: 1px solid #dfe6ef;
  border-radius: 14px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity var(--transition-fast),
    transform var(--transition-fast),
    visibility var(--transition-fast);
}

.opo-calendar-popover.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.opo-calendar-main {
  padding: 18px;
}

.opo-cal-head {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  margin-bottom: 18px;
}

.opo-cal-nav {
  width: 34px;
  height: 34px;
  color: var(--color-text);
  font-size: 22px;
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid #d8e1ec;
  border-radius: 50%;
}

.opo-cal-month {
  color: var(--color-text);
  font: var(--font-weight-extrabold) 20px var(--font-primary);
  text-align: center;
}

.opo-cal-week,
.opo-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.opo-cal-week span {
  color: #8b95a3;
  font: var(--font-weight-extrabold) 13px var(--font-primary);
  text-align: center;
}

.opo-cal-days {
  margin-top: 10px;
}

.opo-cal-day {
  width: 100%;
  height: 34px;
  color: #7f8fa3;
  font: var(--font-weight-bold) 15px var(--font-primary);
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.opo-cal-day:not(:disabled):hover {
  color: var(--color-text);
  background: #f5f7fa;
}

.opo-cal-day.is-selected {
  color: var(--color-white);
  background: var(--color-navy);
}

.opo-cal-day:disabled {
  color: #cbd3dc;
  cursor: not-allowed;
  opacity: .55;
}

.opo-calendar-bottom {
  padding: 16px 18px 18px;
  background: var(--color-white);
  border-top: 1px solid #dfe6ef;
}

.opo-calendar-note {
  display: none;
  margin: 0 0 10px;
  color: #d97316;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
}

.opo-calendar-popover.show-error .opo-calendar-note {
  display: block;
}

.opo-time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.opo-time-label {
  color: var(--color-text);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
}

.opo-time-selects {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.opo-time-trigger,
.opo-time-picker {
  display: none;
}

.opo-time-selects select {
  height: 42px;
  min-width: 64px;
  padding: 0 10px;
  color: var(--color-text);
  font: var(--font-weight-semibold) 16px var(--font-primary);
  background: var(--color-white);
  border: 1px solid #cfd8e5;
  border-radius: 10px;
}

.opo-time-sep {
  color: var(--color-text);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
}

.opo-calendar-confirm {
  width: 100%;
  height: 52px;
  color: var(--color-white);
  font: var(--font-weight-extrabold) 17px var(--font-primary);
  cursor: pointer;
  background: linear-gradient(135deg, #e0a700, #ffc846);
  border: 0;
  border-radius: 8px;
}

.opo-calendar-mobile-head,
.opo-mobile-calendar-months {
  display: none;
}

/* Responsivo */
@media (max-width: 1180px) {
  .opo-calendar-popover {
    top: calc(100% + 14px);
    right: 0;
  }
}

@media (max-width: 1024px) {
  .opo-header-container {
    flex-wrap: wrap;
    padding-block: 22px;
  }

  .opo-menu {
    justify-content: center;
    order: 3;
    width: 100%;
    gap: 22px;
  }
}

@media (max-width: 767px) {
  :root {
    --content-padding: 14px;
  }

  .opo-header {
    min-height: var(--header-height-mobile);
  }

  .opo-header-container {
    --opo-header-inline-space: 18px;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: var(--header-height-mobile);
    min-height: var(--header-height-mobile);
    gap: 12px;
    padding: 0 var(--opo-header-inline-space) 0 8px;
  }

  .opo-header-logo {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
  }

  .opo-header-logo img {
    display: block;
    width: auto;
    height: 40px;
  }

  .opo-header-right {
    position: relative;
    z-index: 2;
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .opo-language-toggle {
    width: auto;
    height: auto;
    padding: 0;
    font-size: 13px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .opo-language-options {
    width: 54px;
  }

  .opo-hamburger {
    position: relative;
    z-index: 2;
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--color-white);
    font-size: 27px;
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .opo-hamburger:hover {
    color: var(--color-gold);
  }

  .opo-menu {
    position: absolute;
    top: 100%;
    right: calc(0px - var(--opo-header-inline-space));
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    order: initial;
    width: min(88vw, 360px);
    max-height: calc(100dvh - var(--header-height-mobile));
    gap: 0;
    padding: 8px 22px 12px;
    overflow-y: auto;
    background: var(--color-navy);
    border-top: 1px solid rgba(255, 255, 255, .10);
    border-left: 1px solid rgba(255, 255, 255, .10);
    box-shadow: -18px 18px 42px rgba(4, 12, 28, .28);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .35s ease, visibility .35s ease;
  }

  .opo-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .opo-menu a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 12px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .opo-menu a:last-child {
    border-bottom: 0;
  }

  .opo-menu a::after {
    display: none;
  }

  .opo-hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 54px 72px;
  }

  .opo-booking-card {
    margin-inline: auto;
  }

  .opo-booking-card input,
  .opo-booking-card select,
  .opo-booking-card textarea,
  .opo-booking-card button,
  .opo-booking-card .opo-date-value {
    font-size: 16px;
  }

  .opo-country-trigger,
  .opo-country-trigger-prefix {
    font-size: 16px;
  }

  .opo-hero-title {
    font-size: 36px;
    line-height: 1.14;
  }

  .opo-hero-description {
    font-size: 15px;
  }

  .opo-booking-card {
    max-width: 440px;
    margin-inline: auto;
    padding: 22px 20px 24px;
  }

  .opo-booking-box {
    --route-column: 62px;
    --route-line-start: 20px;
    --route-line-end: 42px;
    --route-icon-position: 31px;
  }

  .opo-route-icon {
    width: 12px;
    height: 24px;
  }

  body.opo-calendar-open {
    overflow: hidden;
  }

  .opo-calendar-popover {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: 100dvh;
    max-height: none;
    overflow: hidden;
    background: var(--color-white);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity var(--transition-fast),
      transform var(--transition-default),
      visibility var(--transition-fast);
  }

  .opo-calendar-popover.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .opo-calendar-mobile-head {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 18px;
    height: 76px;
    padding: 0 24px;
    color: var(--color-navy);
    border-bottom: 1px solid #e2e8f0;
  }

  .opo-calendar-mobile-head h3 {
    margin: 0;
    color: var(--color-navy);
    font-size: 21px;
    font-weight: var(--font-weight-extrabold);
  }

  .opo-calendar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: var(--color-navy);
    font-size: 20px;
    cursor: pointer;
    background: transparent;
    border: 0;
  }

  .opo-calendar-main {
    display: none;
  }

  .opo-mobile-calendar-months {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    padding: 24px 24px 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .opo-mobile-calendar-month {
    margin-bottom: 38px;
  }

  .opo-mobile-calendar-title {
    margin: 0 0 22px;
    color: var(--color-navy);
    font-size: 20px;
    font-weight: var(--font-weight-extrabold);
  }

  .opo-mobile-calendar-week,
  .opo-mobile-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px 4px;
  }

  .opo-mobile-calendar-week {
    margin-bottom: 12px;
  }

  .opo-mobile-calendar-week span {
    color: #7d8999;
    font-size: 12px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    text-transform: uppercase;
  }

  .opo-mobile-calendar-days {
    grid-auto-rows: 42px;
  }

  .opo-mobile-cal-day {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: auto;
    color: var(--color-navy);
    font: var(--font-weight-semibold) 16px var(--font-primary);
    cursor: pointer;
    background: transparent;
    border: 0;
    border-radius: 50%;
  }

  .opo-mobile-cal-day:not(:disabled):hover {
    color: var(--color-white);
    background: var(--color-navy);
  }

  .opo-mobile-cal-day.is-selected {
    color: var(--color-white);
    background: var(--color-gold);
  }

  .opo-mobile-cal-day:disabled {
    color: #c8d0da;
    cursor: not-allowed;
  }

  .opo-calendar-bottom {
    flex: 0 0 auto;
    padding: 18px 24px max(24px, env(safe-area-inset-bottom));
    background: var(--color-white);
    border-top: 1px solid #dbe3ec;
    box-shadow: 0 -10px 28px rgba(4, 12, 28, .08);
  }

  .opo-time-row {
    margin-bottom: 16px;
  }

  .opo-time-label {
    color: var(--color-navy);
    font-size: 18px;
    font-weight: var(--font-weight-extrabold);
  }

  .opo-time-selects {
    display: none;
  }

  .opo-calendar-confirm {
    height: 54px;
    color: var(--color-white);
    font-size: 17px;
    background: linear-gradient(135deg, #c58e0f, var(--color-gold));
    border-radius: 10px;
  }

  .opo-calendar-bottom {
    position: relative;
  }

  .opo-time-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 142px;
    height: 48px;
    padding: 0 16px;
    color: var(--color-navy);
    font: var(--font-weight-extrabold) 17px var(--font-primary);
    cursor: pointer;
    background: #f3f5f8;
    border: 0;
    border-radius: 10px;
  }

  .opo-time-trigger i {
    font-size: 13px;
    transition: transform var(--transition-fast);
  }

  .opo-time-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .opo-time-picker:not([hidden]) {
    position: absolute;
    right: 0;
    bottom: calc(100% + 16px);
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    align-items: center;
    width: 300px;
    height: 250px;
    overflow: hidden;
    background: #f4f6f9;
    border: 1px solid #e1e7ef;
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(4, 12, 28, .2);
  }

  .opo-time-picker-selection {
    position: absolute;
    top: 101px;
    right: 16px;
    left: 16px;
    z-index: 0;
    height: 48px;
    pointer-events: none;
    background: var(--color-navy);
    border-radius: 10px;
  }

  .opo-time-column {
    position: relative;
    z-index: 1;
    height: 250px;
    padding: 101px 0;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-snap-type: y mandatory;
  }

  .opo-time-column::-webkit-scrollbar {
    display: none;
  }

  .opo-time-column button {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0;
    color: #8a95a4;
    font: var(--font-weight-medium) 17px var(--font-primary);
    cursor: pointer;
    background: transparent;
    border: 0;
    scroll-snap-align: center;
  }

  .opo-time-column button.is-selected {
    color: var(--color-white);
    font-weight: var(--font-weight-extrabold);
  }

  .opo-time-picker-separator {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    text-align: center;
  }

  .opo-calendar-confirm:disabled {
    cursor: not-allowed;
    background: #cbd3dc;
    opacity: 1;
  }

  body.opo-country-open {
    overflow: hidden;
  }

  .opo-country-popover:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    max-height: none;
    overflow: hidden;
    background: var(--color-white);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .opo-country-mobile-head {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    padding: 0 28px;
    border-bottom: 1px solid #e2e8f0;
  }

  .opo-country-mobile-head h3 {
    margin: 0;
    color: var(--color-navy);
    font-size: 26px;
    font-weight: var(--font-weight-extrabold);
  }

  .opo-country-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    color: #7d8999;
    font-size: 22px;
    cursor: pointer;
    background: #f1f3f6;
    border: 0;
    border-radius: 50%;
  }

  .opo-country-search-wrap {
    display: none;
  }

  .opo-country-list {
    flex: 1 1 auto;
    max-height: none;
    padding: 18px 0 32px;
    overflow-y: auto;
  }

  .opo-country-option {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    min-height: 70px;
    gap: 16px;
    padding: 0 36px;
    font-size: 20px;
  }

  .opo-country-option:hover,
  .opo-country-option.is-selected {
    background: transparent;
  }

  .opo-country-option-flag {
    font-size: 24px;
  }

  .opo-country-option-prefix {
    color: #8a95a4;
    font-size: 19px;
  }

  .opo-country-divider {
    margin: 12px 0;
  }
}

@media (max-width: 480px) {
  .opo-booking-card {
    padding: 20px 16px 22px;
  }

  .opo-form-head h2 {
    font-size: 18px;
  }

  .opo-booking-box {
    --route-column: 58px;
    --route-line-start: 18px;
    --route-line-end: 42px;
    --route-icon-position: 29px;
  }

  .opo-booking-row {
    grid-template-columns: var(--route-column) minmax(0, 1fr);
    min-height: 60px;
  }

  .opo-route-icon {
    top: 45px;
    left: var(--route-icon-position);
    z-index: 5;
    width: 12px;
    height: 30px;
    transform: translateX(-50%);
  }

  .opo-destination-row {
    position: relative;
    border-top: 0;
  }

  .opo-destination-row::before,
  .opo-destination-row::after {
    display: block;
    position: absolute;
    top: 0;
    z-index: 2;
    height: 1px;
    content: '';
    background: #dbe3ec;
  }

  .opo-destination-row::before {
    left: 0;
    width: var(--route-line-start);
  }

  .opo-destination-row::after {
    right: 0;
    left: var(--route-line-end);
  }

  .opo-booking-icon {
    width: var(--route-column);
    background: transparent;
  }

  .opo-booking-row input,
  .opo-date-value,
  .opo-input-line input,
  .opo-phone-row input {
    font-size: 16px;
  }

  .opo-field-label {
    font-size: 13px;
  }

  .opo-phone-row {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .opo-country-trigger {
    font-size: 13px;
  }
}

/* Benefícios */
.opo-benefits {
  position: relative;
  z-index: 2;
  isolation: isolate;
  margin-top: -94px;
  padding: 0 var(--content-padding) 24px;
}

.opo-benefits::before {
  position: absolute;
  top: 94px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #f5f7fa;
}

.opo-benefit-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(100%, var(--content-width));
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(4, 12, 28, .12);
}

.opo-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 20px 18px;
  color: var(--color-navy);
  text-align: center;
  border-right: 1px solid #dbe3ec;
}

.opo-benefit:last-child {
  border-right: 0;
}

.opo-benefit img {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.opo-benefit h3 {
  margin: 0 0 8px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.18;
  text-transform: uppercase;
}

.opo-benefit p {
  max-width: 190px;
  margin: 0;
  color: #233a5c;
  font-size: 13px;
  font-weight: var(--font-weight-regular);
  line-height: 1.42;
}

@media (max-width: 1024px) {
  .opo-benefits {
    margin-top: -54px;
    padding-bottom: 50px;
  }

  .opo-benefits::before {
    top: 54px;
  }

  .opo-benefit-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .opo-benefit:nth-child(3) {
    border-right: 0;
  }

  .opo-benefit:nth-child(-n + 3) {
    border-bottom: 1px solid #dbe3ec;
  }
}

@media (max-width: 640px) {
  .opo-benefits {
    margin-top: -28px;
    padding-inline: 14px;
    padding-bottom: 40px;
  }

  .opo-benefits::before {
    top: 28px;
  }

  .opo-benefit-panel {
    grid-template-columns: 1fr;
  }

  .opo-benefit,
  .opo-benefit:nth-child(3) {
    min-height: 0;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid #dbe3ec;
  }

  .opo-benefit:last-child {
    border-bottom: 0;
  }

  .opo-benefit img {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }
}

/* Serviços */
.opo-services {
  padding: 30px var(--content-padding) 72px;
  background: #f5f7fa;
}

.opo-services-container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.opo-section-heading {
  margin-bottom: 26px;
}

.opo-section-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-transform: uppercase;
}

.opo-section-heading span {
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  background: var(--color-gold);
}

.opo-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.opo-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.opo-service-image {
  height: 185px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #e0e6ee;
  border-radius: 10px;
}

.opo-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opo-service-icon {
  position: absolute;
  top: 152px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: var(--color-navy);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.opo-service-icon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.opo-service-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-height: 185px;
  margin-top: -1px;
  padding: 50px 18px 22px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid #e0e6ee;
  border-radius: 10px;
}

.opo-service-content h3 {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-size: 17px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-transform: uppercase;
}

.opo-service-content p {
  max-width: 220px;
  margin: 0;
  color: #44546a;
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
}

.opo-service-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
}

.opo-service-content a:hover {
  color: var(--color-navy);
}

.opo-service-content a i {
  font-size: 16px;
  transition: transform var(--transition-fast);
}

.opo-service-content a:hover i {
  transform: translateX(5px);
}

@media (max-width: 1100px) {
  .opo-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .opo-services {
    padding-block: 44px 56px;
  }

  .opo-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .opo-services-grid {
    grid-template-columns: 1fr;
  }

  .opo-service-image {
    height: 210px;
  }

  .opo-service-icon {
    top: 177px;
  }

  .opo-service-content {
    min-height: 210px;
  }
}

/* Serviços */
.opo-services {
  padding: 54px var(--content-padding) 72px;
  background: #f5f7fa;
}

.opo-services-container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.opo-section-heading {
  margin-bottom: 26px;
}

.opo-section-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-transform: uppercase;
}

.opo-section-heading span {
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  background: var(--color-gold);
}

.opo-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.opo-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.opo-service-image {
  height: 185px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #e0e6ee;
  border-radius: 10px;
}

.opo-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opo-service-icon {
  position: absolute;
  top: 152px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: var(--color-navy);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

.opo-service-icon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.opo-service-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-height: 185px;
  margin-top: -1px;
  padding: 50px 18px 22px;
  text-align: center;
  background: var(--color-white);
  border: 1px solid #e0e6ee;
  border-radius: 10px;
}

.opo-service-content h3 {
  margin: 0 0 13px;
  color: var(--color-navy);
  font-size: 17px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-transform: uppercase;
}

.opo-service-content p {
  max-width: 220px;
  margin: 0;
  color: #44546a;
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
}

.opo-service-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
}

.opo-service-content a:hover {
  color: var(--color-navy);
}

.opo-service-content a i {
  font-size: 16px;
  transition: transform var(--transition-fast);
}

.opo-service-content a:hover i {
  transform: translateX(5px);
}

@media (max-width: 1100px) {
  .opo-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .opo-services {
    padding-block: 44px 56px;
  }

  .opo-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .opo-services-grid {
    grid-template-columns: 1fr;
  }

  .opo-service-image {
    height: 210px;
  }

  .opo-service-icon {
    top: 177px;
  }

  .opo-service-content {
    min-height: 210px;
  }
}

/* Como funciona */
.opo-how-it-works {
  padding: 48px var(--content-padding) 54px;
  background: var(--color-navy);
}

.opo-how-it-works-container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.opo-how-it-works-heading {
  margin-bottom: 28px;
}

.opo-how-it-works-heading h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 22px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
  text-transform: uppercase;
}

.opo-how-it-works-heading span {
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 12px;
  background: var(--color-gold);
}

.opo-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 45px minmax(0, 1fr) 45px minmax(0, 1fr) 45px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.opo-step {
  min-width: 0;
}

.opo-step-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.opo-step-number {
  display: flex;
  flex: 0 0 60px;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--color-gold);
  font-size: 28px;
  font-weight: var(--font-weight-extrabold);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
}

.opo-step-top h3 {
  margin: 7px 0 0;
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.25;
  text-transform: uppercase;
}

.opo-step-bottom {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: start;
  column-gap: 18px;
  margin-top: 10px;
}

.opo-step-bottom img {
  display: block;
  width: 38px;
  height: 38px;
  margin-top: 2px;
  justify-self: center;
  object-fit: contain;
}

.opo-step-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 1.55;
}

.opo-step-connector {
  width: 45px;
  margin-top: 31px;
  border-top: 2px dotted rgba(255, 255, 255, .35);
}

@media (max-width: 1100px) {
  .opo-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
  }

  .opo-step-connector {
    display: none;
  }
}

@media (max-width: 640px) {
  .opo-how-it-works {
    padding-block: 42px 46px;
  }

  .opo-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .opo-step-top h3 {
    font-size: 15px;
  }

  .opo-step-bottom {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
  }

  .opo-step-number {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

/* CTA final */
.opo-final-cta {
  padding: 52px var(--content-padding);
  background:
    linear-gradient(90deg, rgba(4, 12, 28, .88), rgba(4, 12, 28, .48)),
    url('../images/cta/OPOCTA.webp') center / cover no-repeat;
}

.opo-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.opo-final-cta-text h2 {
  margin: 0 0 10px;
  color: var(--color-white);
  font-size: 34px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.15;
}

.opo-final-cta-text h2 span {
  color: var(--color-gold);
}

.opo-final-cta-text p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.55;
}

.opo-final-cta-actions {
  display: flex;
  justify-content: flex-end;
}

.opo-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 8px;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.opo-cta-button:hover {
  transform: translateY(-2px);
}

/* Botão Reservar */
.opo-cta-button-reserve {
  color: var(--color-white);
  background: transparent;
  border-color: var(--color-gold);
}

.opo-cta-button-reserve:hover {
  color: var(--color-navy);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.opo-cta-button-reserve i {
  color: currentColor;
}

@media (max-width: 767px) {
  .opo-final-cta {
    padding-block: 46px;
  }

  .opo-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .opo-final-cta-text h2 {
    font-size: 30px;
  }

  .opo-final-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .opo-cta-button {
    width: 100%;
  }
}

/* Rodapé */
.opo-footer {
  width: 100%;
  padding: 38px var(--content-padding) 0;
  color: var(--color-white);
  background: linear-gradient(180deg, #06152b 0%, #071b35 100%);
}

.opo-footer-container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.opo-footer-main {
  display: grid;
  grid-template-columns: 300px 1.2fr 1.1fr .8fr 150px;
  gap: 36px;
  align-items: start;
  padding-bottom: 32px;
}

.opo-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.opo-footer-logo {
  display: block;
  width: 130px;
  height: auto;
  margin-bottom: 16px;
}

.opo-footer-brand p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 1.55;
}

.opo-footer h3 {
  margin: 8px 0 22px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  text-transform: uppercase;
}

.opo-footer-nav,
.opo-footer-contact,
.opo-footer-social {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.opo-footer-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.opo-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.opo-footer li {
  margin-bottom: 12px;
}

.opo-footer a,
.opo-footer span {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.opo-footer a:hover {
  color: var(--color-gold);
}

.opo-footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.opo-footer-contact i {
  width: 17px;
  color: var(--color-gold);
  font-size: 15px;
  text-align: center;
}

.opo-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.opo-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-white);
  font-size: 15px;
  border: 1px solid var(--color-gold);
  border-radius: 8px;
}

.opo-social-icons a:hover {
  color: var(--color-navy);
  background: var(--color-gold);
}

.opo-footer-review {
  display: flex;
  justify-content: flex-start;
  padding-top: 18px;
}

.opo-google-card {
  width: 110px;
  padding: 10px 8px;
  color: var(--color-white);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
}

.opo-google-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--color-white);
  font-size: 8px;
  font-weight: var(--font-weight-bold);
}

.opo-google-card strong {
  display: block;
  font-size: 21px;
  font-weight: var(--font-weight-medium);
  line-height: 1.1;
}

.opo-google-card div {
  margin-top: 3px;
  color: var(--color-gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.opo-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.opo-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.opo-footer-bottom div {
  display: flex;
  gap: 28px;
}

.opo-footer-bottom a {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .opo-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .opo-footer-nav,
  .opo-footer-contact,
  .opo-footer-social {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .opo-footer {
    padding-top: 38px;
  }

  .opo-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .opo-footer-logo {
    width: 145px;
  }

  .opo-footer-brand p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
  }

  .opo-footer h3 {
    margin: 0 0 18px;
    font-size: 17px;
  }

  .opo-footer-menu {
    gap: 18px 40px;
  }

  .opo-footer a,
  .opo-footer span {
    font-size: 15px;
  }

  .opo-footer-contact li {
    gap: 14px;
    margin-bottom: 16px;
  }

  .opo-footer-contact i {
    width: 22px;
    font-size: 18px;
  }

  .opo-social-icons {
    gap: 12px;
  }

  .opo-social-icons a {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .opo-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 0;
  }

  .opo-footer-bottom p {
    font-size: 14px;
    line-height: 1.5;
  }

  .opo-footer-bottom div {
    flex-direction: column;
    gap: 10px;
  }

  .opo-footer-bottom a {
    font-size: 14px;
  }
}

/* Página: Destinos */
.opo-destinations {
  padding: 64px var(--content-padding) 72px;
  background: var(--color-white);
}

.opo-destinations *,
.opo-destinations *::before,
.opo-destinations *::after {
  box-sizing: border-box;
}

.opo-destinations-container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.opo-destinations-heading {
  margin-bottom: 34px;
  text-align: center;
}

.opo-destinations-heading>span {
  display: block;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.opo-destinations-heading h1 {
  margin: 12px 0 10px;
  color: var(--color-navy);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.15;
}

.opo-destinations-heading p {
  max-width: 680px;
  margin: 0 auto;
  color: #344054;
  font-size: 16px;
  line-height: 1.55;
}

.opo-destinations-heading::after {
  display: block;
  width: 58px;
  height: 3px;
  margin: 18px auto 0;
  content: '';
  background: var(--color-gold);
}

.opo-destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.opo-destination-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background-color: var(--color-navy);
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(4, 12, 28, .12);
}

.opo-destination-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .1) 0%,
      rgba(6, 21, 43, .45) 50%,
      rgba(6, 21, 43, .95) 100%);
}

.opo-destination-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  background: rgba(6, 21, 43, .9);
  border-radius: 22px;
}

.opo-destination-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
}

.opo-destination-content h2 {
  margin: 0 24px 12px;
  color: var(--color-white);
  font-size: 40px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
}

.opo-destination-content p {
  max-width: 340px;
  margin: 0 24px 18px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  line-height: 1.45;
}

.opo-destination-content>a {
  order: 2;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 24px 18px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
  transition: gap var(--transition-default);
}

.opo-destination-content>a:hover {
  gap: 14px;
}

.opo-destination-meta {
  order: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 24px;
  background: rgba(6, 21, 43, .92);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.opo-destination-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

.opo-destination-meta i {
  font-size: 15px;
}

.opo-destinations-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 860px;
  margin: 36px auto 0;
  padding: 22px 28px;
  background: var(--color-white);
  border: 1px solid rgba(214, 161, 28, .35);
  border-radius: 10px;
}

.opo-destinations-cta-icon {
  flex: 0 0 auto;
  color: var(--color-gold);
  font-size: 42px;
  line-height: 1;
}

.opo-destinations-cta-text {
  flex: 1;
}

.opo-destinations-cta-text h2 {
  margin: 0 0 5px;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: var(--font-weight-extrabold);
}

.opo-destinations-cta-text p {
  margin: 0;
  color: #344054;
  font-size: 13px;
  line-height: 1.45;
}

.opo-destinations-cta-whatsapp,
.opo-destinations-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 6px;
}

.opo-destinations-cta-whatsapp {
  color: var(--color-white);
  background: var(--color-gold);
}

.opo-destinations-cta-phone {
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-gold);
}

@media (max-width: 1100px) {
  .opo-destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .opo-destinations {
    padding-block: 48px 56px;
  }

  .opo-destinations-heading {
    margin-bottom: 28px;
  }

  .opo-destinations-heading>span {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .opo-destinations-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .opo-destination-card {
    min-height: 330px;
  }

  .opo-destination-content h2 {
    font-size: 34px;
  }

  .opo-destination-content p {
    font-size: 14px;
  }

  .opo-destination-meta {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 12px 18px;
  }

  .opo-destinations-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
  }

  .opo-destinations-cta-whatsapp,
  .opo-destinations-cta-phone {
    width: 100%;
  }
}

/* Página: Sobre nós */
.opo-about-page {
  overflow: hidden;
  background: var(--color-white);
}

.opo-about-page *,
.opo-about-page *::before,
.opo-about-page *::after {
  box-sizing: border-box;
}

.opo-about-page i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

/* Hero */
.opo-about-page .opo-about-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 620px;
  background: var(--color-navy);
}

.opo-about-page .opo-about-image {
  position: relative;
  overflow: hidden;
}

.opo-about-page .opo-about-image::after {
  position: absolute;
  top: 0;
  right: -90px;
  z-index: 2;
  width: 180px;
  height: 100%;
  content: '';
  background: var(--color-navy);
  transform: skewX(-10deg);
}

.opo-about-page .opo-about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82);
}

.opo-about-page .opo-about-content {
  position: relative;
  z-index: 3;
  padding: 70px max(var(--content-padding), calc((100vw - var(--content-width)) / 2)) 55px 70px;
  color: var(--color-white);
  background: radial-gradient(circle at top right, #0d2745 0%, var(--color-navy) 58%);
}

.opo-about-page .opo-small-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

.opo-about-page .opo-small-title span {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.opo-about-page .opo-small-title b,
.opo-about-page .opo-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--color-gold);
}

.opo-about-page .opo-line {
  width: 55px;
  margin-bottom: 24px;
}

.opo-about-page .opo-about-content h1 {
  max-width: 670px;
  margin: 0 0 22px;
  color: var(--color-white);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.18;
}

.opo-about-page .opo-about-content p {
  max-width: 650px;
  margin: 0 0 16px;
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.65;
}

/* Estatísticas */
.opo-about-page .opo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 720px;
  margin-top: 32px;
}

.opo-about-page .opo-stat-card {
  padding: 22px 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
}

.opo-about-page .opo-stat-card i {
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: 30px;
}

.opo-about-page .opo-stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 26px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
}

.opo-about-page .opo-stat-card span {
  color: var(--color-white);
  font-size: 13px;
  line-height: 1.35;
}

/* Botões */
.opo-about-page .opo-about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.opo-about-page .opo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 54px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 6px;
  transition: transform var(--transition-default);
}

.opo-about-page .opo-btn.gold {
  color: var(--color-white);
  background: var(--color-gold);
}

.opo-about-page .opo-btn.outline {
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.opo-about-page .opo-btn:hover,
.opo-about-page .opo-premium-btn:hover {
  transform: translateY(-2px);
}

/* Benefícios */
.opo-about-page .opo-benefits-section {
  padding: 52px var(--content-padding);
  text-align: center;
  background: var(--color-white);
}

.opo-about-page .opo-benefits-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.opo-about-page .opo-benefits-title span {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
}

.opo-about-page .opo-benefits-title p {
  margin: 0;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.opo-about-page .opo-benefits-section h2 {
  margin: 0 0 32px;
  color: var(--color-navy);
  font-size: clamp(26px, 2.5vw, 30px);
  font-weight: var(--font-weight-extrabold);
}

.opo-about-page .opo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.opo-about-page .opo-benefit-card {
  padding: 28px 22px;
  background: var(--color-white);
  border: 1px solid #e7ebf0;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(4, 12, 28, .06);
}

.opo-about-page .opo-benefit-card>div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  background: var(--color-navy);
  border-radius: 50%;
}

.opo-about-page .opo-benefit-card i {
  color: var(--color-gold);
  font-size: 28px;
}

.opo-about-page .opo-benefit-card h3 {
  margin: 0 0 10px;
  color: var(--color-navy);
  font-size: 22px;
  font-weight: var(--font-weight-extrabold);
}

.opo-about-page .opo-benefit-card p {
  margin: 0 0 18px;
  color: #111827;
  font-size: 14px;
  line-height: 1.45;
}

.opo-about-page .opo-benefit-card>span {
  display: block;
  width: 38px;
  height: 1px;
  margin: 0 auto;
  background: var(--color-gold);
}

/* Faixa de veículos */
.opo-about-page .opo-fleet-strip {
  height: 400px;
  background-image: url('../images/about/about-car.webp');
  background-position: center 55%;
  background-size: cover;
  background-repeat: no-repeat;
}

/* CTA */
.opo-about-page .opo-premium-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 34px max(var(--content-padding), calc((100vw - var(--content-width)) / 2));
  background:
    linear-gradient(90deg, rgba(6, 21, 43, .98), rgba(9, 32, 57, .98)),
    radial-gradient(circle at left, rgba(214, 161, 28, .16), transparent 35%);
  border-top: 3px solid var(--color-gold);
}

.opo-about-page .opo-premium-left {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--color-white);
}

.opo-about-page .opo-premium-left>i {
  color: var(--color-gold);
  font-size: 46px;
}

.opo-about-page .opo-premium-left h2 {
  margin: 0 0 6px;
  color: var(--color-white);
  font-size: 28px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.2;
}

.opo-about-page .opo-premium-left p {
  margin: 0;
  color: var(--color-white);
  font-size: 15px;
  opacity: .9;
}

.opo-about-page .opo-premium-buttons {
  display: flex;
  gap: 18px;
}

.opo-about-page .opo-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 250px;
  min-height: 68px;
  padding: 0 20px;
  text-decoration: none;
  border-radius: 6px;
  transition: transform var(--transition-default);
}

.opo-about-page .opo-premium-btn i {
  font-size: 28px;
}

.opo-about-page .opo-premium-btn strong,
.opo-about-page .opo-premium-btn span {
  display: block;
}

.opo-about-page .opo-premium-btn strong {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
}

.opo-about-page .opo-premium-btn span {
  font-size: 12px;
  font-weight: var(--font-weight-medium);
}

.opo-about-page .opo-premium-btn.gold {
  color: var(--color-white);
  background: var(--color-gold);
}

.opo-about-page .opo-premium-btn.outline {
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

@media (max-width: 1024px) {
  .opo-about-page .opo-about-hero {
    grid-template-columns: 1fr;
  }

  .opo-about-page .opo-about-image {
    height: 420px;
  }

  .opo-about-page .opo-about-image::after {
    display: none;
  }

  .opo-about-page .opo-about-content {
    padding: 52px var(--content-padding);
  }

  .opo-about-page .opo-stats,
  .opo-about-page .opo-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .opo-about-page .opo-fleet-strip {
    height: 280px;
    background-position: center;
  }

  .opo-about-page .opo-premium-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px var(--content-padding);
  }

  .opo-about-page .opo-premium-buttons {
    width: 100%;
  }

  .opo-about-page .opo-premium-btn {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .opo-about-page .opo-about-content {
    padding: 42px var(--content-padding);
  }

  .opo-about-page .opo-small-title {
    gap: 14px;
  }

  .opo-about-page .opo-small-title span {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .opo-about-page .opo-stats,
  .opo-about-page .opo-benefits-grid {
    grid-template-columns: 1fr;
  }

  .opo-about-page .opo-about-buttons,
  .opo-about-page .opo-premium-buttons {
    flex-direction: column;
    width: 100%;
  }

  .opo-about-page .opo-btn,
  .opo-about-page .opo-premium-btn {
    width: 100%;
  }

  .opo-about-page .opo-fleet-strip {
    height: 200px;
    background-position: center;
  }

  .opo-about-page .opo-premium-cta {
    padding: 32px var(--content-padding);
  }

  .opo-about-page .opo-premium-left {
    align-items: flex-start;
  }

  .opo-about-page .opo-premium-left h2 {
    font-size: 22px;
  }

  .opo-about-page .opo-premium-left>i {
    font-size: 36px;
  }
}

/* Página: Contactos */
.opo-contact-page {
  color: var(--color-white);
  background: var(--color-navy);
}

.opo-contact-page *,
.opo-contact-page *::before,
.opo-contact-page *::after {
  box-sizing: border-box;
}

.opo-contact-page .opo-contact-hero {
  position: relative;
  padding: 70px var(--content-padding) 80px;
  isolation: isolate;
  background-image: url('https://opotransfer.eu/wp-content/uploads/2026/06/ChatGPT-Image-5-de-jun.-de-2026-15_15_37.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.opo-contact-page .opo-contact-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(6, 21, 43, .88), rgba(6, 21, 43, .96));
}

.opo-contact-page .opo-contact-container {
  position: relative;
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.opo-contact-page .opo-contact-intro>span {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.opo-contact-page .opo-contact-intro h1 {
  margin: 18px 0;
  color: var(--color-white);
  font-size: clamp(40px, 5vw, 54px);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.05;
}

.opo-contact-page .opo-contact-intro>p {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.6;
}

.opo-contact-page .opo-contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 42px;
}

.opo-contact-page .opo-contact-badges div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
}

.opo-contact-page .opo-contact-badges i {
  color: var(--color-gold);
}

/* Cartões */
.opo-contact-page .opo-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.opo-contact-page .opo-contact-card,
.opo-contact-page .opo-contact-form,
.opo-contact-page .opo-contact-why {
  background: rgba(6, 21, 43, .78);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
}

.opo-contact-page .opo-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 22px;
  text-align: center;
}

.opo-contact-page .opo-contact-card>i {
  margin-bottom: 20px;
  color: var(--color-gold);
  font-size: 44px;
}

.opo-contact-page .opo-contact-card h2 {
  margin: 0 0 10px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
}

.opo-contact-page .opo-contact-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.opo-contact-page .opo-contact-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--color-gold);
  font-size: 17px;
}

.opo-contact-page .opo-contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  margin-top: auto;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  border-radius: 5px;
}

/* Formulário e motivos */
.opo-contact-page .opo-contact-main {
  display: grid;
  grid-template-columns: 2fr 1.15fr;
  gap: 22px;
  margin-bottom: 28px;
}

.opo-contact-page .opo-contact-form,
.opo-contact-page .opo-contact-why {
  padding: 28px;
}

.opo-contact-page .opo-contact-form h2,
.opo-contact-page .opo-contact-why h2 {
  margin: 0 0 24px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
}

.opo-contact-page .opo-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.opo-contact-page .opo-contact-form input,
.opo-contact-page .opo-contact-form textarea {
  width: 100%;
  padding: 15px;
  color: var(--color-white);
  font: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  outline: 0;
}

.opo-contact-page .opo-contact-form input:focus,
.opo-contact-page .opo-contact-form textarea:focus {
  border-color: var(--color-gold);
}

.opo-contact-page .opo-contact-form input::placeholder,
.opo-contact-page .opo-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .65);
}

.opo-contact-page .opo-contact-form textarea {
  height: 140px;
  margin-bottom: 16px;
  resize: vertical;
}

.opo-contact-page .opo-contact-form button {
  min-height: 46px;
  padding: 0 28px;
  color: var(--color-gold);
  font: inherit;
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--color-gold);
  border-radius: 5px;
}

.opo-contact-page .opo-contact-form button i {
  margin-right: 8px;
}

.opo-contact-page .opo-why-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.opo-contact-page .opo-why-item:last-child {
  margin-bottom: 0;
}

.opo-contact-page .opo-why-item>i {
  flex: 0 0 32px;
  color: var(--color-gold);
  font-size: 28px;
}

.opo-contact-page .opo-why-item h3 {
  margin: 0 0 5px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: var(--font-weight-extrabold);
}

.opo-contact-page .opo-why-item p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

/* Mapa */
.opo-contact-page .opo-contact-map {
  position: relative;
  min-height: 450px;
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
}

.opo-contact-page .opo-contact-map-frame {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.opo-contact-page .opo-map-box {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 290px;
  padding: 24px;
  background: rgba(6, 21, 43, .94);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
}

.opo-contact-page .opo-map-box h2 {
  margin: 0 0 18px;
  color: var(--color-white);
  font-size: 19px;
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
}

.opo-contact-page .opo-map-box p {
  margin: 0 0 14px;
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
}

.opo-contact-page .opo-map-box p i {
  margin-right: 8px;
  color: var(--color-gold);
}

.opo-contact-page .opo-map-box span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.45;
}

.opo-contact-page .opo-map-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  border-radius: 5px;
}

/* CTA */
.opo-contact-page .opo-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 34px;
  background: rgba(6, 21, 43, .88);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
}

.opo-contact-page .opo-contact-cta>div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.opo-contact-page .opo-contact-cta>div>i {
  color: var(--color-gold);
  font-size: 54px;
}

.opo-contact-page .opo-contact-cta h2 {
  margin: 0 0 4px;
  color: var(--color-white);
  font-size: 30px;
  font-weight: var(--font-weight-extrabold);
}

.opo-contact-page .opo-contact-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.opo-contact-page .opo-contact-cta>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 34px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  border-radius: 5px;
}

.opo-contact-page .opo-contact-card a:hover,
.opo-contact-page .opo-contact-form button:hover,
.opo-contact-page .opo-map-box a:hover,
.opo-contact-page .opo-contact-cta>a:hover {
  color: var(--color-navy);
  background: var(--color-gold);
}

@media (max-width: 1024px) {
  .opo-contact-page .opo-contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opo-contact-page .opo-contact-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .opo-contact-page .opo-contact-hero {
    padding-block: 50px;
  }

  .opo-contact-page .opo-contact-intro>p {
    font-size: 16px;
  }

  .opo-contact-page .opo-contact-cards,
  .opo-contact-page .opo-form-row {
    grid-template-columns: 1fr;
  }

  .opo-contact-page .opo-contact-map {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .opo-contact-page .opo-contact-map-frame {
    height: 360px;
  }

  .opo-contact-page .opo-map-box {
    position: static;
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-radius: 0;
  }

  .opo-contact-page .opo-contact-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
  }

  .opo-contact-page .opo-contact-cta>div {
    align-items: flex-start;
  }

  .opo-contact-page .opo-contact-cta h2 {
    font-size: 24px;
  }

  .opo-contact-page .opo-contact-cta>a {
    width: 100%;
  }
}

/* Página: Obrigado */
.opo-thank-you {
  position: relative;
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  padding: 72px var(--content-padding);
  overflow: hidden;
  isolation: isolate;
  background:
    url('../images/thank-you/porto-night-dom-luis-bridge.webp') center / cover no-repeat;
}

.opo-thank-you-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 12, 28, .90), rgba(4, 12, 28, .66)),
    linear-gradient(180deg, rgba(4, 12, 28, .10), rgba(4, 12, 28, .78));
}

.opo-thank-you-content {
  align-self: center;
  width: min(100%, 640px);
  padding: clamp(34px, 5vw, 58px);
  margin: auto;
  text-align: center;
  background: rgba(6, 21, 43, .74);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(4, 12, 28, .34);
  backdrop-filter: blur(10px);
}

.opo-thank-you-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  color: var(--color-navy);
  font-size: 29px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(214, 161, 28, .30);
}

.opo-thank-you-eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.opo-thank-you h1 {
  margin: 0 0 18px;
  color: var(--color-white);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.12;
}

.opo-thank-you-description {
  max-width: 500px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.65;
}

.opo-thank-you-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 26px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: var(--font-weight-extrabold);
  text-decoration: none;
  background: #25d366;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .24);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.opo-thank-you-whatsapp i {
  font-size: 21px;
}

.opo-thank-you-whatsapp:hover {
  color: var(--color-white);
  background: #1eaf56;
  transform: translateY(-2px);
}

.opo-thank-you-home {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}

.opo-thank-you-home:hover {
  color: var(--color-white);
}

.opo-thank-you-home i {
  transition: transform var(--transition-fast);
}

.opo-thank-you-home:hover i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .opo-thank-you {
    min-height: calc(100dvh - var(--header-height-mobile));
    padding-block: 46px;
    background-position: 62% center;
  }

  .opo-thank-you-content {
    padding: 36px 24px;
    border-radius: 14px;
  }

  .opo-thank-you-icon {
    width: 62px;
    height: 62px;
    font-size: 25px;
  }

  .opo-thank-you-description {
    font-size: 15px;
  }

  .opo-thank-you-whatsapp {
    width: 100%;
  }
}

[data-barba="container"] {
  will-change: opacity, transform;
}