.sidebar {
    position: sticky;
    top: 100px;
    margin-bottom: 3.13rem;
}
.sidebar .card {
    padding: 1.88rem;
    background: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 1.5rem;
    box-shadow: none;    
}
.sidebar .card:not(:last-child) {
    margin: 0 0 2.81rem 0;
}
.sidebar .card h3 {
    color: rgba(20, 41, 65, 1);
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
}
.sidebar .card .search-box {
    display: flex;
    gap: 0.63rem;
}
.sidebar .card .search-box input {
    display: block;
    width: 100%;
    height: 3.81rem;
    
    padding: 1.25rem 1.5rem;
    background: rgba(229, 136, 92, 0.1);
    border-radius: 0.75rem;
    
    border: none;
    outline: none;
    box-shadow: none;

    transition: all .25s cubic-bezier(.4,0,.2,1);
}
.sidebar .card .search-box input:hover {
    box-shadow: 0 0 0 1px #e5885c;
}
.sidebar .card .search-box input:focus,
.sidebar .card .search-box input:not(:placeholder-shown) {
    box-shadow: 0 0 0 2px #e5885c;
}
.sidebar .card .search-box button {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 3.81rem;
    min-width: 3.81rem;
    height: 3.81rem;
    min-height: 3.81rem;
    
    padding: 1.25rem;
    background-color: #e5885c;
    border: none;
    border-radius: 0.75rem;
    transition: all .25s cubic-bezier(.4,0,.2,1);
}
.sidebar .card .search-box button:hover {
    background: #6e8c78;
    color: #fff;
    transform: scale(1.035);
    box-shadow: 0 0 0px 3px #6e8c7850;
}
.sidebar .card .search-box button:active {
    box-shadow: none;
    transform: scale(1);
    filter: brightness(.8);
}
.sidebar .card .search-box button svg {
    display: block;
    stroke: #fff;
    width: 100%;
    height: 100%;
}
.sidebar .card .categories {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidebar .card .categories li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    
    padding: .55rem 0 .55rem 1.13rem;
}
.sidebar .card .categories li a svg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    
    display: block;
    fill: #E5885C;
    width: 0.5rem;
    height: 0.75rem;
    
    margin: auto;

    transition: all .25s cubic-bezier(.4,0,.2,1);
}
.sidebar .card .categories li:hover a svg {
    fill: #6E8C78;
}
.sidebar .card .categories li span {
    color: rgba(51, 51, 51, 1);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.19rem;
    
    text-align: left;
    margin: 0;

    transition: all .25s cubic-bezier(.4,0,.2,1);
}
.sidebar .card .categories li:hover span {
    color: #E5885C;
}

.sidebar .card .artigos {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.sidebar .card .artigos li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}
.sidebar .card .artigos li a img {
    width: 6.25rem;
    height: 5rem;
    min-width: 6.25rem;
    object-fit: cover;
    border-radius: 1.25rem;
}
.sidebar .card .artigos li a p {
    color: #142941;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.31rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sidebar .card .artigos li a:hover p {
    color: #E5885C;
}