/* Checklist do recém-PJ — estilos */

.ck__main { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.ck__wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.6rem, 3vw, 2.6rem); align-items: start; }

/* grupos */
.ck__group { margin-bottom: clamp(1.8rem, 3vw, 2.6rem); }
.ck__group-head { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.ck__group-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.ck__group-ic svg { width: 24px; height: 24px; }
.ck__group-head h2 { font-size: 1.4rem; color: var(--primary); }

.ck__items { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.ck__item { display: flex; gap: 1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s; }
.ck__item:hover { border-color: #D4E0F2; }
.ck__check { flex: none; width: 30px; height: 30px; border-radius: 9px; border: 2px solid var(--border-strong); background: #fff; cursor: pointer; display: grid; place-items: center; transition: all .2s ease; margin-top: 2px; }
.ck__check svg { width: 18px; height: 18px; color: #fff; opacity: 0; transform: scale(.5); transition: all .2s ease; }
.ck__check:hover { border-color: var(--accent); }
.ck__text { cursor: pointer; }
.ck__text h3 { font-size: 1.12rem; color: var(--primary); margin-bottom: .25rem; transition: color .2s; }
.ck__text p { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }
.ck__item.is-done { background: var(--bg-soft); border-color: var(--border); }
.ck__item.is-done .ck__check { background: var(--accent); border-color: var(--accent); }
.ck__item.is-done .ck__check svg { opacity: 1; transform: scale(1); }
.ck__item.is-done .ck__text h3 { color: var(--text-faint); text-decoration: line-through; text-decoration-color: var(--border-strong); }
.ck__item.is-done .ck__text p { color: var(--text-faint); }

/* aside: progresso + cta (sticky) */
.ck__aside { position: sticky; top: 100px; display: grid; gap: 1.2rem; }
.ck__progress { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.5rem, 3vw, 2rem); text-align: center; }
.ck__ring { position: relative; width: 150px; height: 150px; margin: 0 auto .9rem; display: grid; place-items: center; }
.ck__ring svg { width: 150px; height: 150px; transform: rotate(-90deg); }
.ck__ring-bg { fill: none; stroke: var(--bg-softer); stroke-width: 10; }
.ck__ring-fg { fill: none; stroke: var(--accent); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: calc(327 - 327 * var(--p) / 100); transition: stroke-dashoffset .5s cubic-bezier(.4,0,.2,1); }
.ck__ring-txt { position: absolute; display: flex; flex-direction: column; align-items: center; font-size: .76rem; color: var(--text-muted); }
.ck__ring-txt b { font-family: var(--font-display); font-size: 2.2rem; color: var(--primary); line-height: 1; }
.ck__progress-l { font-size: .95rem; color: var(--text-muted); font-weight: 600; }
.ck__reset { margin-top: 1rem; font-family: var(--font-body); font-size: .85rem; font-weight: 600; color: var(--text-muted); background: none; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 16px; cursor: pointer; transition: all .2s; }
.ck__reset:hover { border-color: var(--border-strong); color: var(--primary); }

.ck__cta { background: var(--bg-dark); color: var(--on-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 3vw, 2rem); position: relative; overflow: hidden; }
.ck__cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 80% 0%, rgba(37,99,235,.35), transparent 60%); pointer-events: none; }
.ck__cta-ic { position: relative; width: 30px; height: 30px; color: var(--sky); margin-bottom: .8rem; }
.ck__cta h3 { position: relative; color: #fff; font-size: 1.3rem; margin-bottom: .5rem; }
.ck__cta p { position: relative; color: var(--on-dark-muted); font-size: .92rem; line-height: 1.55; margin-bottom: 1.3rem; }
.ck__cta .btn { position: relative; width: 100%; }

@media (max-width: 880px) {
  .ck__wrap { grid-template-columns: 1fr; }
  .ck__aside { position: static; order: -1; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .ck__aside { grid-template-columns: 1fr; }
}
