.sidebar h3 {
    font-size: 24px;
    font-weight: 600;
    margin: auto;
    margin-bottom: 30px;
}

.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(--verde);
    border-bottom: 1px #dedede solid;
    padding: 0 20px;
    padding-bottom: 15px;
    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;
}

.categorias__sidebar a:hover {
    background: var(--azul);
    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 {
    padding: 15px;    
}

aside.recentes .box .content h4 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
}

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;
    }
}