:root {
  --ibdaa4u-wr-green: #19c36b;
  --ibdaa4u-wr-green-2: #0ea66a;
  --ibdaa4u-wr-dark: #0f172a;
  --ibdaa4u-wr-navy: #111827;
  --ibdaa4u-wr-teal: #0f766e;
  --ibdaa4u-wr-muted: #64748b;
  --ibdaa4u-wr-bg: #ffffff;
  --ibdaa4u-wr-border: #e5e7eb;
  --ibdaa4u-wr-soft: #f8fafc;
  --ibdaa4u-wr-shadow: 0 26px 80px rgba(15, 23, 42, .24);
}

.ibdaa4u-wr-hidden { display: none !important; }

#ibdaa4u-whatsapp-router-root,
#ibdaa4u-whatsapp-router-root * {
  box-sizing: border-box;
}

#ibdaa4u-whatsapp-router-root button,
.ibdaa4u-wr-shortcode-button {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

.ibdaa4u-wr-launcher {
  position: fixed;
  bottom: 22px;
  z-index: 999999;
  border: 1px solid rgba(255, 255, 255, .26) !important;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 12px;
  min-height: 62px;
  padding: 0 20px 0 17px;
  color: #fff !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .26), transparent 30%),
    linear-gradient(135deg, #22c55e 0%, #16a34a 48%, #047857 100%) !important;
  box-shadow: 0 18px 48px rgba(4, 120, 87, .34), inset 0 1px 0 rgba(255, 255, 255, .22);
  cursor: pointer;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -.2px;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  isolation: isolate;
}

.ibdaa4u-wr-launcher::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: rgba(34, 197, 94, .14);
  z-index: -1;
  animation: ibdaa4uWrPulse 2.5s infinite;
}

.ibdaa4u-wr-launcher:hover,
.ibdaa4u-wr-launcher:focus {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(4, 120, 87, .42), inset 0 1px 0 rgba(255, 255, 255, .24);
  filter: saturate(1.03);
  outline: none;
}

.ibdaa4u-wr-launcher--right { right: 22px; }
.ibdaa4u-wr-launcher--left { left: 22px; }

.ibdaa4u-wr-launcher-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .12));
}

.ibdaa4u-wr-panel {
  position: fixed;
  bottom: 98px;
  width: min(520px, calc(100vw - 28px));
  max-height: min(790px, calc(100vh - 120px));
  overflow: auto;
  z-index: 999999;
  border-radius: 30px;
  background: var(--ibdaa4u-wr-bg);
  color: var(--ibdaa4u-wr-dark);
  box-shadow: var(--ibdaa4u-wr-shadow);
  border: 1px solid rgba(226, 232, 240, .92);
  opacity: 0;
  transform: translateY(18px) scale(.975);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  font-family: inherit;
  overflow-x: hidden;
}

.ibdaa4u-wr-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ibdaa4u-wr-panel--right { right: 22px; }
.ibdaa4u-wr-panel--left { left: 22px; }

.ibdaa4u-wr-header {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .08), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(45, 212, 191, .34), transparent 42%),
    linear-gradient(135deg, #0f172a 0%, #102a43 52%, #0f766e 100%) !important;
  color: #fff;
  padding: 26px 26px 24px;
  border-radius: 30px 30px 0 0;
  position: relative;
  overflow: hidden;
}

.ibdaa4u-wr-header::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  left: -120px;
  top: -140px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 32px rgba(255, 255, 255, .025), 0 0 0 64px rgba(255, 255, 255, .018);
  pointer-events: none;
}

.ibdaa4u-wr-header::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -12px;
  width: 24px;
  height: 24px;
  margin-right: -12px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 5px;
}

.ibdaa4u-wr-brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 14px;
  opacity: .96;
}

.ibdaa4u-wr-brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, .16), 0 0 22px rgba(34, 197, 94, .78);
}

.ibdaa4u-wr-title {
  position: relative;
  z-index: 1;
  margin: 18px 0 8px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.28;
  font-weight: 950;
  letter-spacing: -.6px;
  color: #fff !important;
}

.ibdaa4u-wr-intro {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 95%;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .88) !important;
}

.ibdaa4u-wr-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, .18) !important;
  color: #fff !important;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.ibdaa4u-wr-close:hover,
.ibdaa4u-wr-close:focus {
  background: rgba(255, 255, 255, .13) !important;
  border-color: rgba(255, 255, 255, .36) !important;
  transform: rotate(90deg);
  outline: none;
}

.ibdaa4u-wr-body {
  padding: 26px 24px 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #f8fafc 100%);
}

.ibdaa4u-wr-label,
.ibdaa4u-wr-question-title {
  display: block;
  font-size: 13px;
  color: var(--ibdaa4u-wr-dark);
  font-weight: 950;
  margin: 0 0 11px;
}

.ibdaa4u-wr-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin: 0 0 18px;
}

.ibdaa4u-wr-service {
  position: relative;
  border: 1px solid rgba(226, 232, 240, .94) !important;
  border-right: 6px solid var(--service-color, #19c36b) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--service-color, #19c36b) 7%, #fff) 0%, #fff 32%, #fff 100%) !important;
  padding: 14px 16px;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--ibdaa4u-wr-dark) !important;
  text-align: right;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
}

.ibdaa4u-wr-service::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .76);
  pointer-events: none;
}

.ibdaa4u-wr-service:hover,
.ibdaa4u-wr-service:focus {
  transform: translateY(-2px);
  outline: none;
  border-color: color-mix(in srgb, var(--service-color, #19c36b) 44%, #e2e8f0) !important;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .11), 0 8px 22px color-mix(in srgb, var(--service-color, #19c36b) 18%, transparent);
}

.ibdaa4u-wr-service--selected {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--service-color, #19c36b) 13%, #fff) 0%, #fff 36%, #fff 100%) !important;
  border-color: var(--service-color, #19c36b) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .11), 0 8px 24px color-mix(in srgb, var(--service-color, #19c36b) 22%, transparent);
}

.ibdaa4u-wr-service-name {
  font-weight: 950;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.2px;
  color: #172033 !important;
}

.ibdaa4u-wr-service-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--service-color, #19c36b) 13%, #ffffff) !important;
  color: var(--service-color, #19c36b) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 8px 20px color-mix(in srgb, var(--service-color, #19c36b) 14%, transparent);
}

.ibdaa4u-wr-service-badge svg {
  width: 24px;
  height: 24px;
  display: block;
}

.ibdaa4u-wr-service-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--service-color, #19c36b) 10%, #ffffff);
  color: var(--service-color, #19c36b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.ibdaa4u-wr-questions {
  margin: 2px 0 18px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, .96);
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.ibdaa4u-wr-question { margin-bottom: 13px; }
.ibdaa4u-wr-question:last-child { margin-bottom: 0; }

.ibdaa4u-wr-question-label {
  display: block;
  margin-bottom: 7px;
  color: #1f2937;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.6;
}

.ibdaa4u-wr-question-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  background: #fff;
  color: var(--ibdaa4u-wr-dark);
  font-family: inherit;
  font-size: 14px;
  padding: 8px 12px;
  outline: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.ibdaa4u-wr-question-select:focus {
  border-color: #14b8a6;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .14);
}

.ibdaa4u-wr-request {
  width: 100%;
  min-height: 86px;
  resize: vertical;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ibdaa4u-wr-dark);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
  outline: none;
}

.ibdaa4u-wr-request:focus {
  border-color: #14b8a6;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .14), 0 10px 24px rgba(15, 23, 42, .06);
}

.ibdaa4u-wr-hint {
  margin: 9px 0 15px;
  font-size: 12px;
  color: var(--ibdaa4u-wr-muted);
  line-height: 1.75;
}

.ibdaa4u-wr-submit {
  width: 100%;
  min-height: 52px;
  border: 0 !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #22c55e, #16a34a 55%, #047857) !important;
  color: #fff !important;
  font-family: inherit;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 34px rgba(4, 120, 87, .26), inset 0 1px 0 rgba(255, 255, 255, .24);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.ibdaa4u-wr-submit:hover,
.ibdaa4u-wr-submit:focus {
  transform: translateY(-2px);
  filter: brightness(.98);
  box-shadow: 0 20px 40px rgba(4, 120, 87, .32), inset 0 1px 0 rgba(255, 255, 255, .26);
  outline: none;
}

.ibdaa4u-wr-shortcode { display: inline-flex; }
.ibdaa4u-wr-shortcode-button {
  border: 0 !important;
  border-radius: 14px !important;
  padding: 13px 19px;
  background: linear-gradient(135deg, #22c55e, #047857) !important;
  color: #fff !important;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(4, 120, 87, .22);
}

@keyframes ibdaa4uWrPulse {
  0%, 100% { transform: scale(.96); opacity: .62; }
  50% { transform: scale(1.08); opacity: .18; }
}

@supports not (background: color-mix(in srgb, #25D366 8%, #fff)) {
  .ibdaa4u-wr-service,
  .ibdaa4u-wr-service--selected { background: #fff !important; }
  .ibdaa4u-wr-service-badge,
  .ibdaa4u-wr-service-arrow { background: #f8fafc !important; }
  .ibdaa4u-wr-service:hover,
  .ibdaa4u-wr-service:focus { box-shadow: 0 16px 38px rgba(15, 23, 42, .11); }
}

@media (max-width: 767px) {
  .ibdaa4u-wr-launcher {
    bottom: 16px;
    min-height: 58px;
    padding: 0 16px 0 15px;
    font-size: 15px;
  }
  .ibdaa4u-wr-launcher--right { right: 14px; }
  .ibdaa4u-wr-launcher--left { left: 14px; }
  .ibdaa4u-wr-panel {
    bottom: 84px;
    width: calc(100vw - 22px);
    max-height: calc(100vh - 104px);
    border-radius: 26px;
  }
  .ibdaa4u-wr-panel--right { right: 11px; }
  .ibdaa4u-wr-panel--left { left: 11px; }
  .ibdaa4u-wr-header {
    padding: 24px 20px 22px;
    border-radius: 26px 26px 0 0;
  }
  .ibdaa4u-wr-close {
    top: 15px;
    left: 15px;
    width: 38px;
    height: 38px;
  }
  .ibdaa4u-wr-body { padding: 24px 16px 18px; }
  .ibdaa4u-wr-service {
    min-height: 66px;
    padding: 12px 13px;
    gap: 10px;
  }
  .ibdaa4u-wr-service-name { font-size: 15px; }
  .ibdaa4u-wr-service-badge {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .ibdaa4u-wr-service-arrow {
    width: 30px;
    height: 30px;
  }
}
