/* Fase 3: resumo objetivo e Central de atenção. */
.attention-panel{overflow:hidden}
.attention-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.attention-item{display:grid;grid-template-columns:42px 1fr;gap:13px;align-items:start;padding:17px;border:1px solid var(--line);border-radius:15px;background:#f8fafc}
.attention-item>span{width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:#e8edf2;color:var(--navy);font-size:13px;font-weight:800}
.attention-item strong{display:block;font-size:14px;color:var(--navy)}
.attention-item p{margin:5px 0 0;color:var(--muted);font-size:13px;line-height:1.55}
.attention-item.positive{border-color:#cde7d8;background:#f3faf6}
.attention-item.positive>span{background:#dff2e7;color:#226342}
.attention-item.attention{border-color:#efd9ab;background:#fffaf0}
.attention-item.attention>span{background:#f7e8c6;color:#76551d}
.attention-item.danger{border-color:#efcbc8;background:#fff6f5}
.attention-item.danger>span{background:#f8dddd;color:#8e2f2b}
.attention-item.info{border-color:#cfe0ee;background:#f3f8fc}
.attention-item.info>span{background:#dfeefa;color:var(--blue)}
@media(max-width:850px){.attention-list{grid-template-columns:1fr}}
