.chat_IA {
  position: fixed !important;
  left: 0;
  top: 80%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.chat_IA-image {
  width: 4rem;
  height: 4rem;
}

.chat_IA:hover .tooltip__content {
  display: block;
}

/* tirar do botão deles */
.disabled\:opacity-50:disabled {
  opacity: 1 !important;
}

.disabled\: opacity-50:disabled {
  opacity: 1 !important
}

[data-slot="button"] {
  opacity: 1 !important
}

/* Chat iframe */
.chat_iframe {
  position: fixed;
  left: 2%;
  top: 75%;
  transform: translateY(-100%);
  z-index: 999;
  width: 18.75rem;
  height: 28.125rem;
  border-radius: var(--radius-075);
  background: #fff;
  box-shadow: var(--elevation-medium);
  overflow: hidden;
  display: none;
}

.chat_iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.chat_iframe.open {
  display: block;
}