@charset "UTF-8";
.zapBox {
  position: absolute;
}
.zapBox #chatWindow {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  background: #ece5dd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 55px 0 0 0;
  z-index: 1002;
  flex-direction: column;
  height: 320px;
}
.zapBox .chatHeader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45px;
  background: linear-gradient(45deg, #25D366, #128C7E);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.zapBox .closeButton {
  color: white;
  cursor: pointer;
  font-weight: bold;
  font-size: 22px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.zapBox #chatMessages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 510px;
  margin-bottom: 68px;
  /* altura do form para evitar sobreposição */
}
.zapBox .message {
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  max-width: 80%;
  word-wrap: break-word;
  align-self: flex-start;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.zapBox .message.user {
  background-color: #dcf8c6;
  align-self: flex-end;
}
.zapBox .timestamp {
  font-size: 12px;
  color: #999;
  margin-left: 10px;
  align-self: flex-end;
}
.zapBox form {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  background: linear-gradient(45deg, #25D366, #128C7E);
  border-radius: 0 0 10px 10px;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.zapBox .inputBox {
  flex-grow: 1;
  padding: 12px 16px;
  border-radius: 20px;
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  outline: none;
  color: #000;
  font-weight: 600;
  cursor: text;
}
.zapBox .inputBox:disabled {
  cursor: not-allowed;
  background-color: rgba(255, 255, 255, 0.6);
}
.zapBox .sendButton {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zapBox .sendButton:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.zapBox .sendButton svg {
  width: 24px;
  height: 24px;
  fill: black;
}
.zapBox #character {
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 1000;
  font-size: 50px;
  cursor: pointer;
  display: none;
}
@media (max-width: 768px) {
  .zapBox #character.HOME {
    bottom: 60px !important;
  }
  .zapBox #character.SECAO {
    bottom: 114px !important;
  }
}
.zapBox #character .cloud {
  position: absolute;
  bottom: 52px;
  right: 5px;
  background-color: #e0e0e0;
  padding: 15px 25px;
  border-radius: 20px;
  font-size: 16px;
  width: 190px;
  text-align: left;
  display: none;
}
.zapBox #character .cloud:before {
  content: "";
  position: absolute;
  right: 20px;
  /* bico para a direita */
  top: 100%;
  border-width: 10px;
  border-style: solid;
  border-color: #e0e0e0 transparent transparent transparent;
  transform: none;
}
.zapBox #spyCharacter {
  position: fixed;
  bottom: 60px;
  right: 10px;
  font-size: 40px;
  cursor: pointer;
  display: none;
  z-index: 1000;
}
@media (max-width: 768px) {
  .zapBox #spyCharacter.HOME {
    bottom: 60px !important;
  }
  .zapBox #spyCharacter.SECAO {
    bottom: 114px !important;
  }
}
.zapBox #spyMessage {
  position: fixed;
  bottom: 110px;
  right: 25px;
  background-color: #fff8dc;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  max-width: 200px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
  .zapBox #spyMessage.HOME {
    bottom: 107px !important;
  }
  .zapBox #spyMessage.SECAO {
    bottom: 150px !important;
  }
}
.zapBox #spyMessage.show {
  opacity: 1;
}
.zapBox #optionButtons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.zapBox #optionButtons button {
  flex: 0 1 95px;
  padding: 10px 0;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  border: none;
}
.zapBox #optionButtons .yes {
  background: linear-gradient(45deg, #25D366, #128C7E);
  color: white;
}
.zapBox #optionButtons .no {
  background: #D32F2F;
  color: white;
}/*# sourceMappingURL=zap.css.map */