.sidebar h3 {
    font-size: 24px;
    margin: auto;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--azul);
}

.sidebar aside {
    margin-bottom: 60px;
    display: table;
    width: 100%;
}

.categorias__sidebar {
    background: #fff;
    box-shadow: 0 0 50px #0000002a;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
}

.categorias__sidebar h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--azul);
    border-bottom: 1px #dedede solid;
    padding: 20px 20px;
    margin: 0 -15px;
    margin-bottom: 15px;
    margin-top: -15px;
    padding-top: 15px;
    cursor: pointer;
}

.categorias__toggle {
    position: relative;
}

.categorias__toggle i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s;
}

.categorias__toggle.active i {
    transform: translateY(-50%) rotate(180deg);
}

.categorias__sidebar a {
    display: flex;
    padding: 10px 15px;
    border-radius: 5px;
    line-height: 18px;
    color: #000;
    font-size: 18px;
}

.categorias__sidebar a:hover {
    background: var(--azul-escuro);
    color: #fff;
}


/* Relacionadas */
aside.recentes .box {
    border: 1px #dedede solid;
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    color: #333;
}

aside.recentes .box .content h4 {
    font-size: 16px;
    line-height: 1;
    font-weight: normal;
    margin-bottom: 0;
    color: #000;
    padding: 15px 20px;
    font-weight: bold;
}


/* Proverbios */
.sidebar__proverbios h4 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    padding: 30px;
    padding-left: 45px;
    border-radius: 6px;
    background: #f5f5f5;
}

.sidebar__proverbios h4:before {
    content: '\f10d'; 
    font-family: 'Font Awesome 6 Free';
    font-size: 20px;
    position: absolute;
    margin-left: -25px;
    margin-top: -10px;
    color: var(--azul-escuro);
    display: block;
}


.sidebar__proverbios h4:hover {
    background: var(--azul-escuro);
    color: #fff;
}

.sidebar__proverbios h4:hover:before {
    color: #fff;
}


aside.recentes .box .content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media(max-width: 993px) {
    .categorias__sidebar {
        margin-left: -50px;
    }
}

@media(max-width: 768px) {
    .categorias__sidebar {
        margin-top: -15px;
    }
}

@media(max-width: 579px) {
    .categorias__sidebar {
        margin-left: 0px;
    }
}