
.chat-button {
    position: fixed;
    bottom: 80px;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Estilos específicos para el botón "Chatea con IA" */
.chat-ia {
    left: 20px;
    background-color:greenyellow;
    color: black;
    font-weight: bolder;
}

.chat-ia:hover {
    background-color: #0056b3;
}

/* Estilos específicos para el botón "Chatea con El Master" */
.chat-master {
    right: 20px;
    background-color: #28a745;
}

.chat-master:hover {
    background-color: #1e7e34;
}


@media (max-width: 768px) { 

    .chat-button {
        bottom: 30px;
    }
  }