/* Reserva inline (FareHarbor) */

.booking-inline {
  padding: var(--space-2xl) var(--space-md);
}

.booking-inline__shell {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--surface-base);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.booking-inline__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(30, 60, 114, 0.06);
  border-bottom: 1px solid var(--border-color);
}

.booking-inline__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-width: 0;
}

.booking-inline__eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary-700);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-inline__hint {
  color: var(--color-neutral-700);
  font-size: var(--font-size-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-inline__heading {
  margin: 0;
  color: var(--text-color);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: var(--font-weight-bold, 700);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-inline__close {
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--text-color);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.booking-inline__close:hover {
  background: rgba(0, 87, 179, 0.08);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.booking-inline__iframe {
  width: 100%;
  height: 860px;
  border: 0;
  background: #fff;
}

/* Modo "página de reserva": maximiza o iframe e evita scroll do site */
.booking-inline--full {
  padding: var(--space-lg) var(--space-md);
  min-height: calc(100vh - 140px);
  display: flex;
}

.booking-inline--full .booking-inline__shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
}

.booking-inline--full .booking-inline__iframe {
  height: 100%;
}

@media (max-width: 768px) {
  .booking-inline {
    padding: var(--space-xl) var(--space-sm);
  }

  .booking-inline__header {
    padding: var(--space-sm) var(--space-md);
  }

  .booking-inline__hint {
    display: none;
  }

  .booking-inline__iframe {
    height: 78vh;
    min-height: 560px;
  }

  .booking-inline--full {
    padding: var(--space-sm);
    min-height: calc(100vh - 120px);
  }

  .booking-inline--full .booking-inline__shell {
    height: calc(100vh - 140px);
  }
}


