/* assets/css/site-map.css */
:root {
    --green-main: #2e7d32;
    --green-light: #f1f8e9;
    --text-main: #333;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.sitemap-main { background: #fafafa; padding-bottom: 80px; }

.sitemap-header { 
    background: white; 
    padding: 60px 0; 
    text-align: center; 
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.sitemap-header h1 { font-size: 2.8rem; font-weight: 800; color: var(--green-main); margin-bottom: 10px; }
.sitemap-header p { font-size: 1.2rem; color: #666; }

.sitemap-search { max-width: 500px; margin: 30px auto 0; }
.sitemap-search input { 
    width: 100%; padding: 15px 25px; border-radius: 50px; 
    border: 2px solid #eee; font-size: 1rem; outline: none;
    transition: border-color 0.3s;
    box-shadow: var(--shadow);
}
.sitemap-search input:focus { border-color: var(--green-main); }

.sitemap-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

.section-icon { font-size: 1.5rem; font-weight: 700; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }

/* Pilares */
.pillars-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar-card { 
    background: white; padding: 25px; border-radius: 16px; 
    box-shadow: var(--shadow); border: 1px solid #f0f0f0;
}
.pillar-link { text-decoration: none; display: block; margin-bottom: 15px; }
.pillar-link h3 { color: var(--green-main); font-size: 1.3rem; margin: 0; }
.pillar-link.special h3 { color: #555; }

.cluster-list { list-style: none; padding: 0; margin: 0; border-left: 2px solid #f0f0f0; padding-left: 15px; }
.cluster-list li { margin-bottom: 8px; }
.cluster-list a { text-decoration: none; color: #666; font-size: 0.95rem; transition: color 0.2s; }
.cluster-list a:hover { color: var(--green-main); }

/* Sidebar */
.huerto-list { list-style: none; padding: 0; background: white; border-radius: 16px; padding: 20px; box-shadow: var(--shadow); }
.huerto-list li { padding: 10px 0; border-bottom: 1px solid #f9f9f9; }
.huerto-list a { text-decoration: none; color: #444; font-weight: 500; display: block; }
.huerto-list a:hover { color: var(--green-main); }

.extra-box { 
    margin-top: 30px; background: var(--green-main); padding: 25px; 
    border-radius: 16px; color: white; text-align: center;
}
.btn-map-quiz { 
    display: block; background: white; color: var(--green-main); 
    padding: 12px; border-radius: 10px; text-decoration: none; 
    font-weight: bold; margin: 15px 0;
}

@media (max-width: 992px) {
    .sitemap-grid { grid-template-columns: 1fr; }
    .pillars-container { grid-template-columns: 1fr; }
}