/* V23.32 — retorno visual após abrir a solicitação no WhatsApp */
body.booking-redirect-open { overflow: hidden; }
.booking-redirect-layer[hidden] { display: none !important; }
.booking-redirect-layer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(3, 4, 18, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.booking-redirect-card {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 48px);
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 26px;
  background: linear-gradient(145deg, #1117c9 0%, #090b78 100%);
  color: #fff;
  text-align: center;
  box-shadow: 12px 12px 0 var(--pink);
}
.booking-redirect-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.booking-redirect-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 9px rgba(255,255,255,.06);
}
.booking-redirect-icon span {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255,255,255,.25);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: booking-spin .75s linear infinite;
}
.booking-redirect-icon.is-ready span {
  width: 28px;
  height: 16px;
  border: 0;
  border-left: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  border-radius: 0;
  transform: rotate(-45deg) translate(2px,-2px);
  animation: none;
}
.booking-redirect-eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.booking-redirect-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 9vw, 66px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}
.booking-redirect-card > p:not(.booking-redirect-eyebrow):not(.booking-redirect-note) {
  max-width: 430px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
}
.booking-redirect-actions {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}
.booking-redirect-actions .button { width: 100%; min-height: 54px; }
.booking-redirect-new {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
  cursor: pointer;
}
.booking-redirect-note {
  margin: 20px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 9px;
  line-height: 1.55;
}
@keyframes booking-spin { to { transform: rotate(360deg); } }
@media (max-width: 520px) {
  .booking-redirect-layer { padding: 14px; }
  .booking-redirect-card { padding: 34px 18px 24px; border-radius: 21px; box-shadow: 7px 7px 0 var(--pink); }
  .booking-redirect-close { top: 10px; right: 10px; width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .booking-redirect-icon span { animation: none; }
}
