.page-sobre { background:var(--bg); }
.section-title { font-weight:700; text-align:center; margin:1.75rem 0 1rem; }
.valor-card, .org-card { 
    border:1px solid var(--brand); 
    border-radius:16px; 
    background:var(--white); 
    padding:1.25rem; 
}
.valor-card:hover, .org-card:hover { 
    box-shadow:0 10px 24px rgba(57, 93, 170, 0.15); 
    border-color:var(--highlight);
    transform: translateY(-2px);
}
.valor-icone { 
    font-size:3rem; 
    display:block; 
    text-align:center; 
    margin-bottom:.5rem; 
    color:var(--brand); 
}
.valor-titulo { font-weight:600; text-align:center; }
.valor-desc { color:var(--muted); font-size:.9rem; text-align:center; }
.org-item { 
    display:flex; 
    align-items:center; 
    gap:.75rem; 
    padding:.75rem 1rem; 
    border:1px solid var(--brand); 
    border-radius:14px; 
    background:var(--brand-light); 
}
.org-item:hover {
    background:var(--highlight-light);
    border-color:var(--highlight);
}
.org-icone { 
    width:40px; 
    height:40px; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    border-radius:999px; 
    background:var(--brand); 
    color:var(--white);
    font-size:1.2rem; 
}
.org-titulo { font-weight:600; margin:0; }
.org-desc { color:var(--muted); font-size:.9rem; margin:0; }
