.dashboard-perfil {
    padding: 0 108px;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}

.menu-lateral {
    width: 20%;
    padding: 32px;
    border: 1px solid #D7D8FF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opcao {
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 3px;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Inter';
    font-size: 14px;
    color: #83878D;
}

.menu-lateral .selected {
    background-color: #D7D8FF;
    border: 1px solid #0A66F3;
    color: #0A66F3;
}

.selected svg {
    color: #0A66F3;
}

.menu-lateral button:hover {
    background-color: #D7D8FF !important;
}

.titulo-menu {
    margin-bottom: 12px;
    color: #4B4B4B;
    font-family: 'Cabinet Grotesk';
    font-weight: 600;
    font-size: 16px;
}

.sections {
    display: flex;
    flex-direction: column;
    width: 75%;
    gap: 24px;
}

.menu-dados {
    padding: 32px;
    border: 1px solid #D7D8FF;
    border-radius: 8px;
}

.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botao-editar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter';
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    color: #497CFF;
}

.divider {
    border: 1px solid #DBDDDF;
    margin: 24px 0px;
}

.foto-perfil-container .avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
}

.foto-perfil-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.options-img {
    display: flex;
    gap: 8px;
}

.options-img button{
    font-family: 'Inter';
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
}

.alterar-img {
    background-color: #ffffff; 
    color: #5B5F64;
    border: 1px solid #5B5F64;
}

.remover-img {
    background-color: #ffffff;
    color: #FF5E51;
    border: 1px solid #FF5E51;
}

.recomendacao {
    font-family: 'Inter';
    font-size: 14px;
    color: #767171;
    margin-top: 12px;
}

.recomendacao span {
    color: #37393D;
    font-weight: 600;
}

.container-infos {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-pessoais {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.titulo-infos {
    color: #4B4B4B;
    font-family: 'Cabinet Grotesk';
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.info-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.infos {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: #83878D;
}

.endereco {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dados-bancarios {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth {
    padding: 16px 32px;
    border: 1px solid #D7D8FF;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth p {
    font-family: 'Inter';
    font-size: 14px;
    color: #4B4B4B;
}

.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 16px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(16px);
}