*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; background: #eef0f5; color: #1f2937; }
a { text-decoration: none; }
button { font-family: 'Lato', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Lato', sans-serif; }

/* ═══════════════════════════════════════ TOPBAR */
.topbar { background:#fff; padding:20px 0; border-bottom:1px solid #f0f0f0; }
.topbar__inner {
  max-width:1280px; margin:0 auto; padding:0;
  display:grid; grid-template-columns:1fr 1fr 1fr; align-items:center;
}
.social-icons { display:flex; align-items:center; justify-content:flex-start; padding-left:18px; gap:20px; }
.social-icons a i { font-family:'Font Awesome 6 Brands'; font-weight:400; font-size:36px; color:rgb(62,64,149); display:block; }
.topbar__logo { display:flex; justify-content:center; }
.topbar__logo img { height:121px; width:auto; object-fit:contain; }
.topbar__phones { display:flex; flex-direction:column; align-items:flex-end; padding-right:18px; gap:4px; }
.topbar__phones span { font-size:14px; color:rgb(119,119,119); display:flex; align-items:center; gap:6px; }
.topbar__phones span i { font-size:14px; color:rgb(119,119,119); }

/* ═══════════════════════════════════════ NAVBAR */
.navbar { background:#fff; border-top:1px solid #e5e7eb; box-shadow:0 1px 3px rgba(0,0,0,.06); }
.navbar__inner { max-width:1280px; margin:0 auto; display:flex; align-items:stretch; min-height:52px; }
.navbar__items { display:flex; align-items:stretch; flex:1; justify-content:space-between; }
.nav-item { display:flex; align-items:center; gap:6px; padding:0 18px; cursor:pointer; transition:color .2s; white-space:nowrap; }
.nav-label { font-weight:700; font-size:14px; color:#666; transition:color .2s; }
.nav-item:hover .nav-label { color:rgb(255,84,49); }
.nav-icon { font-size:18px; color:#666; transition:color .2s; }
.nav-item:hover .nav-icon { color:rgb(255,84,49); }
.nav-chevron { font-size:8px; color:#666; margin-left:2px; transition:color .2s; }
.nav-item:hover .nav-chevron { color:rgb(255,84,49); }
.dropdown { position:relative; display:flex; align-items:stretch; }
.dropdown-menu { display:none; position:absolute; top:100%; left:0; z-index:200; background:#fff; box-shadow:0 4px 16px rgba(0,0,0,.12); min-width:320px; }
.dropdown:hover .dropdown-menu { display:block; }
.dropdown-menu a { display:block; padding:16px 20px; font-weight:700; font-size:14px; color:#666; border-bottom:1px solid #f0f0f0; transition:color .2s; }
.dropdown-menu a:last-child { border-bottom:none; }
.dropdown-menu a:hover { color:rgb(255,84,49); }
.reservas-btn { display:flex; align-items:center; gap:8px; background:#3E4095; color:#fff; font-weight:700; font-size:14px; padding:0 24px; white-space:nowrap; transition:background .2s; }
.reservas-btn:hover { background:#32347a; color:#fff; }
.reservas-btn .nav-icon { font-size:18px; color:#fff; font-weight:900; }

/* ═══════════════════════════════════════ MAIN */
.main-content { background:#eef0f5; padding:0 0 72px; min-height:calc(100vh - 230px); }

/* ═══════════════════════════════════════ STEPPER BAR */
.stepper-bar {
  background:#fff; border-bottom:1px solid #e5e7eb;
  padding:20px; position:sticky; top:0; z-index:100;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.stepper-inner {
  max-width:780px; margin:0 auto;
  display:flex; align-items:center;
}
.stepper-step {
  display:flex; flex-direction:column; align-items:center; gap:6px;
  flex-shrink:0; cursor:default;
}
.stepper-step.done { cursor:pointer; }
.step-circle {
  width:36px; height:36px; border-radius:50%;
  border:2px solid #d1d5db; background:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; color:#9ca3af;
  transition:all .3s;
}
.stepper-step.active .step-circle { border-color:#3E4095; background:#3E4095; color:#fff; }
.stepper-step.done .step-circle { border-color:#10b981; background:#10b981; color:#fff; }
.step-label { font-size:11px; font-weight:700; color:#9ca3af; text-align:center; white-space:nowrap; transition:color .3s; }
.stepper-step.active .step-label { color:#3E4095; }
.stepper-step.done .step-label { color:#10b981; }
.stepper-line { flex:1; height:2px; background:#e5e7eb; transition:background .3s; margin:0 6px; margin-bottom:22px; }
.stepper-line.done { background:#10b981; }
.stepper-mobile { display:none; text-align:center; }
.stepper-mobile-text { font-weight:700; font-size:14px; color:#3E4095; }
.stepper-mobile-label { font-size:12px; color:#6b7280; margin-top:2px; }
.stepper-progress { height:4px; background:#e5e7eb; border-radius:2px; margin-top:10px; overflow:hidden; }
.stepper-progress-fill { height:100%; background:#3E4095; border-radius:2px; transition:width .4s ease; }

@media (max-width:640px) {
  .stepper-inner { display:none; }
  .stepper-mobile { display:block; }
}

/* ═══════════════════════════════════════ STEPS WRAPPER */
.steps-wrapper { max-width:780px; margin:0 auto; padding:32px 20px 0; }
.step-pane { display:none; }
.step-pane.active { display:block; animation:stepFadeIn .35s ease; }
@keyframes stepFadeIn {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

.step-heading { margin-bottom:28px; }
.step-heading h2 { font-size:22px; font-weight:900; color:#1f2937; }
.step-heading p { font-size:14px; color:#6b7280; margin-top:4px; }

/* ═══════════════════════════════════════ CARD BASE */
.card {
  background:#fff; border-radius:16px;
  border:1px solid #e8eaed;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  overflow:hidden;
}
.card-body { padding:24px 28px; }
.card + .card { margin-top:20px; }

/* ═══════════════════════════════════════ DATE RANGE */
.date-range-row {
  display:grid;
  grid-template-columns:1fr 120px 1fr;
  align-items:end; gap:0;
}
@media (max-width:560px) {
  .date-range-row { grid-template-columns:1fr 1fr; gap:14px; }
  .nights-connector { display:none !important; }
}
.nights-connector {
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding:0 8px; padding-bottom:11px;
  gap:0;
}
.nights-pill {
  display:flex; align-items:center; gap:5px;
  background:#3E4095; color:#fff;
  border-radius:20px; padding:5px 12px;
  font-size:11px; font-weight:700; white-space:nowrap;
  opacity:0; transition:opacity .3s; pointer-events:none;
}
.nights-pill.visible { opacity:1; }
.nights-pill i { font-size:10px; }
.connector-line { width:100%; height:1px; background:#e5e7eb; }

/* ═══════════════════════════════════════ CAMPO */
.campo { display:flex; flex-direction:column; gap:6px; }
.campo-label {
  font-weight:700; font-size:11px; color:#6b7280;
  text-transform:uppercase; letter-spacing:.06em;
  display:flex; align-items:center; gap:6px;
}
.campo-label i { color:#3E4095; font-size:12px; }
.campo-input-wrap { position:relative; }
.campo-input {
  width:100%; padding:12px 40px 12px 14px;
  border:2px solid #e5e7eb; border-radius:10px;
  font-size:15px; color:#1f2937; background:#fafafa;
  outline:none; transition:border-color .2s, box-shadow .2s;
  cursor:pointer;
}
.campo-input:focus, .campo-input.flatpickr-input:focus {
  border-color:#3E4095; box-shadow:0 0 0 3px rgba(62,64,149,.11); background:#fff;
}
.campo-input.error { border-color:#ef4444; box-shadow:0 0 0 3px rgba(239,68,68,.1); }
.campo-icon { position:absolute; right:13px; top:50%; transform:translateY(-50%); color:#9ca3af; font-size:14px; pointer-events:none; }
.campo-icon-left { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:#3E4095; font-size:14px; pointer-events:none; }
.campo-input.has-left-icon { padding-left:42px; }
.campo-error { font-size:12px; color:#ef4444; margin-top:3px; display:flex; align-items:center; gap:4px; }

/* ═══════════════════════════════════════ QTD COUNTER */
.qty-row { display:flex; align-items:center; justify-content:space-between; }
.qty-row-label { font-size:15px; font-weight:700; color:#1f2937; display:flex; align-items:center; gap:8px; }
.qty-row-label span { font-size:13px; font-weight:400; color:#9ca3af; }
.qty-counter { display:flex; align-items:center; border:2px solid #e5e7eb; border-radius:10px; overflow:hidden; background:#fafafa; }
.qty-btn { width:38px; height:38px; border:none; background:#fff; display:flex; align-items:center; justify-content:center; color:#3E4095; font-size:12px; transition:background .15s, color .15s; flex-shrink:0; }
.qty-btn:hover { background:#3E4095; color:#fff; }
.qty-val { width:40px; text-align:center; font-weight:700; font-size:17px; color:#1f2937; border-left:1px solid #e5e7eb; border-right:1px solid #e5e7eb; line-height:38px; user-select:none; }

/* ═══════════════════════════════════════ ROOM CARD */
.room-card {
  background:#fff; border-radius:14px;
  border:2px solid #e8eaed;
  overflow:hidden; margin-top:20px;
  transition:border-color .2s;
}
.room-card-header {
  background:linear-gradient(135deg,#3E4095,#5254b8);
  padding:14px 22px; display:flex; align-items:center; gap:12px;
}
.room-badge { width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.2); border:2px solid rgba(255,255,255,.5); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:15px; color:#fff; flex-shrink:0; }
.room-card-header h4 { font-size:15px; font-weight:700; color:#fff; }
.room-body { padding:22px; display:flex; flex-direction:column; gap:22px; }
.section-label { font-weight:700; font-size:11px; color:#6b7280; text-transform:uppercase; letter-spacing:.06em; display:flex; align-items:center; gap:6px; margin-bottom:12px; }
.section-label i { color:#3E4095; }

/* Tipo selector */
.tipo-grid { display:flex; flex-direction:column; gap:10px; }
.tipo-card {
  border:2px solid #e5e7eb; border-radius:12px; overflow:hidden;
  cursor:pointer; position:relative; background:#fafafa;
  transition:border-color .2s, box-shadow .2s, transform .15s;
}
.tipo-card:hover { border-color:#3E4095; box-shadow:0 4px 12px rgba(62,64,149,.15); transform:translateY(-2px); }
.tipo-card.selected { border-color:#3E4095; box-shadow:0 4px 16px rgba(62,64,149,.2); }
.tipo-card-img {
  position:relative; width:100%; aspect-ratio:16/9;
  background:linear-gradient(135deg,#dde1f0,#c8cee8);
  overflow:hidden;
}
.tipo-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s; }
.tipo-card:hover .tipo-card-img img { transform:scale(1.04); }
.tipo-card-img .foto-btn {
  position:absolute; bottom:8px; right:8px;
  background:rgba(0,0,0,.55); color:#fff; border:none;
  border-radius:6px; padding:4px 9px; font-size:11px; font-weight:700;
  display:flex; align-items:center; gap:5px;
  cursor:pointer; transition:background .2s; backdrop-filter:blur(4px);
}
.tipo-card-img .foto-btn:hover { background:rgba(0,0,0,.8); }
.tipo-check-badge {
  position:absolute; top:8px; left:8px;
  width:26px; height:26px; border-radius:50%;
  background:#3E4095; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:11px; opacity:0; transform:scale(.6);
  transition:opacity .2s, transform .2s; z-index:2;
}
.tipo-card.selected .tipo-check-badge { opacity:1; transform:scale(1); }
.tipo-placeholder { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; color:#9ca3af; }
.tipo-placeholder i { font-size:28px; }
.tipo-placeholder span { font-size:12px; }
.tipo-card-footer { padding:10px 14px; display:flex; align-items:center; justify-content:space-between; }
.tipo-card-name { font-weight:700; font-size:14px; color:#1f2937; }
.tipo-card-price { font-size:12px; color:#6b7280; }
.tipo-radio { width:16px; height:16px; border-radius:50%; border:2px solid #d1d5db; transition:border-color .2s, background .2s; flex-shrink:0; }
.tipo-card.selected .tipo-radio { border-color:#3E4095; background:#3E4095; box-shadow:inset 0 0 0 3px #fff; }

/* Ocupantes */
.ocupantes-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:420px) { .ocupantes-row { grid-template-columns:1fr; } }
.ocupante-box { background:#f8f9fa; border:1px solid #e5e7eb; border-radius:10px; padding:14px 16px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.ocupante-info .ocupante-title { font-weight:700; font-size:14px; color:#1f2937; display:flex; align-items:center; gap:5px; }
.ocupante-info .ocupante-title i { color:#3E4095; font-size:14px; }
.ocupante-info .ocupante-sub { font-size:11px; color:#9ca3af; margin-top:1px; }
.sm-counter { display:flex; align-items:center; border:2px solid #e5e7eb; border-radius:8px; overflow:hidden; background:#fff; }
.sm-btn { width:30px; height:30px; border:none; background:#fff; display:flex; align-items:center; justify-content:center; color:#3E4095; font-size:10px; transition:background .15s, color .15s; }
.sm-btn:hover { background:#3E4095; color:#fff; }
.sm-val { width:30px; text-align:center; font-weight:700; font-size:14px; color:#1f2937; border-left:1px solid #e5e7eb; border-right:1px solid #e5e7eb; line-height:30px; user-select:none; }

/* ═══════════════════════════════════════ PRICE SUMMARY */
.price-bar {
  background:linear-gradient(135deg,#1f2937,#374151);
  border-radius:14px; padding:18px 24px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px; margin-top:20px;
}
.price-bar-left .price-label { font-size:11px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.06em; }
.price-bar-left .price-total { font-size:26px; font-weight:900; color:#fff; line-height:1.2; }
.price-bar-right { display:flex; flex-direction:column; gap:4px; text-align:right; }
.price-tag { font-size:12px; color:rgba(255,255,255,.75); display:flex; align-items:center; gap:6px; justify-content:flex-end; }
.price-tag i { font-size:11px; }
.price-tag.highlight { color:#fbbf24; font-weight:700; }

/* ═══════════════════════════════════════ STEP FOOTER (nav buttons) */
.step-footer { display:flex; align-items:center; justify-content:space-between; margin-top:28px; padding-top:20px; border-top:1px solid #e5e7eb; }
.btn-back { display:flex; align-items:center; gap:8px; background:#fff; color:#6b7280; border:2px solid #e5e7eb; border-radius:10px; padding:12px 22px; font-weight:700; font-size:14px; transition:all .2s; }
.btn-back:hover { border-color:#3E4095; color:#3E4095; }
.btn-next { display:flex; align-items:center; gap:8px; background:#3E4095; color:#fff; border:none; border-radius:10px; padding:12px 28px; font-weight:700; font-size:14px; transition:all .2s; box-shadow:0 4px 12px rgba(62,64,149,.28); }
.btn-next:hover { background:#32347a; box-shadow:0 6px 16px rgba(62,64,149,.38); transform:translateY(-1px); }
.btn-next:active { transform:translateY(0); }
.btn-confirm { background:linear-gradient(135deg,#FF5431,#d93b1e); box-shadow:0 4px 14px rgba(255,84,49,.3); }
.btn-confirm:hover { background:linear-gradient(135deg,#e0472b,#c0351a); box-shadow:0 6px 18px rgba(255,84,49,.42); }

/* ═══════════════════════════════════════ STEP 2: RESUMO */
.resumo-section { margin-bottom:20px; }
.resumo-section h3 { font-size:12px; font-weight:700; color:#9ca3af; text-transform:uppercase; letter-spacing:.06em; margin-bottom:12px; }
.resumo-dates { display:grid; grid-template-columns:1fr 1fr 1fr; gap:12px; align-items:center; }
.resumo-date-chip { background:#f0f2ff; border:1px solid #c7caee; border-radius:10px; padding:10px 16px; display:flex; align-items:center; gap:8px; width:100%; box-sizing:border-box; }
.resumo-date-chip i { color:#3E4095; font-size:14px; }
.resumo-date-chip .rdc-label { font-size:11px; color:#6b7280; text-transform:uppercase; letter-spacing:.04em; }
.resumo-date-chip .rdc-val { font-size:15px; font-weight:700; color:#1f2937; }
.resumo-noites { background:#3E4095; color:#fff; border-radius:20px; padding:8px 16px; font-size:12px; font-weight:700; display:flex; align-items:center; justify-content:center; gap:5px; }
.resumo-apto-card { background:#f8f9fa; border:1px solid #e5e7eb; border-radius:12px; padding:16px 20px; margin-bottom:10px; }
.resumo-apto-header { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.resumo-apto-badge { width:28px; height:28px; border-radius:50%; background:#3E4095; color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; }
.resumo-apto-header h4 { font-size:14px; font-weight:700; color:#1f2937; }
.resumo-apto-detail { font-size:13px; color:#6b7280; display:flex; flex-wrap:wrap; gap:8px; }
.resumo-detail-tag { background:#fff; border:1px solid #e5e7eb; border-radius:6px; padding:3px 8px; font-size:12px; display:flex; align-items:center; gap:4px; }
.resumo-detail-tag i { color:#3E4095; font-size:11px; }
.resumo-preco-row { display:flex; justify-content:flex-end; margin-top:8px; font-size:13px; font-weight:700; color:#1f2937; }
.resumo-total-card { background:linear-gradient(135deg,#1f2937,#374151); border-radius:14px; padding:20px 24px; }
.resumo-total-label { font-size:11px; color:rgba(255,255,255,.6); text-transform:uppercase; letter-spacing:.06em; }
.resumo-total-value { font-size:30px; font-weight:900; color:#fff; margin-top:4px; }
.resumo-parcelas { display:flex; flex-direction:column; gap:6px; margin-top:14px; padding-top:14px; border-top:1px solid rgba(255,255,255,.1); }
.resumo-parcela-item { display:flex; align-items:center; gap:8px; font-size:13px; color:rgba(255,255,255,.8); }
.resumo-parcela-item i { font-size:12px; }
.resumo-parcela-item.destaque { color:#fbbf24; font-weight:700; }
.resumo-aviso { background:#fffbeb; border:1px solid #fcd34d; border-radius:10px; padding:12px 16px; display:flex; gap:10px; margin-top:16px; font-size:13px; color:#92400e; }
.resumo-aviso i { color:#f59e0b; flex-shrink:0; margin-top:1px; }

/* ═══════════════════════════════════════ STEP 3: IDENTIFICAÇÃO */
.login-block {
  background:linear-gradient(135deg,#f0f2ff,#e8eaff);
  border:1px solid #c7caee; border-radius:14px;
  padding:20px 24px; margin-bottom:24px;
}
.login-block h3 { font-size:15px; font-weight:700; color:#3E4095; margin-bottom:4px; display:flex; align-items:center; gap:8px; }
.login-block p { font-size:13px; color:#6b7280; margin-bottom:16px; }
.login-fields { display:grid; grid-template-columns:1fr 1fr auto; gap:12px; align-items:end; }
@media (max-width:520px) { .login-fields { grid-template-columns:1fr; } }
.btn-login { display:flex; align-items:center; gap:7px; background:#3E4095; color:#fff; border:none; border-radius:10px; padding:12px 20px; font-weight:700; font-size:14px; white-space:nowrap; height:44px; transition:background .2s; }
.btn-login:hover { background:#32347a; }
.divider-or { display:flex; align-items:center; gap:14px; margin:20px 0; color:#9ca3af; font-size:13px; font-weight:700; }
.divider-or::before, .divider-or::after { content:''; flex:1; height:1px; background:#e5e7eb; }

/* Login-block: estados de feedback */
.login-feedback {
  margin-top:12px; padding:10px 14px; border-radius:10px;
  font-size:13px; font-weight:600; display:none;
  align-items:center; gap:8px;
}
.login-feedback.show { display:flex; }
.login-feedback.error { background:#fee2e2; color:#991b1b; border:1px solid #fca5a5; }
.login-feedback.success { background:#d1fae5; color:#065f46; border:1px solid #6ee7b7; }

/* Botão de login: estado loading */
.btn-login:disabled { background:#6b7280; cursor:not-allowed; }
.btn-login .spin { display:none; }
.btn-login.loading .spin { display:inline-block; animation:spin .7s linear infinite; }
.btn-login.loading .icon-normal { display:none; }

/* Login-block: estado preenchido com sucesso */
.login-block.filled {
  background:linear-gradient(135deg,#d1fae5,#a7f3d0);
  border-color:#6ee7b7;
}
.login-block.filled h3 { color:#065f46; }
.login-block.filled p { color:#047857; }

/* Campo do formulário: destaque quando preenchido via acesso rápido */
.form-input.autofilled {
  border-color:#10b981;
  background:#f0fdf4;
  transition: border-color .4s, background .4s;
}
.form-grid { display:grid; gap:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-row.cols-3 { grid-template-columns:1fr 1fr 1fr; }
@media (max-width:560px) { .form-row, .form-row.cols-3 { grid-template-columns:1fr; } }
.form-field { display:flex; flex-direction:column; gap:6px; }
.form-label { font-weight:700; font-size:12px; color:#4b5563; }
.form-label .req { color:#ef4444; margin-left:2px; }
.form-input {
  padding:11px 14px; border:2px solid #e5e7eb; border-radius:10px;
  font-size:14px; color:#1f2937; background:#fafafa; outline:none;
  transition:border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color:#3E4095; box-shadow:0 0 0 3px rgba(62,64,149,.1); background:#fff; }
.form-input.error { border-color:#ef4444; box-shadow:0 0 0 3px rgba(239,68,68,.12); }
.form-input::placeholder { color:#9ca3af; }

/* Mensagem de erro inline abaixo do campo */
.field-error {
  font-size:12px; color:#dc2626; display:flex; align-items:center; gap:5px;
  animation:fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }
select.form-input { cursor:pointer; }
.cep-row { display:grid; grid-template-columns:1fr auto; gap:10px; align-items:end; }
.btn-cep { display:flex; align-items:center; gap:6px; background:#3E4095; color:#fff; border:none; border-radius:10px; padding:11px 16px; font-size:13px; font-weight:700; white-space:nowrap; height:44px; transition:background .2s; }
.btn-cep:hover { background:#32347a; }
.btn-cep.loading i { animation:spin .8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.terms-row { display:flex; align-items:flex-start; gap:12px; padding:16px; background:#f8f9fa; border:1px solid #e5e7eb; border-radius:12px; cursor:pointer; }
.terms-row input[type=checkbox] { width:18px; height:18px; accent-color:#3E4095; flex-shrink:0; margin-top:1px; cursor:pointer; }
.terms-text { font-size:13px; color:#4b5563; line-height:1.6; }
.terms-text a { color:#3E4095; font-weight:700; text-decoration:underline; }
.resumo-mini { background:#f0f2ff; border:1px solid #c7caee; border-radius:12px; padding:14px 18px; display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; flex-wrap:wrap; gap:10px; }
.resumo-mini-info { font-size:13px; color:#6b7280; }
.resumo-mini-info strong { display:block; font-size:16px; color:#3E4095; font-weight:900; }
.resumo-mini-tags { display:flex; gap:8px; flex-wrap:wrap; }
.resumo-mini-tag { font-size:11px; font-weight:700; padding:4px 10px; border-radius:20px; }
.tag-blue { background:#3E4095; color:#fff; }
.tag-green { background:#10b981; color:#fff; }
.tag-yellow { background:#f59e0b; color:#fff; }

/* ═══════════════════════════════════════ STEP 4: PAGAMENTO */
.payment-methods { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px; }
@media (max-width:500px) { .payment-methods { grid-template-columns:1fr; } }
.payment-card {
  border:2px solid #e5e7eb; border-radius:14px; padding:20px;
  cursor:pointer; text-align:center; transition:all .2s; background:#fafafa;
  position:relative; overflow:hidden;
}
.payment-card:hover { border-color:#3E4095; box-shadow:0 4px 12px rgba(62,64,149,.15); transform:translateY(-2px); }
.payment-card.selected { border-color:#3E4095; background:#f0f2ff; box-shadow:0 4px 16px rgba(62,64,149,.2); }
.payment-card-check { position:absolute; top:10px; right:10px; width:24px; height:24px; border-radius:50%; background:#3E4095; color:#fff; display:flex; align-items:center; justify-content:center; font-size:11px; opacity:0; transform:scale(.6); transition:opacity .2s, transform .2s; }
.payment-card.selected .payment-card-check { opacity:1; transform:scale(1); }
.payment-card-icon { font-size:32px; color:#3E4095; margin-bottom:10px; }
.payment-card h3 { font-size:15px; font-weight:700; color:#1f2937; margin-bottom:4px; }
.payment-card p { font-size:13px; color:#6b7280; }
.payment-card .discount-badge { display:inline-block; background:#10b981; color:#fff; font-size:11px; font-weight:700; border-radius:20px; padding:3px 10px; margin-top:8px; }
.pix-info { background:#f0fff4; border:1px solid #6ee7b7; border-radius:12px; padding:20px 24px; }
.pix-info h4 { font-size:14px; font-weight:700; color:#065f46; margin-bottom:12px; display:flex; align-items:center; gap:8px; }
.pix-data-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid #a7f3d0; font-size:14px; }
.pix-data-row:last-child { border-bottom:none; }
.pix-data-row .label { color:#6b7280; }
.pix-data-row .val { font-weight:700; color:#065f46; text-align:right; }
.pix-aviso { background:#fffbeb; border:1px solid #fcd34d; border-radius:10px; padding:12px 16px; font-size:13px; color:#92400e; display:flex; gap:8px; margin-top:14px; }
.pix-aviso i { color:#f59e0b; flex-shrink:0; }
.card-form-section { background:#f8f9fa; border:1px solid #e5e7eb; border-radius:12px; padding:20px 22px; }
.card-form-section h4 { font-size:14px; font-weight:700; color:#1f2937; margin-bottom:16px; display:flex; align-items:center; gap:8px; }
.card-form-section h4 i { color:#3E4095; }
.card-number-input { position:relative; }
.card-number-input .card-brand { position:absolute; right:12px; top:50%; transform:translateY(-50%); font-size:20px; color:#9ca3af; }
.parcelas-select { width:100%; padding:11px 14px; border:2px solid #e5e7eb; border-radius:10px; font-size:14px; color:#1f2937; background:#fff; outline:none; cursor:pointer; transition:border-color .2s; }
.parcelas-select:focus { border-color:#3E4095; }

/* ═══════════════════════════════════════ STEP 5: CONFIRMAÇÃO */
.confirmation-wrapper { text-align:center; padding:20px 0 10px; }
.confirmation-icon {
  width:80px; height:80px; border-radius:50%;
  background:linear-gradient(135deg,#10b981,#059669);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; font-size:36px; color:#fff;
  box-shadow:0 8px 24px rgba(16,185,129,.35);
  animation:popIn .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { transform:scale(0); opacity:0; }
  to   { transform:scale(1); opacity:1; }
}
.confirmation-title { font-size:26px; font-weight:900; color:#1f2937; margin-bottom:6px; }
.confirmation-sub { font-size:15px; color:#6b7280; }
.confirmation-cards { display:grid; gap:14px; margin-top:28px; text-align:left; }
.conf-card { background:#f8f9fa; border:1px solid #e5e7eb; border-radius:12px; padding:18px 22px; }
.conf-card h4 { font-size:12px; font-weight:700; color:#9ca3af; text-transform:uppercase; letter-spacing:.06em; margin-bottom:12px; }
.conf-row { display:flex; justify-content:space-between; align-items:baseline; font-size:14px; padding:5px 0; gap:8px; }
.conf-row .conf-label { color:#6b7280; flex-shrink:0; }
.conf-row .conf-val { font-weight:700; color:#1f2937; text-align:right; word-break:break-all; }
.conf-row.total .conf-val { font-size:18px; color:#3E4095; }
.pix-final { background:#f0fff4; border:2px solid #6ee7b7; border-radius:12px; padding:20px 22px; margin-top:16px; }
.pix-final h4 { font-size:14px; font-weight:700; color:#065f46; margin-bottom:6px; display:flex; align-items:center; gap:8px; }
.pix-final-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:14px 0 0; }
@media(max-width:560px){
  .pix-final-grid { grid-template-columns:1fr; }
  .pix-final { padding:14px 12px; }
  .pix-final-block { overflow:hidden; min-width:0; }
  .pix-final-block-title { white-space:normal; word-break:break-word; }
  .pix-final-comprovante { flex-direction:column; gap:6px; }
  .pix-contact-items { display:flex; flex-direction:column; gap:2px; }
}
.pix-final-block { background:#fff; border:1px solid #a7f3d0; border-radius:10px; padding:14px 16px; min-width:0; overflow:hidden; }
.pix-final-block-title { font-size:12px; font-weight:700; color:#065f46; text-transform:uppercase; letter-spacing:.05em; margin-bottom:10px; display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.pix-final-chave { font-size:16px; font-weight:900; color:#047857; letter-spacing:.03em; margin-bottom:4px; word-break:break-all; }
.pix-final-tipo { font-size:12px; color:#6b7280; }
.pix-final-comprovante { margin-top:14px; background:#d1fae5; border-radius:8px; padding:12px 16px; font-size:13px; color:#065f46; line-height:1.6; display:flex; align-items:flex-start; gap:10px; }
.pix-final-comprovante i { font-size:16px; flex-shrink:0; margin-top:2px; }
.pix-contact-items { display:flex; flex-wrap:wrap; align-items:center; gap:4px 8px; }
.email-notice { background:#f0f2ff; border:1px solid #c7caee; border-radius:10px; padding:14px 18px; display:flex; gap:10px; align-items:center; margin-top:16px; font-size:14px; color:#3E4095; font-weight:700; }
.email-notice i { font-size:20px; flex-shrink:0; }
.btn-home { display:inline-flex; align-items:center; gap:8px; background:#3E4095; color:#fff; border:none; border-radius:10px; padding:14px 28px; font-weight:700; font-size:15px; margin-top:24px; transition:all .2s; box-shadow:0 4px 12px rgba(62,64,149,.28); }
.btn-home:hover { background:#32347a; transform:translateY(-1px); }

/* ═══════════════════════════════════════ LIGHTBOX */
.lightbox { position:fixed; inset:0; background:rgba(0,0,0,.94); z-index:9999; display:none; flex-direction:column; align-items:center; justify-content:center; padding:20px; }
.lightbox.open { display:flex; animation:fadeIn .2s ease; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.lb-inner { position:relative; width:100%; max-width:860px; display:flex; flex-direction:column; align-items:center; }
.lb-close { position:absolute; top:-44px; right:0; width:36px; height:36px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); border-radius:50%; color:#fff; font-size:15px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; z-index:2; }
.lb-close:hover { background:rgba(255,255,255,.28); }
.lb-main { position:relative; width:100%; }
.lb-main img { width:100%; max-height:65vh; object-fit:contain; border-radius:10px; display:block; }
.lb-nav-btn { position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25); border-radius:50%; color:#fff; font-size:15px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; z-index:2; }
.lb-nav-btn:hover { background:rgba(255,255,255,.3); }
.lb-prev { left:-56px; }
.lb-next { right:-56px; }
@media (max-width:640px) { .lb-prev { left:8px; } .lb-next { right:8px; } }
.lb-spinner {
  position:absolute; inset:0; z-index:3;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:28px; opacity:.7;
}
.lb-caption { margin-top:12px; color:rgba(255,255,255,.65); font-size:13px; text-align:center; }
.lb-thumbs { display:flex; gap:8px; margin-top:14px; justify-content:center; flex-wrap:wrap; }
.lb-thumb { width:58px; height:44px; border-radius:6px; overflow:hidden; cursor:pointer; border:2px solid transparent; transition:border-color .2s, transform .15s; }
.lb-thumb.active { border-color:#fff; transform:scale(1.08); }
.lb-thumb img { width:100%; height:100%; object-fit:cover; display:block; }

/* ═══════════════════════════════════════ FOOTER */
.footer { background-color:#7B1A0E; display:flex; align-items:center; justify-content:space-between; min-height:44px; }
.footer__copy { flex:1; text-align:center; font-size:14px; color:#fff; padding:12px 20px; }
.footer__copy a { color:#fff; }

/* ═══════════════════════════════════════ UTILITIES */
.mt-16 { margin-top:16px; }
.hidden { display:none !important; }
.text-center { text-align:center; }

/* ═══════════════════════════════════════ SELETOR COMPACTO (wizard) */
.compact-list { display:flex; flex-direction:column; gap:10px; }
.compact-item {
  display:grid; grid-template-columns:88px 1fr 40px;
  align-items:center;
  border:2px solid #e5e7eb; border-radius:12px; overflow:hidden;
  cursor:pointer; background:#fafafa; min-height:70px;
  transition:border-color .2s, box-shadow .2s, background .2s;
}
.compact-item:hover { border-color:#3E4095; box-shadow:0 2px 8px rgba(62,64,149,.12); }
.compact-item.selected { border-color:#3E4095; background:#f0f2ff; box-shadow:0 2px 10px rgba(62,64,149,.16); }
.compact-img {
  position:relative; height:100%; min-height:70px;
  background:linear-gradient(135deg,#dde1f0,#c8cee8); overflow:hidden;
}
.compact-img img { width:100%; height:100%; object-fit:cover; display:block; }
.compact-img-ph { width:100%; height:100%; min-height:70px; display:flex; align-items:center; justify-content:center; color:#9ca3af; font-size:20px; }
.compact-img.has-fotos { cursor:pointer; }
.compact-img.has-fotos::after {
  content:''; position:absolute; inset:0;
  background:rgba(0,0,0,0); transition:background .2s; border-radius:inherit;
}
.compact-img.has-fotos:hover::after { background:rgba(0,0,0,.15); }

.compact-ver-badge {
  position:absolute; bottom:6px; left:6px;
  background:rgba(0,0,0,.62); color:#fff; border-radius:5px;
  padding:3px 8px; font-size:11px; font-weight:700; font-family:'Lato',sans-serif;
  display:flex; align-items:center; gap:4px; pointer-events:none; z-index:1;
}
.compact-ver-badge i { font-size:11px; }
.compact-info { padding:10px 14px; }
.compact-nome { font-size:14px; font-weight:700; color:#1f2937; margin-bottom:2px; }
.compact-info-sub { font-size:11px; color:#6b7280; margin-bottom:3px; }
.compact-preco { font-size:13px; font-weight:700; color:#3E4095; }
.compact-preco span { font-weight:400; color:#9ca3af; font-size:11px; }
.compact-preco-label { font-weight:400; font-size:11px; color:#6b7280; }
.compact-periodo { font-size:10px; color:#10b981; font-weight:700; margin-top:2px; text-transform:uppercase; letter-spacing:.04em; }
.compact-preco-obs { font-size:10px; color:#9ca3af; margin-top:8px; padding-left:2px; font-style:italic; }

/* ── Card bloqueado: venda bloqueada (vermelho) ── */
.compact-item.blocked {
  opacity:.65; cursor:not-allowed;
  border-color:#e5e7eb !important;
  background:#f8f9fa !important;
  box-shadow:none !important;
  transform:none !important;
}
.compact-item.blocked:hover { border-color:#e5e7eb !important; box-shadow:none !important; transform:none !important; }
.compact-item.blocked .compact-img { filter:grayscale(50%); }
.compact-item.blocked .compact-nome { color:#9ca3af; }
.compact-item.blocked .compact-preco { display:none; }

/* ── Card soft-bloqueado: mínimo não atingido (âmbar) ── */
.compact-item.soft-blocked {
  cursor:not-allowed;
  border-color:#fcd34d !important;
  background:#fffdf0 !important;
  box-shadow:none !important;
  transform:none !important;
  opacity:.85;
}
.compact-item.soft-blocked:hover { border-color:#fbbf24 !important; box-shadow:none !important; transform:none !important; }
.compact-item.soft-blocked .compact-preco { display:none; }
/* ── Card esgotado: todas as unidades do tipo já selecionadas ── */
.compact-item.esgotado-blocked {
  cursor:not-allowed;
  border-color:#d1d5db !important;
  background:#f3f4f6 !important;
  box-shadow:none !important;
  transform:none !important;
  opacity:.75;
}
.compact-item.esgotado-blocked:hover { border-color:#d1d5db !important; box-shadow:none !important; transform:none !important; }
.compact-item.esgotado-blocked .compact-preco { display:none; }
.compact-item.esgotado-blocked .compact-img { filter:grayscale(60%); }

.compact-circle.soft-circle {
  background:#fef3c7 !important; border-color:#fbbf24 !important;
}
.compact-circle.soft-circle i {
  opacity:1 !important; color:#d97706 !important; font-size:11px;
}

/* ── Mensagem de indisponibilidade (compartilhada) ── */
.compact-unavail {
  display:flex; align-items:flex-start; gap:5px;
  margin-top:4px; font-size:11px; font-weight:700;
  border-radius:6px; padding:4px 7px; line-height:1.4;
}
.compact-unavail i { flex-shrink:0; margin-top:1px; font-size:11px; }
/* Variante vermelha — bloqueio de venda */
.compact-unavail.hard {
  color:#b91c1c; background:#fee2e2; border:1px solid #fca5a5;
}
/* Variante âmbar — mínimo de diárias */
.compact-unavail.soft {
  color:#92400e; background:#fffbeb; border:1px solid #fcd34d;
}

/* ── Círculo hard-block ── */
.compact-circle.blocked-circle {
  background:#fee2e2 !important; border-color:#fca5a5 !important;
}
.compact-circle.blocked-circle i {
  opacity:1 !important; color:#ef4444 !important; font-size:11px;
}

/* ── Badge de preço por período ── */
.compact-periodo { font-size:10px; color:#10b981; font-weight:700; margin-top:2px; text-transform:uppercase; letter-spacing:.04em; }

/* ── Badge de mínimo de hóspedes por período ── */
.compact-min-hospedes { font-size:10px; color:#d97706; font-weight:700; margin-top:3px; display:flex; align-items:center; gap:3px; }
.compact-min-hospedes i { font-size:9px; }

.compact-check-col { padding-right:14px; display:flex; justify-content:center; }
.compact-circle {
  width:22px; height:22px; border-radius:50%;
  border:2px solid #d1d5db;
  display:flex; align-items:center; justify-content:center;
  transition:all .2s;
}
.compact-circle i { font-size:10px; color:#fff; opacity:0; transition:opacity .15s; }
.compact-item.selected .compact-circle { background:#3E4095; border-color:#3E4095; }
.compact-item.selected .compact-circle i { opacity:1; }

/* Flatpickr brand */
.flatpickr-calendar { border-radius:14px!important; box-shadow:0 8px 32px rgba(0,0,0,.12)!important; border:1px solid #e5e7eb!important; font-family:'Lato',sans-serif!important; }
.flatpickr-months .flatpickr-month { background:#3E4095!important; border-radius:14px 14px 0 0!important; }
.flatpickr-current-month,.flatpickr-current-month select { color:#fff!important; }
.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg { fill:#fff!important; }
.flatpickr-day.selected,.flatpickr-day.selected:hover { background:#3E4095!important; border-color:#3E4095!important; }
.flatpickr-day:hover:not(.selected):not(.disabled) { background:rgba(62,64,149,.1)!important; }
.flatpickr-weekday { color:#3E4095!important; font-weight:700!important; }
.flatpickr-day.inRange { background:rgba(62,64,149,.12)!important; border-color:rgba(62,64,149,.08)!important; }
.flatpickr-day.startRange,.flatpickr-day.endRange { background:#3E4095!important; border-color:#3E4095!important; }
.flatpickr-day.today:not(.selected) { border-color:#3E4095!important; }

/* Flatpickr responsivo — mobile */
@media (max-width:480px) {
  .flatpickr-calendar {
    width: calc(100vw - 24px) !important;
    max-width: 340px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    font-size: 14px !important;
  }
  .flatpickr-day {
    max-width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    font-size: 13px !important;
  }
  .flatpickr-weekday { font-size: 11px !important; }
  .flatpickr-current-month { font-size: 14px !important; padding: 4px 0 !important; }
  .flatpickr-months { padding: 6px 0 !important; }
  .flatpickr-prev-month, .flatpickr-next-month { padding: 8px !important; }
  .numInputWrapper span { display: none !important; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE FIRST
═══════════════════════════════════════════════════════ */
@media (max-width:768px) {
  input[type=text], input[type=email], input[type=tel],
  input[type=number], select, textarea {
    font-size: 16px !important;
  }
  * { -webkit-tap-highlight-color: transparent; }
}

/* Hamburger button */
.hamburger-btn {
  display:none; align-items:center; justify-content:center;
  width:44px; height:44px; background:none; border:none;
  cursor:pointer; color:#444; font-size:22px; flex-shrink:0;
  transition:color .2s;
}
.hamburger-btn:hover { color:#3E4095; }

/* Menu mobile (dropdown) */
.nav-mobile-menu {
  display:none; position:absolute; top:100%; left:0; right:0;
  background:#fff; z-index:300;
  border-top:1px solid #e5e7eb;
  box-shadow:0 8px 28px rgba(0,0,0,.12);
}
.nav-mobile-menu.open { display:block; }
.nav-m-item {
  display:flex; align-items:center; gap:14px;
  padding:15px 20px; border-bottom:1px solid #f0f0f0;
  color:#444; font-weight:700; font-size:14px; transition:background .15s;
}
.nav-m-item:last-child { border-bottom:none; }
.nav-m-item:active { background:#f8f9fa; }
.nav-m-item i { color:#3E4095; width:20px; text-align:center; font-size:16px; }
.nav-m-item.reservas-m { background:#3E4095; color:#fff; }
.nav-m-item.reservas-m i { color:#fff; }

/* Barra de ação fixa no rodapé (mobile) */
.mobile-action-bar {
  display:none; position:fixed; bottom:0; left:0; right:0;
  background:#fff; border-top:2px solid #e5e7eb;
  box-shadow:0 -4px 20px rgba(0,0,0,.1);
  padding:12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap:10px; z-index:89;
  align-items:center;
}
.mobile-action-bar.visible { display:flex; }
.mob-btn-back {
  display:flex; align-items:center; justify-content:center; gap:6px;
  flex:0 0 auto; min-width:80px;
  background:#fff; color:#6b7280; border:2px solid #e5e7eb;
  border-radius:10px; padding:0 16px; height:50px;
  font-family:'Lato',sans-serif; font-weight:700; font-size:14px;
  transition:all .2s;
}
.mob-btn-back:hover { border-color:#3E4095; color:#3E4095; }
.mob-btn-next {
  display:flex; align-items:center; justify-content:center; gap:8px;
  flex:1;
  background:#3E4095; color:#fff; border:none;
  border-radius:10px; height:50px;
  font-family:'Lato',sans-serif; font-weight:700; font-size:16px;
  transition:all .2s; box-shadow:0 4px 12px rgba(62,64,149,.28);
}
.mob-btn-next:active { transform:scale(.98); opacity:.9; }
.mob-btn-next.confirm { background:linear-gradient(135deg,#FF5431,#d93b1e); box-shadow:0 4px 14px rgba(255,84,49,.3); }

@media (max-width:768px) {
  .topbar { padding:10px 0; border-bottom:2px solid #f0f0f0; }
  .topbar__inner { grid-template-columns:1fr; }
  .social-icons { display:none; }
  .topbar__phones { display:none; }
  .topbar__logo { grid-column:1/-1; justify-content:center; }
  .topbar__logo img { height:68px; }
  .navbar { position:relative; }
  .navbar__inner { position:relative; padding:0 8px; justify-content:space-between; min-height:48px; }
  .navbar__items { display:none; }
  .hamburger-btn { display:flex; }
  .reservas-btn { display:none; }
  .stepper-bar { padding:10px 16px; position:sticky; top:0; }
  .steps-wrapper {
    padding:14px 12px 0;
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
  .card-body { padding:16px; }
  .room-body { padding:14px; gap:18px; }
  .step-heading { margin-bottom:14px; }
  .step-heading h2 { font-size:18px; }
  .step-heading p { font-size:13px; }
  .date-range-row { grid-template-columns:1fr 1fr; gap:10px; }
  .nights-connector { display:none !important; }
  #nights-pill-mobile { display:block !important; }
  .compact-item { grid-template-columns:80px 1fr 36px; min-height:64px; }
  .compact-img { min-height:64px; }
  .compact-nome { font-size:13px; }
  .compact-preco { font-size:12px; }
  .ocupantes-row { grid-template-columns:1fr; gap:10px; }
  .sm-btn { width:44px; height:44px; font-size:16px; }
  .sm-val { width:44px; font-size:16px; line-height:44px; }
  .qty-btn { width:48px; height:48px; }
  .qty-val { font-size:20px; line-height:48px; }
  .qty-counter { height:48px; }
  .qty-row-label { font-size:14px; }
  .price-bar { flex-direction:column; align-items:flex-start; gap:8px; }
  .price-bar-right { text-align:left; }
  .price-tag { justify-content:flex-start; }
  .price-bar-left .price-total { font-size:22px; }
  .step-footer { display:none; }
  .mobile-action-bar { display:flex; }
  .mobile-action-bar.hidden { display:none; }
  .resumo-dates { grid-template-columns:1fr; gap:8px; }
  .resumo-noites { justify-content:flex-start; }
  .resumo-total-value { font-size:24px; }
  .resumo-mini { flex-direction:column; gap:8px; }
  .login-fields { grid-template-columns:1fr; }
  .btn-login { width:100%; justify-content:center; height:50px; font-size:16px; }
  .form-row, .form-row.cols-3 { grid-template-columns:1fr; }
  .cep-row { grid-template-columns:1fr auto; }
  .btn-cep { height:50px; }
  .payment-methods { grid-template-columns:1fr; gap:12px; }
  .payment-card {
    display:grid;
    grid-template-columns:50px 1fr;
    text-align:left;
    gap:0 14px;
    padding:14px 16px;
    align-items:center;
  }
  .payment-card-icon { font-size:26px; margin-bottom:0; grid-row:1/3; align-self:center; }
  .payment-card h3 { font-size:14px; margin-bottom:2px; }
  .payment-card p { font-size:12px; }
  .payment-card .discount-badge { margin-top:4px; display:inline-block; }
  .payment-card-check { top:10px; right:10px; }
  .confirmation-title { font-size:20px; }
  .confirmation-sub { font-size:14px; }
  .btn-home { width:100%; justify-content:center; }
  .lb-prev { left:8px !important; }
  .lb-next { right:8px !important; }
  .lb-thumbs { gap:6px; }
  .lb-thumb { width:48px; height:36px; }
  .lb-main img { max-height:55vh; }
  .lb-close { top:-40px; }
}

@media (max-width:380px) {
  .date-range-row { grid-template-columns:1fr; }
  .compact-item { grid-template-columns:72px 1fr 32px; }
  .card-body { padding:12px; }
  .room-body { padding:12px; }
}

/* ═══════════════════════════════════════ TOAST (snackbar) */
.toast {
  position:fixed; bottom:84px; left:50%;
  transform:translateX(-50%) translateY(12px);
  color:#fff; padding:13px 16px 13px 14px;
  border-radius:12px; font-size:14px; font-weight:600;
  display:flex; align-items:center; gap:10px;
  z-index:9999; opacity:0; pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  min-width:260px; max-width:min(480px, calc(100vw - 32px));
  box-shadow:0 8px 28px rgba(0,0,0,.28);
  white-space:normal; line-height:1.4;
}
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); pointer-events:auto; }
.toast.error   { background:#dc2626; }
.toast.warning { background:#d97706; }
.toast.info    { background:#3E4095; }
.toast i:first-child { font-size:16px; flex-shrink:0; }
.toast-msg { flex:1; }
.toast-close { cursor:pointer; opacity:.75; padding:2px 4px; flex-shrink:0; transition:opacity .15s; }
.toast-close:hover { opacity:1; }
@media (min-width:641px) { .toast { bottom:32px; } }
