.chatbot-wrapper {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.chatbot-sticky {
  position: static; /* ya no necesita fixed, el wrapper lo maneja */
  display: block;
  width: 120px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chatbot-sticky img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chatbot-sticky:hover {
  transform: scale(1.05);
}

.chatbot-bubble {
  position: absolute;
  bottom: -13%;   
  background-color: #233a8c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: fadeInBubble 0.4s ease forwards;
  opacity: 1;
  z-index: 12;
}

/* Tablets */
@media (max-width: 950px) {
  .chatbot-wrapper {
   right: 30px;
  }
  .chatbot-sticky {
    width: 120px;
    height: auto;
  }


}

/* Mobile */
@media (max-width: 600px) {
  #vambe-styles .font-normal {
    height: 100dvh;
  }
  .chatbot-bubble {
    font-size: 12px;
    padding: 10px 16px;
  }

  .chatbot-wrapper {
    bottom: 30px;
  }

  body.home .chatbot-wrapper,
  body.front-page .chatbot-wrapper {
    bottom: 120px;
  }
}