/* ============================================================
   Mapa do Site — sitemap.css
   ============================================================ */

/* ── Hero ── */
.sitemap-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 160px 0 48px;
    text-align: center;
}

.sitemap-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #f1f5f9;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.sitemap-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0;
}

/* ── Body ── */
.sitemap-body {
    padding: 56px 0 80px;
    background: #f8fafc;
}

/* ── Sections ── */
.sitemap-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 36px;
    margin-bottom: 28px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
}

.sitemap-section__heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

/* ── Year / Month headings ── */
.sitemap-year {
    margin-bottom: 20px;
}

.sitemap-year__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 20px 0 8px;
}

.sitemap-year:first-child .sitemap-year__title {
    margin-top: 0;
}

.sitemap-month {
    margin-bottom: 12px;
}

.sitemap-month__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Link list ── */
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li+li {
    margin-top: 2px;
}

.sitemap-link {
    display: block;
    font-size: 0.9rem;
    color: #334155;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 5px;
    transition: background 0.12s, color 0.12s;
}

.sitemap-link:hover {
    background: #f1f5f9;
    color: var(--bs-primary, #0d6efd);
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .sitemap-section {
        padding: 24px 18px;
    }
}