/* Preventivo — wizard a step */
.wizard-steps { display: flex; gap: .5rem; margin-bottom: 2rem; list-style: none; }
.wizard-steps li { flex: 1; display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 500; color: var(--ink-faint); padding-bottom: 1rem; border-bottom: 3px solid var(--line); transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.wizard-steps li span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-tint); color: var(--ink-faint); font-weight: 700; flex: 0 0 auto; transition: all var(--dur) var(--ease); }
.wizard-steps li.is-active { color: var(--ink); border-color: var(--brand-aqua-deep); }
.wizard-steps li.is-active span { background: var(--grad-brand); color: #06231f; }
.wizard-steps li.is-done span { background: var(--brand-teal); color: #fff; }
@media (max-width: 520px) { .wizard-steps li { font-size: 0; gap: 0; justify-content: center; } .wizard-steps li span { font-size: .9rem; } }

.wizard-step { border: 0; padding: 0; margin: 0; display: none; animation: stepIn .4s var(--ease-out); }
.wizard-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.wizard-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }

.chip-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-pill); cursor: pointer; transition: all var(--dur) var(--ease); font-size: .92rem; }
.chip:hover { border-color: var(--brand-aqua-deep); }
.chip input { accent-color: var(--brand-aqua-deep); width: 16px; height: 16px; }
.chip:has(input:checked) { background: var(--bg-tint); border-color: var(--brand-aqua-deep); color: var(--brand-teal); font-weight: 500; }
