/* ========== MAPA DO SITE - CSS SIMPLES E LIMPO ========== */
/* Prefixo: sitemap-simple- */

/* Reset básico */
.sitemap-simple * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container principal */
.sitemap-simple {
    background-color: #ffffff;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    line-height: 1.6;
}

.sitemap-simple-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Cabeçalho */
.sitemap-simple-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #012A55;
}

.sitemap-simple-header h1 {
    color: #012A55;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sitemap-simple-header p {
    color: #666666;
    font-size: 16px;
}

/* Conteúdo */
.sitemap-simple-content {
    margin-bottom: 40px;
}

/* Seções */
.sitemap-simple-section {
    margin-bottom: 30px;
}

.sitemap-simple-section h2 {
    color: #012A55;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FC791A;
}

/* Listas */
.sitemap-simple-section ul {
    list-style: none;
    padding-left: 0;
}

.sitemap-simple-section li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.sitemap-simple-section li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #FC791A;
    font-size: 14px;
}

/* Links */
.sitemap-simple-section a {
    color: #012A55;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.sitemap-simple-section a:hover {
    color: #FC791A;
    text-decoration: underline;
}

/* Rodapé */
.sitemap-simple-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #eeeeee;
    color: #666666;
}

.sitemap-simple-footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

.sitemap-simple-footer a {
    color: #15B239;
    text-decoration: none;
    font-weight: 600;
}

.sitemap-simple-footer a:hover {
    color: #FC791A;
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 768px) {
    .sitemap-simple {
        padding: 30px 15px;
    }

    .sitemap-simple-header h1 {
        font-size: 26px;
    }

    .sitemap-simple-header p {
        font-size: 14px;
    }

    .sitemap-simple-section h2 {
        font-size: 20px;
    }

    .sitemap-simple-section a {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sitemap-simple-header h1 {
        font-size: 22px;
    }

    .sitemap-simple-section h2 {
        font-size: 18px;
    }

    .sitemap-simple-section a {
        font-size: 14px;
    }
}

/* Print (para impressão) */
@media print {
    .sitemap-simple {
        background: white;
        padding: 0;
    }

    .sitemap-simple-section a {
        color: #000000;
        text-decoration: underline;
    }

    .sitemap-simple-section a::after {
        content: " (" attr(href) ")";
        font-size: 12px;
        color: #666666;
    }
}