main {
    flex: 1;
    overflow: auto;
}

main::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.cards {
    margin: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.titulo_card {
    color: #2980b9;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.div_publiciade {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background-color: #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.texto_publicidade {
    margin: 0;
}

.div_busca {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.input_busca {
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-family: "Poppins", sans-serif;
    border-radius: 8px;
    flex: 1;
    outline: none;
}

.input_busca_texto{
    padding: 0.8rem;
    border: 1px solid #ccc;
    font-family: "Poppins", sans-serif;
    border-radius: 8px;
    flex: 1;
    outline: none;
    box-sizing: border-box;
    margin-top: 1rem;
    resize: none;
    width: 100%;
}

.btn_busca{
    padding: 0.8rem;
    background-color: rgb(62, 155, 50);
    outline: none;
    color: white;
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
}

.img_perfil {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

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

.texto_perfil{
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.inputs_perfil{
    width: 100%;
    background-color: #f5f5f5;
    color: #242424;
    padding: .15rem .5rem;
    min-height: 40px;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    outline: none;
    border: none;
    line-height: 1.15;
    box-shadow: 0px 10px 20px -18px;
    box-sizing: border-box;
}

.inputs_salvar{
    padding: 0.8rem;
    color: white;
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    background-color: #2980b9;
    width: 100%;
    margin-top: 1rem;
}

.inputs_excluir{
    padding: 0.8rem;
    color: white;
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    background-color: red;
    width: 100%;
    margin-top: 0.5rem;
}

.div_perfil{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 1rem;
    gap: 0.5rem;
    align-items: center;
}

.div_dois{
    width: 100%;
}

.fa-arrow-right-from-bracket{
    color: red;
    position: fixed;
    font-size: 24px;
    top: 90px;
    right: 10px;
    cursor: pointer;
}