/* Sidebar Styles */

.sidebar-container {
    width: 100%;
    margin: 45px auto 0;
    padding: 0 20px;
    margin-left: 0;
}

.sidebar-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.sidebar-item {
    margin-bottom: 0;
}

.sidebar-logo-link {
    width: 170px;
}




.sidebar-logo-link {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.36);
    padding-bottom: 1px;
}

.sidebar-logo-link:hover {
    background: #e8e8e8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.sidebar-logo-link img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Divisor de seção */
.sidebar-divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px 0;
    padding: 0;
}

/* Seção de Notícias/Informativos */
.news-section {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
}

.news-section h3 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}

.news-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-title {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 5px;
    display: block;
}

.news-link {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    transition: color 0.2s ease;
}

.news-link:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Responsivo */
@media screen and (max-width: 1000px) and (orientation: portrait) {
    .sidebar-container {
        width: 100%;
       margin: 22px auto 0;
    }
    
    .sidebar-logo-link {
        padding: 15px;
    }
}
