.v23-contact-assist {
  position: fixed;
  right: 22px;
  bottom: 76px;
  z-index: 1200;
  display: grid;
  justify-items: end;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

body.v23-fixed-controls-suppressed #m0-consent-settings {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.v23-contact-assist [hidden] { display: none !important; }

.v23-contact-assist__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 17px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #fff;
  background: #111820;
  box-shadow: 0 14px 36px rgba(5, 10, 15, .22);
  font: 600 14px/1.2 Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.v23-contact-assist__mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  font-size: 17px;
  line-height: 1;
}

.v23-contact-assist__trigger:hover { background: #1a232d; }

.v23-contact-assist__trigger:focus-visible,
.v23-contact-assist__close:focus-visible,
.v23-contact-assist__whatsapp:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #e5372f;
}

.v23-contact-assist__panel {
  width: min(390px, calc(100vw - 32px));
  max-height: min(650px, calc(100vh - 100px));
  overflow: auto;
  border: 1px solid #d7dce1;
  border-radius: 16px;
  color: #111820;
  background: #fff;
  box-shadow: 0 22px 60px rgba(5, 10, 15, .25);
}

.v23-contact-assist__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #e6e9ec;
}

.v23-contact-assist__kicker {
  display: block;
  margin-bottom: 5px;
  color: #e5372f;
  font: 700 11px/1.2 "IBM Plex Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.v23-contact-assist__head h2 {
  margin: 0;
  font: 700 22px/1.15 Arial, Helvetica, sans-serif;
  letter-spacing: -.025em;
}

.v23-contact-assist__close {
  flex: 0 0 auto;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid #d7dce1;
  border-radius: 50%;
  color: #111820;
  background: #fff;
  font: 400 20px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.v23-contact-assist__list {
  margin: 0;
  padding: 4px 20px 2px;
  list-style: none;
}

.v23-contact-assist__faq {
  padding: 14px 0;
  border-bottom: 1px solid #e6e9ec;
}

.v23-contact-assist__faq:last-child { border-bottom: 0; }

.v23-contact-assist__faq h3 {
  margin: 0 0 5px;
  color: #111820;
  font: 700 14px/1.35 Arial, Helvetica, sans-serif;
}

.v23-contact-assist__faq p {
  margin: 0;
  color: #5e6873;
  font: 400 13px/1.5 Arial, Helvetica, sans-serif;
}

.v23-contact-assist__action {
  padding: 16px 20px 20px;
  background: #f5f7f8;
}

.v23-contact-assist__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 5px;
  color: #fff;
  background: #15883e;
  font: 700 14px/1.2 Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.v23-contact-assist__whatsapp:hover { background: #106f32; }

.v23-contact-assist__note {
  margin: 9px 0 0;
  color: #68717b;
  font: 400 11px/1.45 Arial, Helvetica, sans-serif;
  text-align: center;
}

@media (max-width: 720px) {
  .v23-contact-assist { right: 12px; bottom: 72px; }
  .v23-contact-assist__trigger { min-height: 48px; padding-right: 14px; }
  .v23-contact-assist__panel { width: calc(100vw - 24px); max-height: calc(100vh - 82px); }
}

body:has(#m0-consent-banner:not([hidden])) .v23-contact-assist,
body.v23-fixed-controls-suppressed .v23-contact-assist {
  top: calc(var(--header, 76px) + 12px);
  right: 12px;
  bottom: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body:has(#m0-consent-banner:not([hidden])) .v23-contact-assist__trigger,
body.v23-fixed-controls-suppressed .v23-contact-assist__trigger {
  width: 50px;
  min-height: 50px;
  padding: 9px;
  justify-content: center;
  gap: 0;
  background: #15883e;
  box-sizing: border-box;
}

body:has(#m0-consent-banner:not([hidden])) .v23-contact-assist__mark,
body.v23-fixed-controls-suppressed .v23-contact-assist__mark {
  background: transparent;
}

body:has(#m0-consent-banner:not([hidden])) .v23-contact-assist__trigger > span:last-child,
body.v23-fixed-controls-suppressed .v23-contact-assist__trigger > span:last-child {
  display: none;
}

body:has(#m0-consent-banner:not([hidden])) .v23-contact-assist__panel,
body.v23-fixed-controls-suppressed .v23-contact-assist__panel {
  position: fixed;
  top: calc(var(--header, 76px) + 74px);
  right: 12px;
  width: min(390px, calc(100vw - 24px));
  max-height: calc(100vh - var(--header, 76px) - 98px);
}

@media (prefers-reduced-motion: reduce) {
  .v23-contact-assist *,
  .v23-contact-assist *::before,
  .v23-contact-assist *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
