/* Mapa do site — PCD Online (layout premium, semântico e leve) */

.sitemap-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--tertiary-dark) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.sitemap-hero h1 {
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 0;
}
.sitemap-hero__lead {
    max-width: 46rem;
    margin: 0.75rem auto 0;
    opacity: 0.95;
    font-size: 1.05rem;
}
.sitemap-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.35rem;
}
.sitemap-stats span {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.sitemap-stats strong { font-weight: 800; }

.sitemap-section { margin-top: 2.5rem; }
.sitemap-section__head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}
.sitemap-section__head h2 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.35rem;
    margin: 0;
}
.sitemap-section__count {
    margin-left: auto;
    font-size: 0.8rem;
    color: #7a8690;
    font-weight: 700;
    white-space: nowrap;
}
.sitemap-section__intro {
    color: #5b6770;
    font-size: 0.92rem;
    margin: 0 0 1rem;
}
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 0.5rem;
}
.sitemap-list a {
    display: block;
    padding: 0.6rem 0.85rem;
    border: 1px solid #e7ebee;
    border-radius: 10px;
    text-decoration: none;
    color: #2b333a;
    font-weight: 500;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s, color 0.15s;
}
.sitemap-list a:hover,
.sitemap-list a:focus-visible {
    border-color: var(--primary);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.sitemap-xml {
    margin-top: 2.5rem;
    background: #f0faf6;
    border: 1px solid #d9eee6;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.92rem;
    color: #334;
}
.sitemap-xml code {
    background: #fff;
    border: 1px solid #d9eee6;
    border-radius: 6px;
    padding: 0.1rem 0.4rem;
    color: var(--primary-dark);
}
.sitemap-xml a { color: var(--primary-dark); font-weight: 700; }
