/**
 * Mapa do Site Personalizado - Estilos do Frontend
 */

.custom-sitemap-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 30px 0;
    max-width: 100%;
}

/* Cabeçalho do Mapa do Site */
.custom-sitemap-header {
    background: linear-gradient(135deg, #2d6bff 0%, #1a44b2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.custom-sitemap-header h2 {
    color: white !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.sitemap-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C7.58 2 4 5.58 4 10c0 2.09.8 3.98 2.09 5.41l5.91 7.41 5.91-7.41C19.2 13.98 20 12.09 20 10c0-4.42-3.58-8-8-8zm0 11c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Conteúdo do Mapa do Site */
.custom-sitemap-content {
    background: #fff;
    padding: 25px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    border-top: none;
}

/* Lista do Mapa do Site */
.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sitemap-list .sitemap-list {
    margin-left: 25px;
}

/* Itens da lista */
.sitemap-item {
    margin: 10px 0;
    padding: 0;
    position: relative;
}

.sitemap-item-content {
    display: flex;
    align-items: center;
}

/* Estilos de links */
.sitemap-item a {
    color: #333;
    text-decoration: none;
    padding: 5px 0;
    display: inline-block;
    font-size: 15px;
    transition: color 0.2s ease;
}

.sitemap-item a:hover {
    color: #2d6bff;
    text-decoration: underline;
}

/* Ícone de seta (para itens com filhos) */
.sitemap-toggle {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232d6bff"><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

/* Ícone de marcador (para itens sem filhos) */
.sitemap-bullet {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232d6bff"><path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .custom-sitemap-header h2 {
        font-size: 20px !important;
    }
    
    .sitemap-item a {
        font-size: 14px;
    }
}
