#sedec-chatbot-fab {
  position: fixed;
  right: 10px;
  z-index: 2147483646;
}

.fab-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.fab-img {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: block;
  position: relative;
  z-index: 1;
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 8px);
  top: 0;
  height: 40px;
  width: 0;
  overflow: hidden;
  background: #1ae299; /* cor do balão flutuante */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza horizontalmente */
  white-space: nowrap;
  transition: width 0.4s ease;
  pointer-events: none;
}

.fab-tooltip span {
  color: #ffffff !important; /* força branco mesmo com CSS externo sobrescrevendo */
  font-size: 13px;
  font-weight: 500;
  padding: 0 16px;
  opacity: 0;
  transition: opacity 0.25s ease 0.15s;
  white-space: nowrap;
  display: block;
  text-align: center;
}

@media (hover: hover) {
  .fab-wrapper:hover .fab-tooltip {
    width: 230px; /* largo o suficiente para "Assistente Virtual SEDEC" */
  }
  .fab-wrapper:hover .fab-tooltip span {
    opacity: 1;
  }
}

.chat-window {
  position: fixed;
  top: 50%;
  right: 10px;
  width: 350px;
  height: 450px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(20px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 2147483647;
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.chat-header {
  background: #CED4DA;
  padding: 0;
  border-bottom: 1px solid #ddd;
}

.chat-header .modal-header {
  padding: 20px 20px 15px 20px;
}

.chat-header .modal-title {
  font-size: 14px;
}

.chat-header .govrnbar {
  height: 4px;
}

.chat-close {
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 4px;
}

.chat-body { flex: 1 1; }

.chat-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 600px) {
  #sedec-chatbot-fab { right: 8px; }
  .chat-window {
    width: 94vw;
    height: 82vh;
    right: 3vw;
    top: 50%;
    bottom: unset;
    border-radius: 10px;
  }
}

/*# sourceMappingURL=main.chunk.css.map*/