/* Ocultar todos los pasos */
.paso {
    display: none;
}

/* Mostrar solo el paso activo */
.paso.visible {
    display: block;
}

/* ============================
   CONTENEDOR CENTRAL
============================ */
.wizard-container {
    max-width: 650px;
    margin: 40px auto;
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ============================
   BARRA DE PASOS
============================ */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: bold;
}

.step {
    width: 33%;
    text-align: center;
    padding: 8px 0;
    color: #777;
}

.step.active {
    color: #0078ff;
}

/* ============================
   BARRA DE PROGRESO
============================ */
.progress-wrapper {
    width: 100%;
    height: 6px;
    background: #e4e7eb;
    border-radius: 5px;
    margin-bottom: 22px;
    overflow: hidden;
}

.progress-inner {
    height: 100%;
    width: 0%;
    background: #0078ff;
    border-radius: 5px;
    transition: width 0.3s;
}

/* ============================
   CONTENIDO DEL WIZARD
============================ */
.wizard-content {
    min-height: 300px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 600px) {
    .wizard-container {
        margin: 15px;
        padding: 18px;
    }

    .wizard-steps {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .step {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 6px;
    }
}
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-top: 15px;
}
.checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
