/* Cartão de agendamento — position:fixed, controlado por JS */

#gk-fixed-booking {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#gk-fixed-booking.is-visible {
  pointer-events: auto;
  opacity: 1;
}

#gk-fixed-booking.gk-booking-as-modal {
  inset: 0;
  top: 0;
  left: 0;
  transform: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.65);
}

.gk-about-booking-card {
  box-sizing: border-box;
  width: min(96vw, 600px);
  margin: 0 auto;
  padding: 2.6rem 2.75rem 2.8rem;
  font-family: 'Montserrat', sans-serif;
  color: #f0f0f0;
  background: rgba(8, 8, 8, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gk-about-booking-kicker {
  margin: 0 0 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 17px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8e8e8;
  text-align: center;
  line-height: 1.35;
}

.gk-about-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gk-about-booking-label {
  font-size: clamp(11px, 1.15vw, 13px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 240, 240, 0.85);
}

.gk-about-booking-input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.35vw, 17px);
  color: #f5f5f5;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.gk-about-booking-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.gk-about-booking-input:focus {
  outline: none;
  border-color: rgba(200, 60, 60, 0.75);
  box-shadow: 0 0 0 2px rgba(200, 60, 60, 0.25);
}

.gk-about-booking-error {
  margin: 0;
  font-size: 13px;
  color: #ff8a8a;
  text-align: center;
}

.gk-about-booking-cta {
  display: flex;
  justify-content: center;
  margin-top: 0.35rem;
  width: 100%;
}

.gk-about-booking-cta .gk-about-booking-submit {
  width: auto !important;
  min-width: min(100%, 300px);
  max-width: 100%;
  padding: 1rem 2.25rem;
  font-size: clamp(15px, 1.35vw, 17px);
  cursor: pointer;
  display: inline-block;
}
