.custom-whatsapp-widget {
    position: fixed;
    bottom: 120px;
    right: 40px;
    z-index: 9999;
}

.chat-bubble {
  background: #C8D37F;
  border: 2px solid #094740;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  padding: 25px;
  width: 350px;
  display: none;
  flex-direction: column;
  background-image: url(https://21248820.fs1.hubspotusercontent-na1.net/hubfs/21248820/hoja-fondo.webp);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100px !important;
}

.chat-bubble.open {
  display: flex;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction:column;
}

.chat-header .logo {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 17px;
}

.welcome-message {
  margin: 10px 0;
}

.chat-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-form input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.chat-form button {
  background-color: #f15a24;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.hidden {
  display: none; 
}

.whatsapp-icon {
    align-items: center;
    background-color: #25d366;
    border-radius: 50%;
    bottom: 30px;
    cursor: pointer;
    display: flex;
    height: 80px;
    justify-content: center;
    position: fixed;
    right: 25px;
    width: 80px;
    z-index: 9999;
}
}
.whatsapp-icon img {
  width: 30px;
  height: 30px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  margin-left: 30px;
}

.online-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00e676; /* verde */
  animation: colorBlink 1s infinite;
}

@keyframes colorBlink {
  0%, 100% {
    background-color: #00e676; /* verde */
  }
  50% {
    background-color: #000000; /* negro */
  }
}


