body{
    display: flex;
    flex-direction: column;
}

.container_perfil{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 1rem;
}

.div_olho_senha{
    position: relative;
}

.div_perfil{
    position: relative;
}

.fa-eye{
    position: absolute;
    top: 50%;
    right: 8px;
    color: black;
    transform: translateY(-50%);
    cursor: pointer;
}

.fa-eye-slash{
    position: absolute;
    top: 50%;
    right: 8px;
    color: black;
    transform: translateY(-50%);
    cursor: pointer;
}

.icone_camera{
    color: white;
    font-size: 14px;
}

.div_camera{
    position: absolute;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d9488;
    cursor: pointer;
}

.img_perfil{
    object-fit: cover;
    width: 100%;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    border: 2px solid #a5a5a5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_perfil{
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

main{
    flex: 1;
}

.div_inputs{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.texto_inputs{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.container_inputs{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
}

.inputs{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.btn_salvar{
    background-color: #228fe9;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    width: 100%;
    cursor: pointer;
}

.texto_nome_perfil{
    margin: 0;
    font-size: 22px;
}

.container_nome{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.btn_excluir{
    background-color: #e92222;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    width: 100%;
    cursor: pointer;
}

.div_btns{
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
    width: 100%;
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    max-width: 300px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1rem;
}

.texto_modal {
    margin: 0;
    margin-top: 15px;
}

.modal-estrelas {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.modal-estrelas i {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-estrelas i.selecionada {
    color: gold;
}

.textarea_avaliacao {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    resize: none;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.btn_enviar_avaliacao {
    width: 100%;
    background-color: #e92222;
    cursor: pointer;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    margin-top: 0.8rem;
}

.btn_pular_avaliacao {
    width: 100%;
    cursor: pointer;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    margin-top: 0.8rem;
    background-color: #228fe9;
}

.fa-xmark {
    align-self: flex-end;
    font-size: 18px;
    color: #000000b8;
    cursor: pointer;
}
