#fale_comigo{
    padding: 60px;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--myligthblue);
}

#colunas_fale_comigo{
    flex-direction: row;
    height: 50%;
    width: 100%;
}

#fale_comigo .col{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

#animacao_falecomigo{
    height: 50%;
    width: 100%;
}

#chat{
    display: none;
    opacity: 0;
    transform: translateY(-200px);
    border-radius: 12px;
    width: 350px;
    height: 665px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.295);
    position: fixed;
    z-index: 100;
    bottom: 0;
    right: 0;
    margin: 50px;
}

#chat_header{
    border-radius: 12px 12px 0 0;
    background-color: var(--mydarkblue);
    height: 100px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    color: white;
}

#foto_nome_mensagem{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 100%;
    width: fit-content;
}

#close_chat{
    font-size: 25px;
    border: none;
    background-color: transparent;
    width: 30px;
    height: 30px;
    color: white;
}

#foto_nome_mensagem div{
    height: fit-content;
    width: fit-content;
    background-color: var(--myred);
    border-radius: 100%;
    border: 1px solid white;
}

#foto_nome_mensagem span{
    font-size: 14px;
    margin-left: 10px;
    color: white;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

#foto_nome_mensagem img{
    border-radius: 100%;
}


#mensagem_chat{
    height: 500px;
    width: 100%;
    overflow-y: scroll;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

#inputs_chat{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    width: 100%;
    border-radius: 35px;
    padding: 10px 20px;
    background-color: var(--myligthblue);
}

#input_chat{
    width: 90%;
    height: 100%;
    background-color: transparent;
    border: none;
    color: white;
}


#input_chat:focus{
    border: none !important;
}

#enviar_chat{
    width: fit-content;
    background-color: transparent;
    border: none;
}

#enviar_chat svg{
    width: 20px;
    height: 20px;
}

#wrapperInputs{
    background-color: white;
    padding: 0 15px 15px 15px;
    border-radius: 0 0 12px 12px;
}

.mensagem{
    width: fit-content;
    max-width: 80%;
    padding: 12px;
    color: white;
    margin-bottom: 10px;
    text-align: start;
}

.mensagem a{
    color: white;
    text-decoration: underline;
}

.mensagem a::after{
    content: '🔗';
}

.mensagem a:hover{
    font-weight: 700;
}

.msg_minha{
    margin-right: auto;
    border-radius: 0 20px 20px 20px;
    background-color: var(--myligthblue);
}

.selecionar_msg{
    margin: 0 auto 10px auto;
    border-radius: 20px;
    color: var(--myred);
    border: solid 2px var(--myred);
    transition: all 1.2s ease;
    background-color: transparent
}

.selecionar_msg:hover{
    background-color: var(--myred);
    color: white;
}

.msg_user{
    margin-left: auto;
    border-radius: 20px 20px 0 20px;
    background-color: var(--mydarkblue);
}

#liveToast, #liveToast strong{
    color: white;
}

#liveToast button{
    background-color: transparent;
    border: none;
    color: white;
    font-size: 16px;
}

.toast-header{
    background-color: #bb272e;
    border: none;
}

.toast-body{
    background-color: var(--myred);
}



#botoes_curriculo{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

#fale_comigo .col h2{
    color: white;
    margin-bottom: 20px;
    font-size: 3.98vw;
}


#abir_chat svg{
    width: 100%;
    position: relative;
    opacity: 0;
    transform: rotate(90deg);
}

#aviao{
    position: absolute;
}


#button_h2_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;

}

.botao_abrir_chat{
    border: none;
    background-color: transparent;
    height: fit-content;
    width: fit-content;
}

.b_disabled .linkProjetoWrapper {
    background-color: var(--mygrey) !important;
    transform: none !important;
}

@media screen and (max-width: 600px) {
    #fale_comigo{
        padding: 0;
    }

    #fale_comigo .col{
        width: 90%;
    }

    #fale_comigo .col h2{
        font-size: 23px;
    }

    #colunas_fale_comigo{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #animacao_falecomigo{
        height: 40%;
        width: 60%;
        display: none;
    }

    #aviao{
        width: 160px;
    }

    #colunas_fale_comigo .linkProjetoWrapper:hover{
        transform: none !important;
    }
    #colunas_fale_comigo .linkProjetoWrapper{
        transform: scale(1.05);
    }
    #abir_chat svg{
        transform: translateY(-70px) rotate(90deg);
    }

    #chat{
        width: 100%;
        height: 100%;
        z-index: 9999;
        margin: 0;
        border-radius: 0;
    }
    #chat_header{
        height: 10%;
        border-radius: 0;
        
    }
    #mensagem_chat{
        height: 80%;
        background-color: rgba(255, 255, 255, 0.884);
        backdrop-filter: blur(90px);
    }
    #wrapperInputs{
        height: 10%;
        border-radius: 0;
    }
}