.container_categoria{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

body{
    display: flex;
    justify-content: space-between;
    height: 100vh;
}

main{
    flex: 1;
    overflow: auto;
}

.titulo_animais{
    text-align: center;
}

.botao_adicionar{
    position: fixed;
    right: 15px;
    bottom: 90px;
    background-color: green;
    color: white;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards{
    background-color: #ffffff;
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #cdcdcd;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    box-sizing: border-box;
}

.div_animal_titulo{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.5rem;
}

.img_animal{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.div_informacoes_animal{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.nome_animal{
    font-size: 20px;
    margin: 0;
}

.sub_descricao{
    font-weight: 400;
    font-size: 18px;
    margin: 0;
    color: #676767;
}

.container{
    max-width: 400px;
    margin: auto;
    margin-bottom: 4rem;
    padding: 1rem;
    margin-top: 0;
}

.fa-plus{
    font-size: 22px;
}

a:visited .div_informacoes_animal{
    color: black;
}

.div_descricao{
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}