.section-catalogo{
    max-width: 900px;
    margin: auto;
}

.section-catalogo h1{
    text-align: center;
    font-weight: 900;
}

.section-catalogo a{
    text-decoration: none;
    color: #222;
}

.livro-detail-catalogo a{
    text-decoration: none;
}

.div-catalogo h5{
    margin-bottom: 0;
}

.div-catalogo{
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 4px 16px rgba(2, 5, 6, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s;
}

.div-catalogo:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(20,162,214,0.15);
    z-index: 2;
}


@media (max-width: 600px) {
    .div-catalogo {
        flex-direction: column;
        align-items: flex-start;
    }
}