* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; height: 100%; overflow: hidden; }

#site-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* === Estilos del chatbot === */
.chatbot-button {
  position: fixed;
  bottom: 35px;
  right: 55px;
  background-color: #00d3d8;
  border: none;
  padding: 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 211, 216, 0.3);
}

.chatbot-button:hover {
  background-color: #2CBAD8;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 211, 216, 0.4);
}

.chatbot-button.hidden {
  display: none;
}

.chatbot-container {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 200px;
  height: 200px;
  background-color: #fff;
  border-radius: 120px 0 0 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  margin-right: 15px;
}

.chatbot-container.visible {
  display: block;
}

.button_in {
  position: absolute;
  padding: 0;
  background-color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-container.visible .button_in {
  display: flex;
}

.button_in:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.button_in a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
}

.position_1 {
  bottom: 20px;
  right: 130px;
}

.position_2 {
  bottom: 85px;
  right: 125px;
}

.position_3 {
  bottom: 125px;
  right: 78px;
}

.position_4 {
  bottom: 125px;
  right: 15px;
}

.icon-chatbot {
  width: 30px;
  height: auto;
}

.icon_2-chatbot {
  width: 60%;
  height: auto;
}
