/* ==========================================================================
   BOOKING NOW · Motor de Reserva — Layout de referência Belavista
   Paleta oficial: Ciano BN #11b7c9 · Navy Laliber #151A3A · Roxo #6C4DFF · Azul #25B8FF
   Mobile-first. Tipografia fluida clamp().
   ========================================================================== */

:root {
  /* ——— Paleta BookingNow + Lalibertech (oficial) ——— */
  --bn-ciano: #11b7c9;
  --bn-ciano-escuro: #0e98a8;
  --bn-navy: #151A3A;
  --bn-navy-escuro: #0b0f24;
  --bn-roxo: #6C4DFF;
  --bn-azul: #25B8FF;

  --branco: #ffffff;
  --fundo: #f4f8fb;
  --fundo-2: #ffffff;
  --fundo-barra: #eef4ff;      /* cinza-azulado claro da barra resumo */
  --texto: #101828;
  --texto-suave: #5f6b7a;
  --texto-muito-suave: #8a929c;
  --borda: #e5e9f0;
  --borda-forte: #d1d9e3;
  --sucesso: #1f9d6a;
  --sucesso-fundo: #effaf4;
  --aviso: #b45309;
  --erro: #d64c4c;

  /* ——— Tipografia ——— */
  --font-corpo: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-titulo: 'Montserrat', var(--font-corpo);

  /* ——— Espaçamentos/Layout ——— */
  --wrap: min(1200px, 96vw);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-pill: 999px;
  --sombra-sm: 0 2px 8px rgba(17, 42, 66, .06);
  --sombra: 0 10px 30px rgba(17, 42, 66, .10);
  --sombra-lg: 0 18px 52px rgba(17, 42, 66, .14);

  /* ——— Header fixo + conteúdo push down ——— */
  --alt-topbar: 88px;
}

/* ——— Reset global ——— */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-corpo);
  background: var(--fundo);
  color: var(--texto);
  font-size: clamp(14px, 1.85vw, 16px);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-titulo); font-weight: 700; letter-spacing: -0.01em; color: var(--texto); }
h2 { font-size: clamp(1.35rem, 3.2vw, 1.85rem); line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); }
p { margin: 0; }
small { font-size: clamp(0.76rem, 1.7vw, 0.88rem); }

.bn-wrap { width: var(--wrap); margin: 0 auto; }
.bn-subtitulo { color: var(--texto-suave); font-size: clamp(0.9rem, 2vw, 1rem); margin-top: 8px; }

/* ==========================================================================
   HEADER SUPERIOR (3 colunas) · OVERLAY NAVY + COR PADRÃO BN (sem foto de pousada)
   A foto do header da pousada específica vem carregada DINAMICAMENTE via
   style="background-image: url(...)" injetado pelo app.js quando disponível.
   ========================================================================== */
.bn-topbar {
  position: sticky; top: 0; z-index: 50;
  background:
      linear-gradient(180deg, rgba(11,15,36,0.78) 0%, rgba(21,26,58,0.86) 100%),
      #0b0f24;
  color: #fff;
  box-shadow: 0 10px 30px rgba(11, 15, 36, 0.28);
}
.bn-topbar .bn-wrap {
  height: var(--alt-topbar);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* —— Coluna Esquerda: Logo BOOKINGNOW —— */
.bn-brand-bn {
  display: flex; align-items: center; gap: 12px;
  justify-self: start;
  transition: transform .2s ease;
}
.bn-brand-bn:hover { transform: translateY(-1px); }
.bn-brand-bn__img {
  display: block;
  width: auto;
  height: auto;
  max-height: 68px;
  max-width: min(380px, 42vw);
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
}
.bn-brand-bn__icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--bn-ciano), var(--bn-roxo));
  border-radius: 12px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(17, 183, 201, 0.35);
}
.bn-brand-bn__name {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.bn-brand-bn__accent {
  background: linear-gradient(135deg, var(--bn-ciano) 0%, var(--bn-azul) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.bn-brand-bn__sub {
  display: block;
  color: #a3adc4;
  font-size: 0.72rem;
  font-weight: 500;
  margin-top: 4px;
}

/* —— Coluna Centro: Pousada Brand (agora só imagem) —— */
.bn-pousada-brand {
  display: flex; align-items: center; gap: 14px;
  justify-self: center;
  max-width: 420px;
}
.bn-pousada-brand__logo {
  width: auto;
  height: auto;
  max-height: 80px;
  max-width: min(360px, 50vw);
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}
.bn-pousada-brand__nome {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
}
.bn-pousada-brand__local {
  display: block;
  color: #a3adc4;
  font-size: 0.7rem;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

/* —— Coluna Direita: Segurança + WhatsApp —— */
.bn-header-actions {
  display: flex; align-items: center; gap: 14px;
  justify-self: end;
}
.bn-chip-seguro {
  display: flex; align-items: center; gap: 10px;
  color: #e8ecf7;
}
.bn-chip-seguro > i {
  color: #7fe584;
  font-size: 1.2rem;
}
.bn-chip-seguro strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.15;
  color: #fff;
}
.bn-chip-seguro small {
  color: #98a1bb;
  font-size: 0.7rem;
  line-height: 1.1;
}
.bn-chip-telefone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  border-radius: var(--r-pill);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all .2s ease;
  background: rgba(37, 211, 102, 0.12);
}
.bn-chip-telefone:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.35), rgba(0, 230, 118, 0.3));
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}
.bn-chip-telefone i { color: #25D366; font-size: 1rem; }

/* ==========================================================================
   WRAPPER PÁGINA + STEPPER 3 FASES
   ========================================================================== */
.bn-pg-wrap { padding: clamp(24px, 4vw, 40px) 0 clamp(32px, 5vw, 56px); }

.bn-stepper { margin-bottom: clamp(18px, 3vw, 28px); }
.bn-stepper ol {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.bn-stepper ol::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(16.6% + 0px);
  right: calc(16.6% + 0px);
  height: 2px;
  background: var(--borda);
  z-index: 0;
}
.bn-step-line {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  z-index: 1;
}
.bn-step-line__num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--borda-forte);
  color: var(--texto-suave);
  font-weight: 700;
  display: grid; place-items: center;
  transition: all .3s ease;
}
.bn-step-line__label {
  font-size: clamp(0.8rem, 1.7vw, 0.95rem);
  font-weight: 600;
  color: var(--texto-suave);
  text-align: center;
}
.bn-step-line.is-active .bn-step-line__num {
  background: linear-gradient(135deg, var(--bn-ciano), var(--bn-ciano-escuro));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(17, 183, 201, 0.3);
}
.bn-step-line.is-active .bn-step-line__label { color: var(--texto); }
.bn-step-line.is-done .bn-step-line__num {
  background: var(--sucesso);
  border-color: transparent;
  color: #fff;
}

/* ==========================================================================
   BARRA DE BUSCA (branca, sombreada, 5 col)
   ========================================================================== */
.bn-barra {
  background: var(--branco);
  border-radius: var(--r-lg);
  box-shadow: var(--sombra);
  padding: clamp(18px, 2.8vw, 24px);
  margin-bottom: clamp(14px, 2.5vw, 20px);
  border: 1px solid var(--borda);
}
.bn-barra__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: clamp(12px, 1.8vw, 18px);
  align-items: end;
}
.bn-barra__campo { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bn-barra__campo label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--texto-suave);
}
.bn-barra__input {
  position: relative;
  display: flex; align-items: center;
}
.bn-barra__input i {
  position: absolute;
  right: 14px;
  color: var(--texto-suave);
  font-size: 0.9rem;
  pointer-events: none;
}
.bn-barra__input input,
.bn-barra__input select {
  width: 100%;
  appearance: none; -webkit-appearance: none;
  border: 1.5px solid var(--borda-forte);
  background: #fff;
  padding: 12px 44px 12px 14px;
  border-radius: var(--r);
  font-size: 0.95rem;
  color: var(--texto);
  font-weight: 500;
  transition: border .18s ease, box-shadow .18s ease;
}
.bn-barra__input select { cursor: pointer; }
.bn-barra__input input:focus,
.bn-barra__input select:focus {
  outline: none;
  border-color: var(--bn-ciano);
  box-shadow: 0 0 0 3px rgba(17, 183, 201, 0.18);
}
.bn-botao-alterar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--bn-ciano), var(--bn-ciano-escuro));
  color: #fff;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all .2s ease;
  box-shadow: 0 8px 22px rgba(17, 183, 201, 0.28);
  white-space: nowrap;
}
.bn-botao-alterar:hover { transform: translateY(-1px); filter: brightness(1.06); }
.bn-botao-alterar:active { transform: translateY(0); filter: brightness(.95); }
.bn-botao-alterar:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ==========================================================================
   BARRA DE RESUMO DO PERÍODO (cinza-azul claro)
   ========================================================================== */
.bn-resumo-periodo {
  background: var(--fundo-barra);
  border-radius: var(--r);
  padding: 14px 22px;
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: clamp(18px, 3vw, 28px);
  border: 1px solid #dde7f8;
}
.bn-resumo-periodo__item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--texto);
  font-size: 0.92rem;
}
.bn-resumo-periodo__item i { color: var(--bn-ciano); }
.bn-resumo-periodo__item strong { font-weight: 700; }
.bn-resumo-periodo__sep { color: #bcc6d9; font-weight: 500; }
.bn-resumo-periodo__link {
  margin-left: auto;
  color: var(--bn-ciano-escuro);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .18s ease;
}
.bn-resumo-periodo__link:hover { background: rgba(17, 183, 201, 0.1); }

/* ==========================================================================
   CABEÇALHO ACOMODAÇÕES + SELO DISPONÍVEL
   ========================================================================== */
.bn-main { padding-top: clamp(6px, 1vw, 12px); }

.bn-cabecalho-acomodacoes {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(18px, 3vw, 28px);
}
.bn-selo-disponivel {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--sucesso-fundo);
  border: 1px solid #bfe8cf;
  border-radius: var(--r-pill);
  color: var(--sucesso);
  font-size: 0.86rem;
  font-weight: 600;
  flex-shrink: 0;
}
.bn-selo-disponivel i { font-size: 1.1rem; }
.bn-selo-disponivel strong { color: var(--sucesso); font-weight: 700; }

/* ==========================================================================
   CARDS DE ACOMODAÇÃO — HORIZONTAIS (3 colunas: foto / infos / preço+botão)
   ========================================================================== */
.bn-grid-cards {
  display: flex; flex-direction: column;
  gap: clamp(14px, 2.4vw, 20px);
}

.bn-card {
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sombra-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr auto;
  min-height: 220px;
}
.bn-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra-lg);
  border-color: #cddaea;
}

/* —— Coluna 1: Foto —— */
.bn-card__foto {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  background: linear-gradient(135deg, #dbeafe, #e9efff);
  overflow: hidden;
}
.bn-card__foto img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.bn-card:hover .bn-card__foto img { transform: scale(1.05); }
.bn-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(16, 24, 40, 0.78);
  color: #fff;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 0.76rem;
  font-weight: 700;
  z-index: 3;
}
.bn-card__badge.disponivel { background: rgba(31, 157, 106, 0.94); }

/* —— Carrossel do card (setas + contador) —— */
.bn-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #101828;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.18);
  transition: background .18s ease, transform .18s ease, opacity .18s ease;
  opacity: 0;
  z-index: 4;
  font-size: 13px;
}
.bn-card:hover .bn-carousel-nav,
.bn-card:focus-within .bn-carousel-nav {
  opacity: 1;
}
.bn-carousel-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.06);
}
.bn-carousel-nav:active {
  transform: translateY(-50%) scale(0.96);
}
.bn-carousel-nav--prev { left: 10px; }
.bn-carousel-nav--next { right: 10px; }
.bn-carousel-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.72);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  user-select: none;
}
.bn-carousel-counter__sep { opacity: .65; }

/* —— Lightbox global (clica na foto → abre tela cheia) —— */
.bn-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 12, 18, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.bn-lightbox[hidden] { display: none; }
.bn-lightbox:not([hidden]) { display: flex; }

.bn-lightbox__frame {
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.bn-lightbox__frame img {
  max-width: min(1400px, 92vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.65);
  user-select: none;
  -webkit-user-drag: none;
}
.bn-lightbox__counter {
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bn-lightbox__nav,
.bn-lightbox__close {
  border: none;
  cursor: pointer;
  background: rgba(20, 22, 30, 0.86);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  transition: background .16s ease, transform .16s ease, opacity .16s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}
.bn-lightbox__nav:hover,
.bn-lightbox__close:hover {
  background: rgba(40, 42, 54, 0.94);
  transform: scale(1.06);
}
.bn-lightbox__nav:active,
.bn-lightbox__close:active { transform: scale(0.94); }

.bn-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 999px;
  font-size: 22px;
  z-index: 2;
}
.bn-lightbox__nav--prev { left: clamp(12px, 3vw, 40px); }
.bn-lightbox__nav--next { right: clamp(12px, 3vw, 40px); }

.bn-lightbox__close {
  position: absolute;
  top: clamp(14px, 3vh, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 20px;
  z-index: 3;
}

@media (max-width: 720px) {
  .bn-lightbox { padding: 10px; }
  .bn-lightbox__nav { width: 50px; height: 50px; font-size: 18px; }
  .bn-lightbox__close { width: 42px; height: 42px; font-size: 18px; }
  .bn-lightbox__frame img { border-radius: 16px; max-height: 80vh; }
}

.bn-card__foto .bn-carousel-img { cursor: zoom-in; }
.bn-lightbox__frame img { cursor: zoom-out; }

.bn-no-photo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(180deg, #eef2f7 0%, #dfe7f1 100%);
  color: #5b6472;
}
.bn-no-photo__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(91, 100, 114, 0.08);
  border: 1px dashed rgba(91, 100, 114, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6a7484;
  font-size: 26px;
  margin-bottom: 2px;
}
.bn-no-photo__title {
  font-size: 14.5px;
  font-weight: 800;
  color: #3c434f;
  letter-spacing: -.1px;
}
.bn-no-photo__sub {
  font-size: 12.5px;
  line-height: 1.5;
  color: #6a7484;
  max-width: 300px;
}
@media (max-width: 720px) {
  .bn-no-photo { padding: 18px 12px; gap: 8px; }
  .bn-no-photo__icon { width: 52px; height: 52px; font-size: 21px; }
  .bn-no-photo__title { font-size: 13.5px; }
  .bn-no-photo__sub { font-size: 11.8px; }
}

/* —— Coluna 2: Dados da acomodação —— */
.bn-card__body {
  padding: clamp(18px, 2.6vw, 26px);
  display: flex; flex-direction: column; gap: 12px;
  min-width: 0;
}
.bn-card__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px;
}
.bn-card__top h3 { line-height: 1.2; }
.bn-capacidade {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--texto-suave);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 4px 10px;
  background: var(--fundo);
  border-radius: var(--r-pill);
}
.bn-card__comod-lista {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
}
.bn-card__comod-lista li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem;
  color: var(--texto);
  font-weight: 500;
}
.bn-card__comod-lista i {
  color: var(--bn-ciano);
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
.bn-card__desc {
  color: var(--texto-suave);
  font-size: 0.9rem;
  line-height: 1.55;
}
.bn-card__desc--collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bn-card__toggle {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto;
  color: var(--bn-ciano-escuro);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 4px 0;
  align-self: flex-start;
  transition: color .18s ease;
}
.bn-card__toggle:hover { color: var(--bn-ciano); }
.bn-card__toggle i { font-size: 0.72rem; transition: transform .25s ease; }
.bn-card__toggle.is-open i { transform: rotate(180deg); }

/* —— Coluna 3: Preço + Botão Escolher —— */
.bn-card__preco {
  padding: clamp(18px, 2.6vw, 26px);
  border-left: 1px solid var(--borda);
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 6px;
  min-width: 210px;
  text-align: right;
  justify-content: space-between;
}
.bn-preco-linha1 {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.bn-preco-por-noite {
  font-size: 0.9rem;
  color: var(--texto);
  font-weight: 500;
}
.bn-preco-por-noite strong { font-weight: 700; }
.bn-noites-info {
  font-size: 0.86rem;
  color: var(--texto-suave);
  font-weight: 500;
}
.bn-preco-total {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 2px;
}
.bn-preco-total__valor {
  font-family: var(--font-titulo);
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  font-weight: 800;
  color: var(--texto);
  letter-spacing: -0.02em;
  line-height: 1;
}
.bn-taxas-info {
  color: var(--texto-suave);
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.bn-botao-escolher {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--bn-ciano), var(--bn-ciano-escuro));
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all .22s ease;
  box-shadow: 0 8px 22px rgba(17, 183, 201, 0.28);
  white-space: nowrap;
  align-self: stretch;
  margin-top: auto;
}
.bn-botao-escolher:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 12px 30px rgba(17, 183, 201, 0.35);
}

/* ==========================================================================
   VAZIO
   ========================================================================== */
.bn-vazio {
  padding: clamp(40px, 8vw, 70px) clamp(20px, 4vw, 40px);
  text-align: center;
  background: var(--fundo-2);
  border: 1px dashed var(--borda-forte);
  border-radius: var(--r-lg);
  color: var(--texto-suave);
}
.bn-vazio h3 { margin-bottom: 10px; color: var(--texto); }

/* ==========================================================================
   STEP BÁSICOS (fade in)
   ========================================================================== */
.bn-step { animation: fadeUp .28s ease both; }
.bn-step[hidden] { display: none !important; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bn-step-header { padding: 4px 0 18px; }
.bn-link-voltar {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 14px;
  padding: 6px 10px;
  margin-left: -10px;
  border-radius: 10px;
  color: var(--bn-ciano-escuro);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background .18s ease;
}
.bn-link-voltar:hover { background: rgba(17, 183, 201, 0.09); }
.bn-link-voltar i { font-size: 0.8rem; }

/* ==========================================================================
   PASSO 2/3: FORM + RESUMO DUAL
   ========================================================================== */
.bn-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.8vw, 24px);
}
@media (min-width: 880px) {
  .bn-dual { grid-template-columns: 1.45fr 1fr; align-items: start; }
  .bn-resumo-sticky { position: sticky; top: calc(var(--alt-topbar) + 16px); }
}
.bn-form-wrapper {
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3.2vw, 30px);
  box-shadow: var(--sombra-sm);
}
.bn-form { display: flex; flex-direction: column; gap: clamp(14px, 2.2vw, 18px); }
.bn-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 2vw, 16px); }
@media (max-width: 560px) { .bn-row-2 { grid-template-columns: 1fr; } }

.bn-campo-g { display: flex; flex-direction: column; gap: 6px; }
.bn-campo-g label {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--texto);
}
.bn-campo-g label i { color: var(--bn-ciano); font-size: 0.82rem; }
.bn-campo-g input, .bn-campo-g textarea, .bn-campo-g select {
  width: 100%;
  border: 1.5px solid var(--borda-forte);
  background: #fff;
  padding: 12px 14px;
  border-radius: var(--r);
  font-size: 0.95rem;
  transition: border .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.bn-campo-g input::placeholder, .bn-campo-g textarea::placeholder { color: var(--texto-muito-suave); }
.bn-campo-g input:focus, .bn-campo-g textarea:focus {
  outline: none;
  border-color: var(--bn-ciano);
  box-shadow: 0 0 0 3px rgba(17, 183, 201, 0.16);
}
.bn-step-footer {
  margin-top: clamp(6px, 1.2vw, 10px);
  display: flex; flex-direction: column; gap: 12px;
}
.bn-botao-primario {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--bn-ciano), var(--bn-ciano-escuro));
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all .22s ease;
  box-shadow: 0 8px 22px rgba(17, 183, 201, 0.28);
}
.bn-botao-primario:hover { transform: translateY(-1px); filter: brightness(1.06); }
.bn-botao-primario:disabled { opacity: .55; cursor: not-allowed; filter: grayscale(.3); transform: none; }
.bn-botao-grande { width: 100%; padding: 16px 28px; font-size: 1rem; }

.bn-msg { padding: 12px 14px; border-radius: 12px; font-size: 0.88rem; }
.bn-msg.erro { background: #fef2f2; color: var(--erro); border: 1px solid #fecaca; }
.bn-msg.ok   { background: #f0fdf4; color: var(--sucesso); border: 1px solid #bbf7d0; }
.bn-msg.info { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.bn-aviso-intencao {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  color: #7c2d12;
}
.bn-aviso-intencao i { color: #ea580c; flex-shrink: 0; margin-top: 2px; }
.bn-aviso-intencao em { font-style: normal; font-weight: 700; }

/* ==========================================================================
   RESUMO (aside)
   ========================================================================== */
.bn-resumo {
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  padding: clamp(18px, 2.8vw, 24px);
  box-shadow: var(--sombra-sm);
  display: flex; flex-direction: column; gap: 14px;
}
.bn-resumo > h3 { font-size: 1.1rem; }
.bn-resumo-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #e9efff);
}
.bn-resumo-img img { width: 100%; height: 100%; object-fit: cover; }
.bn-resumo-item {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 3px 0;
  font-size: 0.9rem;
}
.bn-resumo-item .k { color: var(--texto-suave); }
.bn-resumo-item .v { color: var(--texto); font-weight: 600; text-align: right; }
.bn-resumo-divider { height: 1px; background: var(--borda); margin: 4px 0; }
.bn-resumo-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding-top: 8px;
  border-top: 1.5px dashed var(--borda);
  margin-top: 4px;
}
.bn-resumo-total .k { color: var(--texto); font-weight: 700; font-size: 0.96rem; }
.bn-resumo-total .v {
  font-family: var(--font-titulo);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--bn-ciano-escuro);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   CONFIRMA CARD dados hóspede
   ========================================================================== */
.bn-confirma-card {
  margin-top: 6px;
  padding: 18px 20px;
  background: var(--fundo);
  border: 1px solid var(--borda);
  border-radius: var(--r);
  display: flex; flex-direction: column; gap: 8px;
}
.bn-confirma-card .linha {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 0.9rem;
}
.bn-confirma-card .k { color: var(--texto-suave); }
.bn-confirma-card .v { font-weight: 600; text-align: right; color: var(--texto); }

/* ==========================================================================
   STEP 4: SUCESSO
   ========================================================================== */
.bn-sucesso {
  max-width: 680px;
  margin: 0 auto;
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  border-radius: var(--r-lg);
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
  box-shadow: var(--sombra);
  text-align: center;
}
.bn-sucesso-check {
  width: clamp(72px, 14vw, 96px);
  height: clamp(72px, 14vw, 96px);
  border-radius: 50%;
  background: var(--sucesso-fundo);
  color: var(--sucesso);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  animation: pulseOk 1.8s ease-in-out infinite;
}
@keyframes pulseOk {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 157, 106, 0.35); }
  50%      { box-shadow: 0 0 0 16px rgba(31, 157, 106, 0); }
}
.bn-sucesso h2 { margin-bottom: 10px; color: var(--texto); }
.bn-sucesso-codigo {
  display: inline-block;
  margin: 16px auto 20px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(17, 183, 201, 0.12), rgba(108, 77, 255, 0.12));
  border: 1px solid rgba(108, 77, 255, 0.25);
  color: var(--bn-navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--r-pill);
}
.bn-sucesso-resumo {
  margin: 20px auto 0;
  background: var(--fundo);
  border: 1px solid var(--borda);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.bn-sucesso-acoes {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 28px;
}
.bn-botao-sec {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--fundo);
  color: var(--texto);
  border: 1.5px solid var(--borda-forte);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all .18s ease;
}
.bn-botao-sec:hover { background: var(--borda); transform: translateY(-1px); }
.bn-botao-wpp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all .2s ease;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
}
.bn-botao-wpp:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* —— Hero Inicial (sem deep link) —— */
.bn-hero-step .bn-hero-inicial {
  max-width: 60ch;
  margin: clamp(20px, 4vw, 40px) auto;
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
}
.bn-hero-inicial h2 { margin-bottom: 12px; }
.bn-hero-inicial p { color: var(--texto-suave); }

/* ==========================================================================
   BENEFÍCIOS (3 cards antes do footer)
   ========================================================================== */
.bn-beneficios {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
}
.bn-beneficio {
  background: var(--fundo-2);
  border: 1px solid var(--borda);
  border-radius: var(--r);
  padding: clamp(16px, 2.6vw, 22px);
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--sombra-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.bn-beneficio:hover { transform: translateY(-2px); box-shadow: var(--sombra); }
.bn-beneficio__icone {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.25rem;
}
.bn-beneficio__icone.cor-1 { background: rgba(17, 183, 201, 0.14); color: var(--bn-ciano); }
.bn-beneficio__icone.cor-2 { background: rgba(17, 183, 201, 0.14); color: var(--bn-ciano); }
.bn-beneficio__icone.cor-3 { background: rgba(108, 77, 255, 0.14); color: var(--bn-roxo); }
.bn-beneficio h4 { font-size: 0.98rem; margin-bottom: 4px; }
.bn-beneficio p { color: var(--texto-suave); font-size: 0.86rem; line-height: 1.5; }

/* ==========================================================================
   FOOTER · Estilo Oficial BookingNow · Lalibertech (Referência imagem enviada)
   ========================================================================== */
.bn-footer {
  background: #0e1326;
  color: #a0aac7;
  margin-top: clamp(28px, 5vw, 56px);
  padding-top: clamp(32px, 5.5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}
.bn-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(108, 77, 255, 0.35) 50%, transparent 100%);
}

/* ===== Grid 4 colunas ===== */
.bn-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.15fr 1fr;
  gap: 0;
  padding-bottom: clamp(24px, 4vw, 40px);
  align-items: start;
}
.bn-footer__col {
  padding: 6px clamp(18px, 2.5vw, 36px) 0 clamp(18px, 2.5vw, 36px);
}
.bn-footer__col:first-child {
  padding-left: 0;
}
.bn-footer__col:last-child {
  padding-right: 0;
}

/* ===== Divisores verticais finos (3 colunas intercaladas) ===== */
.bn-ft-divider {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

/* ===== Títulos das colunas (uppercase espaçado) ===== */
.bn-footer__col-titulo {
  font-family: var(--font-titulo);
  color: #d8dff4;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 22px 0;
}

/* ===== COLUNA 1: BookingNow Brand (logo PNG oficial) ===== */
.bn-footer__brand {
  display: inline-flex; align-items: center; gap: 12px;
  transition: transform .2s ease, filter .2s ease;
}
.bn-footer__brand:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.bn-footer__brand-img {
  width: auto;
  height: auto;
  max-height: 92px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(108, 77, 255, 0.35)) drop-shadow(0 2px 6px rgba(37, 184, 255, 0.25));
}
.bn-footer__brand-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #11b7c9 0%, #6C4DFF 100%);
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.7rem;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(108, 77, 255, 0.3);
}
.bn-footer__brand-text { display: flex; flex-direction: column; gap: 4px; }
.bn-footer__brand-name {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
}
.bn-footer__brand-grad {
  background: linear-gradient(135deg, #11b7c9 0%, #25B8FF 40%, #6C4DFF 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.bn-footer__brand-sub {
  color: #8891ad;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.bn-footer__slogan {
  margin-top: 22px;
  color: #a3adcb;
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 360px;
}

/* ===== COLUNA 2: Links Rápidos ===== */
.bn-footer__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.bn-footer__links li a {
  display: inline-flex; align-items: center; gap: 10px;
  color: #a0aac7;
  font-size: 0.95rem;
  transition: all .18s ease;
  text-decoration: none;
}
.bn-footer__links li a i {
  color: #6f7a9c;
  font-size: 0.8rem;
  transition: transform .18s ease, color .18s ease;
}
.bn-footer__links li a:hover {
  color: #fff;
  transform: translateX(2px);
}
.bn-footer__links li a:hover i {
  color: var(--bn-ciano);
  transform: translateX(2px);
}

/* ===== COLUNA 3: Fale Conosco ===== */
.bn-footer__contato {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.bn-footer__contato-link {
  display: inline-flex; align-items: center; gap: 12px;
  color: #b0b9d4;
  font-size: 0.96rem;
  transition: color .18s ease;
}
a.bn-footer__contato-link:hover { color: #fff; }
.bn-footer__ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.bn-footer__ico--wpp {
  background: rgba(37, 211, 102, 0.14);
  color: #25D366;
}
.bn-footer__ico--email {
  background: rgba(108, 77, 255, 0.16);
  color: #a88dff;
}
.bn-footer__ico--fone {
  background: rgba(37, 184, 255, 0.14);
  color: #5ac7ff;
}
.bn-footer__ico--hora {
  background: rgba(37, 184, 255, 0.14);
  color: #5ac7ff;
}

/* ===== COLUNA 4: Desenvolvido por Lalibertech ===== */
.bn-footer__dev {
  display: inline-block;
  transition: transform .2s ease, filter .2s ease;
}
.bn-footer__dev:hover { transform: translateY(-1px); filter: brightness(1.1); }
.bn-footer__dev-logo {
  width: auto;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(108, 77, 255, 0.45)) drop-shadow(0 2px 6px rgba(37, 184, 255, 0.35));
  border-radius: 8px;
}
.bn-footer__dev-slogan {
  margin-top: 22px;
  color: #a0aac7;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ===== Linha Inferior (3 colunas) ===== */
.bn-footer__linha-inferior {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(16px, 2.5vw, 24px) 0 clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: #8a93b1;
  font-size: 0.88rem;
}

/* Segurança (esquerda) */
.bn-footer__seguro {
  display: inline-flex; align-items: center; gap: 10px;
  justify-self: start;
  color: #a0aac7;
  font-weight: 500;
}
.bn-footer__seguro i {
  color: #25B8FF;
  font-size: 1.05rem;
}

/* Copyright Laliber (centro) */
.bn-footer__copyright-laliber {
  justify-self: center;
  text-align: center;
  color: #a0aac7;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Redes sociais (direita) */
.bn-footer__redes {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 12px;
}
.bn-footer__redes a {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #8a93b1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all .22s ease;
  font-size: 0.98rem;
  text-decoration: none;
}
.bn-footer__redes a:hover {
  color: #fff;
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(108, 77, 255, 0.25), rgba(37, 184, 255, 0.2));
  border-color: rgba(108, 77, 255, 0.35);
  box-shadow: 0 6px 14px rgba(108, 77, 255, 0.22);
}

/* ==========================================================================
   RESPONSIVIDADE MOBILE (até 920px)
   ========================================================================== */
@media (max-width: 920px) {
  /* Header: 2 colunas compacto (bookingnow + WhatsApp na linha 1, pousada centro, seguro baixo) */
  :root { --alt-topbar: auto; }
  .bn-topbar { position: relative; }
  .bn-topbar .bn-wrap {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    height: auto;
    padding: 8px 0 10px;
    gap: 4px 12px;
    align-items: center;
  }
  .bn-brand-bn,
  .bn-pousada-brand,
  .bn-header-actions,
  .bn-chip-seguro {
    justify-self: initial !important;
  }

  /* Linha 1: BookingNow logo ESQUERDA, WhatsApp chip DIREITA */
  .bn-brand-bn { grid-column: 1 / 2; grid-row: 1 / 2; justify-self: start !important; }
  .bn-header-actions {
    display: contents;
    flex-wrap: nowrap;
  }
  .bn-header-actions > .bn-chip-telefone {
    grid-column: 2 / 3; grid-row: 1 / 2; justify-self: end !important;
  }

  /* Linha 2: Logo pousada CENTRO, ocupa 2 colunas */
  .bn-pousada-brand {
    grid-column: 1 / -1; grid-row: 2 / 3; justify-self: center !important;
  }

  /* Linha 3: Ambiente Seguro (chip discreto centralizado, 100% largura min) */
  .bn-chip-seguro {
    order: initial;
    grid-column: 1 / -1; grid-row: 3 / 4;
    justify-self: center !important;
    width: auto !important;
    padding: 0;
    margin-top: 2px;
  }

  /* Redução drástica de tamanhos logos (economiza 30%+ altura vs original) */
  .bn-brand-bn__img { max-height: 40px !important; max-width: 50vw; }
  .bn-pousada-brand__logo { max-height: 46px !important; max-width: 55vw; }

  /* Chips telefone + seguro MENORES (menos padding / fontes) */
  .bn-chip-telefone { padding: 7px 10px 7px 12px; font-size: 0.76rem; min-width: auto; gap: 6px; }
  .bn-chip-telefone i { font-size: 0.92rem; }
  .bn-chip-seguro { gap: 8px; }
  .bn-chip-seguro > i { font-size: 0.92rem; }
  .bn-chip-seguro strong { font-size: 0.74rem; }
  .bn-chip-seguro small { font-size: 0.64rem; line-height: 1.05; }

  /* Stepper labels some, fica só bolinhas */
  .bn-stepper ol { grid-template-columns: repeat(3, 1fr); }
  .bn-step-line__label { display: none; }

  /* Barra busca: 2 col */
  .bn-barra__grid {
    grid-template-columns: 1fr 1fr;
  }
  .bn-botao-alterar { grid-column: span 2; justify-content: center; }

  /* Cards acomodação: 1 col vertical */
  .bn-card {
    grid-template-columns: 1fr;
  }
  .bn-card__foto { aspect-ratio: 16 / 9; min-height: 200px; }
  .bn-card__preco {
    border-left: 0;
    border-top: 1px solid var(--borda);
    align-items: stretch;
    text-align: left;
  }
  .bn-preco-linha1, .bn-preco-total { align-items: flex-start; }

  /* Benefícios 1 col */
  .bn-beneficios { grid-template-columns: 1fr; }

  /* ===== Footer (Tablet): 2 colunas, divisores OFF ===== */
  .bn-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 8px;
  }
  .bn-footer__col {
    padding: 0 20px;
  }
  .bn-footer__col:first-child { padding-left: 0; }
  .bn-footer__col:nth-child(2) { padding-right: 0; }
  .bn-footer__col:nth-child(3) { padding-left: 0; }
  .bn-footer__col:last-child { padding-right: 0; }
  .bn-ft-divider { border-right: none; }
  .bn-footer__col:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 24px;
  }
  .bn-footer__col:nth-child(n+3) {
    padding-top: 4px;
  }
  /* Linha inferior empilhada: 1 col centralizada */
  .bn-footer__linha-inferior {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 18px;
  }
  .bn-footer__seguro,
  .bn-footer__copyright-laliber,
  .bn-footer__redes {
    justify-self: center !important;
  }
}

@media (max-width: 560px) {
  .bn-barra__grid { grid-template-columns: 1fr; }
  .bn-botao-alterar { grid-column: span 1; }
  .bn-cabecalho-acomodacoes { flex-direction: column; align-items: stretch; }
  .bn-selo-disponivel { align-self: flex-start; }
  .bn-resumo-periodo { padding: 12px 14px; }
  .bn-resumo-periodo__link { margin-left: 0; }
  .bn-card__comod-lista { grid-template-columns: 1fr; }
  .bn-chip-seguro { display: none; }

  /* ===== Footer (Ultra Mobile): 1 coluna centralizada ===== */
  .bn-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bn-footer__col,
  .bn-footer__col:first-child,
  .bn-footer__col:last-child {
    padding: 0;
    text-align: center;
  }
  .bn-footer__col:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 20px;
  }
  .bn-footer__col:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: 20px;
  }
  .bn-footer__brand { justify-content: center; }
  .bn-footer__slogan {
    margin-left: auto; margin-right: auto;
    text-align: center;
  }
  .bn-footer__links {
    align-items: center;
  }
  .bn-footer__contato {
    align-items: center;
  }
  .bn-footer__contato-link { justify-content: center; }
  .bn-footer__dev-slogan {
    text-align: center;
  }
  /* Linha inferior: tudo centralizado espaçado */
  .bn-footer__linha-inferior {
    gap: 14px;
  }
}

/* ——— Spinner inline ——— */
.bn-spin {
  display: inline-block;
  width: 1em; height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: bnSpin .8s linear infinite;
  vertical-align: -2px;
  margin-right: 8px;
}
@keyframes bnSpin { to { transform: rotate(360deg); } }

/* ==========================================================================
   PÁGINAS DE CONTEÚDO LEGAIS (Termos / Privacidade / Cancelamento)
   ========================================================================== */
.bn-legal-wrap {
  max-width: 980px;
  margin: clamp(20px, 3vw, 32px) auto 0 auto;
  padding: clamp(20px, 3.5vw, 40px) clamp(18px, 4vw, 52px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(21, 26, 58, 0.1);
  border: 1px solid var(--borda);
}
.bn-legal-hero {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--borda);
}
.bn-legal-hero h1 {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  letter-spacing: -0.02em;
  color: var(--bn-navy);
  line-height: 1.15;
  margin: 0 0 10px 0;
}
.bn-legal-hero small {
  display: inline-block;
  color: #7985a6;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.bn-legal-intro {
  background: linear-gradient(135deg, rgba(17, 183, 201, 0.07), rgba(108, 77, 255, 0.06));
  border-left: 4px solid var(--bn-ciano);
  padding: 14px 20px;
  border-radius: 0 10px 10px 0;
  color: #3a4360;
  line-height: 1.65;
  margin-bottom: 26px;
  font-size: 0.95rem;
}
.bn-legal-content h2 {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  color: var(--bn-navy);
  margin: clamp(26px, 4vw, 40px) 0 12px 0;
  letter-spacing: -0.01em;
  scroll-margin-top: 100px;
}
.bn-legal-content h3 {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bn-ciano);
  margin: 20px 0 10px 0;
}
.bn-legal-content p {
  color: #2f3754;
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0 0 14px 0;
}
.bn-legal-content ul,
.bn-legal-content ol {
  margin: 0 0 14px 0;
  padding-left: 24px;
  color: #2f3754;
  font-size: 0.95rem;
  line-height: 1.75;
}
.bn-legal-content li {
  margin-bottom: 6px;
}
.bn-legal-content ul li::marker { color: var(--bn-ciano); }
.bn-legal-content strong { color: var(--bn-navy); font-weight: 700; }
.bn-legal-content a {
  color: var(--bn-ciano);
  text-decoration: none;
  border-bottom: 1px dashed rgba(17, 183, 201, 0.5);
  font-weight: 600;
  transition: color .18s ease, border-color .18s ease;
}
.bn-legal-content a:hover {
  color: var(--bn-roxo);
  border-bottom-color: var(--bn-roxo);
}
.bn-legal-cta {
  margin-top: 32px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--bn-navy) 0%, #1e2750 100%);
  border-radius: 14px;
  color: #e0e6fb;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 26px rgba(21, 26, 58, 0.18);
}
.bn-legal-cta strong {
  font-family: var(--font-titulo);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.bn-legal-cta small {
  font-size: 0.84rem;
  color: #aab5d5;
  line-height: 1.6;
}
@media (max-width: 560px) {
  .bn-legal-wrap { padding: 18px 16px; }
  .bn-legal-hero { padding-bottom: 18px; margin-bottom: 22px; }
  .bn-legal-content ul, .bn-legal-content ol { padding-left: 20px; }
}

/* ==========================================================================
   DATEPICKER CUSTOM · Tema BookingNow (Navy · Ciano · Roxo)
   ========================================================================== */

/* —— Trigger clicável (campo data) —— */
.bn-date-trigger {
  cursor: pointer;
  width: 100%;
  min-height: 46px;
  padding: 12px 60px 12px 14px;
  border: 1.5px solid var(--borda-forte);
  background: #fff;
  border-radius: var(--r);
  font-size: 0.95rem;
  color: var(--texto);
  font-weight: 500;
  transition: all .18s ease;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}
.bn-date-trigger:hover {
  border-color: var(--bn-ciano);
  background: #f7fcff;
}
.bn-date-trigger:focus-visible,
.bn-date-trigger.bn-is-open {
  border-color: var(--bn-ciano);
  box-shadow: 0 0 0 3px rgba(17, 183, 201, 0.18);
  background: #f7fcff;
}
.bn-date-trigger .bn-date-display {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--texto);
  pointer-events: none;
}
.bn-date-trigger .bn-date-display:empty::before,
.bn-date-trigger .bn-date-display.bn-ph::before {
  content: "dd/mm/aaaa";
  color: #a0a8c0;
  font-weight: 500;
}
.bn-date-trigger .bn-i-cal,
.bn-date-trigger .bn-i-cal2 {
  position: absolute;
  pointer-events: none;
  color: var(--texto-suave);
}
.bn-date-trigger .bn-i-cal { right: 38px; font-size: 0.95rem; opacity: .8; }
.bn-date-trigger .bn-i-cal2 { right: 13px; font-size: 0.98rem; color: var(--bn-ciano); opacity: .9; }

/* —— Modal flutuante DatePicker —— */
.bn-datepicker {
  position: absolute;
  z-index: 99999;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 20px 52px rgba(21, 26, 58, 0.16),
    0 0 0 1px rgba(17, 183, 201, 0.15);
  width: min(340px, 92vw);
  padding: 16px 16px 14px;
  overflow: hidden;
  animation: bnDpOpen .18s ease-out;
  transform-origin: top center;
}
@keyframes bnDpOpen {
  from { opacity: 0; transform: translateY(-6px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
/* Sombra gradiente neon no topo */
.bn-datepicker::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--bn-ciano) 0%, var(--bn-roxo) 100%);
}

/* Header do picker (mês/ano + setas) */
.bn-datepicker__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 4px 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid #eef2fa;
}
.bn-datepicker__nav {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: transparent;
  color: var(--texto);
  border: 1px solid transparent;
  display: inline-grid; place-items: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all .18s ease;
}
.bn-datepicker__nav:hover {
  background: linear-gradient(135deg, rgba(17, 183, 201, 0.1), rgba(108, 77, 255, 0.1));
  border-color: rgba(17, 183, 201, 0.3);
  color: var(--bn-ciano);
}
.bn-datepicker__nav:active { transform: scale(.94); }
.bn-datepicker__title {
  font-family: var(--font-titulo);
  font-weight: 800;
  color: var(--bn-navy);
  letter-spacing: -0.01em;
  font-size: 1rem;
  flex: 1;
  text-align: center;
  margin: 0 8px;
}

/* Dias da semana (cabeçalho) */
.bn-datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 10px 2px 6px;
}
.bn-datepicker__weekdays span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--bn-ciano);
  text-align: center;
  text-transform: uppercase;
  padding: 4px 0;
}

/* Grid dos dias do mês */
.bn-datepicker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 2px;
}
.bn-datepicker__day {
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--texto);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-grid; place-items: center;
  transition: all .14s ease;
  position: relative;
  padding: 0;
  line-height: 1;
}
.bn-datepicker__day:hover:not(:disabled) {
  background: rgba(17, 183, 201, 0.09);
  color: var(--bn-ciano-escuro);
  transform: translateY(-1px);
}
.bn-datepicker__day.bn-other-month {
  color: #b6bdd4;
  font-weight: 500;
}
.bn-datepicker__day.bn-other-month:hover:not(:disabled) {
  color: var(--texto-suave);
  background: rgba(170, 176, 200, 0.12);
}

/* Dia de hoje (anel externo, fundo branco) */
.bn-datepicker__day.bn-today {
  font-weight: 800;
  position: relative;
}
.bn-datepicker__day.bn-today::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1.5px solid var(--bn-ciano);
  border-radius: 9px;
  pointer-events: none;
  opacity: .85;
}

/* Dia selecionado (botão preenchido Ciano → Roxo gradiente) */
.bn-datepicker__day.bn-selected {
  background: linear-gradient(135deg, var(--bn-ciano) 0%, var(--bn-roxo) 100%);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(108, 77, 255, 0.25), 0 4px 10px rgba(17, 183, 201, 0.22);
  font-weight: 800;
  transform: scale(1.02);
}
.bn-datepicker__day.bn-selected:hover:not(:disabled) {
  filter: brightness(1.08);
}

/* Dia desabilitado (passado, inválido) */
.bn-datepicker__day:disabled {
  cursor: not-allowed;
  color: #c2c8dc;
  background: #f5f6fb;
  font-weight: 500;
}
.bn-datepicker__day:disabled:hover {
  background: #f5f6fb;
  transform: none;
  color: #c2c8dc;
}

/* Range in-range (opcional quando implementarmos highlight entre datas) */
.bn-datepicker__day.bn-in-range {
  background: rgba(17, 183, 201, 0.12);
  color: var(--bn-ciano-escuro);
  border-radius: 0;
}

/* Footer do picker (Hoje · Limpar) */
.bn-datepicker__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eef2fa;
}
.bn-datepicker__btn {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all .18s ease;
  font-family: var(--font-titulo);
}
.bn-datepicker__btn--today {
  color: var(--bn-ciano);
  border-color: rgba(17, 183, 201, 0.32);
  background: rgba(17, 183, 201, 0.06);
}
.bn-datepicker__btn--today:hover {
  background: var(--bn-ciano);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(17, 183, 201, 0.25);
}
.bn-datepicker__btn--clear {
  color: #6a7292;
  border-color: rgba(106, 114, 146, 0.25);
}
.bn-datepicker__btn--clear:hover {
  color: #fff;
  background: #6a7292;
  border-color: transparent;
}

/* Ajuste responsivo mobile: largura full e posicionamento seguro */
@media (max-width: 560px) {
  .bn-datepicker {
    width: calc(100vw - 32px);
    max-width: 340px;
  }
  .bn-date-trigger { padding: 12px 56px 12px 14px; }
  .bn-date-trigger .bn-i-cal { right: 34px; }
  .bn-date-trigger .bn-i-cal2 { right: 10px; }
}

