.chat-container {
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 400px;
    display: none; /* Começa oculto */
    border-radius: 14px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999 !important;
}

.chat-header {
    background: #12B76A;
    color: white;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    position: relative;
}

.close-button{
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;    
}

.close-button:hover{
    color: #eee;    
}

.welcome-message{    
    margin: 0 2rem 2rem 2rem;
    text-align: center;
}

.welcome-text{
    font-size: 24px;
    font-weight: bold;
}

.info-text{
    font-style: italic;
}

/* Formulário de Nome e E-mail */
.chat-user-info {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
}

.chat-user-info input {
    margin-bottom: 8px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 14px;
    font-size: 14px;
}

.chat-user-info button {
    background: #12B76A;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 14px;
    font-weight: bold;
    font-size: 14px;
}

.chat-user-info button:hover {
    background: #0b9b55;
}

/* Área de mensagens (oculta até iniciar o chat) */
.chat-messages {
    display: none;
    height: 450px;
    padding: 10px;
    overflow-y: auto;
    font-size: 12px;
    border-top: 1px solid #ccc;
}

/* Campo de entrada de mensagem (oculto até iniciar o chat) */
.chat-input {
    display: none;
    border-top: 1px solid #ccc;
    padding: 7px 5px;
    font-size: 12px;
}

.chat-input input {
    flex: 1;
    padding: 5px;
    border: none;
    outline: none;
    font-size: 12px;
}

.chat-input button {
    background: #12B76A;
    color: white;
    border: none;
    padding: 7px 10px;
    cursor: pointer;
    border-radius: 100%;
    font-size: 14px;
}
.chat-input button:hover {
    background: #0b9b55;
}

.chat-button {
    position: fixed;
    bottom: 70px;
    right: 15px;
    background: #12B76A;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Client message */
.client-info{    
    text-align: right;
    font-size: 10px;
    opacity: 70%;
    margin-top: 10px;
}
.client{
    color: #FFF;
    margin-bottom: 2px;
    text-align: left;
    margin-left: 100px;
    float: right;
    background-color: #12b76a;
    padding: 4px 8px;
    border-radius: 6px;
    max-width: fit-content; /* Largura conforme necessário (texto) */
}

/* Support message */
.support-info{
    text-align: left;
    font-size: 10px;
    opacity: 70%;
    margin-top: 10px;
}
.support{
    color: #FFF;
    margin-bottom: 2px;
    text-align: left;
    margin-right: 100px;
    float: left;
    background-color: #6b6b6b;
    padding: 4px 8px;
    border-radius: 6px;   
    max-width: fit-content; /* Largura conforme necessário (texto) */
}
