#chat-button {
    position: fixed;
    bottom: 32px;
    right: 16px;
    z-index: 1;
    display: block;
}

#chat-button img {
    cursor: pointer;
    max-width: 120px;
}

/* Estilos para la burbuja */
.chat-bubble {
    position: relative;
    display: inline-block;
    font-weight: bold;
}

.chat-bubble img {
    width: 100%; 
}

.chat-bubble h5 {
    position: absolute;
    top: 46%; 
    left: 54%; 
    transform: translate(-50%, -50%); 
    color: #205d7f !important;
    font-size: 12px; 
    margin: 0;
    width: 300px;
    /* text-align: center; */
    font-weight: bold;
   
}
.chat-bubble p {
    position: absolute;
    top: 60%; 
    left: 45%; 
    transform: translate(-50%, -50%); 
    color: #205d7f !important;
    font-size: 12px; 
    margin: 0;
    width: 300px;
    text-align: center; 
    font-size: 10px;
   
}
.ia {
    color: #8263a7; 
    font-weight: 700;
  }
  .ias {
    color: #8263a7; 
  
  }

@media (max-width: 429px) {
    .chat-bubble {
      display: none;
    }
  }
