/* ========================================
   Mapa do Site - Tema 3
   Prefeitura de Bom Jesus da Penha
   ======================================== */

.sitemap-section {
    margin-bottom: 2.5rem;
}

.sitemap-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.sitemap-list {
    list-style: none;
    padding-left: 0;
}

.sitemap-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sitemap-list li::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.sitemap-list a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .sitemap-section {
        margin-bottom: 2rem;
    }
}
