  .flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
    
  .chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 400px; 
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden; 
  }

  .title__chatbot {
    background: linear-gradient(to top, black, gray); /* Gradiente de abajo a arriba */
    width: 100%;
    display: flex;
    gap: 10px;
    border-radius: 10px 10px 0 0;
    color: white;
    padding: .5rem;
  }
  
  
  .chatbot-icon {
    width: 45px; 
    height: 45px;
    object-fit: contain; 
    padding: 0rem .5rem .5rem .5rem;
  }
  .chatbot-title {
    font-size: 20px;
    font-weight: bold;
    padding: .5rem;
    border-radius: .5rem;
    color: #000;
  }

  .chatbox {
    max-height: 400px;
    overflow-y: auto;
  }

  .chatbot-text {
    font-size: 16px;
    color: #333;
  }

  .input-group {
    display: flex;
    margin-top: 10px;
  }

  .form-control {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }

  .submit-button {
    background-color: #FFB602;
    border: none;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
  }
